ant-design/components/alert/demo/icon.md

54 lines
1.1 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 4
title:
zh-CN: 图标
en-US: Icon
2016-03-31 09:40:55 +08:00
---
## zh-CN
可口的图标让信息类型更加醒目。
## en-US
2019-04-19 20:48:29 +08:00
A relevant icon will make information clearer and more friendly.
2020-01-21 16:21:37 +08:00
```tsx
import { Alert } from 'antd';
2017-10-09 13:23:20 +08:00
ReactDOM.render(
<>
2017-10-09 13:23:20 +08:00
<Alert message="Success Tips" type="success" showIcon />
<Alert message="Informational Notes" type="info" showIcon />
<Alert message="Warning" type="warning" showIcon closable />
2017-10-09 13:23:20 +08:00
<Alert message="Error" type="error" showIcon />
<Alert
message="Success Tips"
2019-04-19 20:48:29 +08:00
description="Detailed description and advice about successful copywriting."
2017-10-09 13:23:20 +08:00
type="success"
showIcon
/>
<Alert
message="Informational Notes"
2019-04-19 20:48:29 +08:00
description="Additional description and information about copywriting."
2017-10-09 13:23:20 +08:00
type="info"
showIcon
/>
<Alert
message="Warning"
description="This is a warning notice about copywriting."
type="warning"
showIcon
closable
2017-10-09 13:23:20 +08:00
/>
<Alert
message="Error"
description="This is an error message about copywriting."
type="error"
showIcon
/>
</>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```