mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +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
841 B
841 B
order | title | ||||
---|---|---|---|---|---|
4 |
|
zh-CN
可以设置为图标或其他自定义元素。
en-US
Set a node as an icon or other custom element.
import { Timeline } from 'antd';
import { ClockCircleOutlined } from '@ant-design/icons';
export default () => (
<Timeline>
<Timeline.Item>Create a services site 2015-09-01</Timeline.Item>
<Timeline.Item>Solve initial network problems 2015-09-01</Timeline.Item>
<Timeline.Item dot={<ClockCircleOutlined className="timeline-clock-icon" />} color="red">
Technical testing 2015-09-01
</Timeline.Item>
<Timeline.Item>Network problems being solved 2015-09-01</Timeline.Item>
</Timeline>
);
.timeline-clock-icon {
font-size: 16px;
}
[data-theme='compact'] .timeline-clock-icon {
font-size: 14px;
}