mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
40 lines
894 B
Markdown
40 lines
894 B
Markdown
---
|
|
order: 20
|
|
title:
|
|
zh-CN: Ribbon Debug
|
|
en-US: Ribbon Debug
|
|
debug: true
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
Buggy!
|
|
|
|
## en-US
|
|
|
|
Buggy!
|
|
|
|
```jsx
|
|
import { Badge, Card, Space } from 'antd';
|
|
|
|
export default () => (
|
|
<Space direction="vertical" style={{ width: '100%' }}>
|
|
<Badge.Ribbon text="啦啦啦啦">
|
|
<Card>推开窗户举起望远镜</Card>
|
|
</Badge.Ribbon>
|
|
<Badge.Ribbon text="啦啦啦啦" color="purple">
|
|
<Card>推开窗户举起望远镜</Card>
|
|
</Badge.Ribbon>
|
|
<Badge.Ribbon text="啦啦啦啦" color="#2db7f5">
|
|
<Card>推开窗户举起望远镜</Card>
|
|
</Badge.Ribbon>
|
|
<Badge.Ribbon text="啦啦啦啦" color="#2db7f5" placement="start">
|
|
<Card>推开窗户举起望远镜</Card>
|
|
</Badge.Ribbon>
|
|
<Badge.Ribbon text="啦啦啦啦" color="#2db7f5" placement="end">
|
|
<Card>推开窗户举起望远镜</Card>
|
|
</Badge.Ribbon>
|
|
</Space>
|
|
);
|
|
```
|