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

27 lines
533 B
Markdown
Raw Normal View History

2016-08-03 14:54:10 +08:00
---
order: 6
title:
zh-CN: 顶部公告
en-US: Banner
---
## zh-CN
用作顶部公告时,默认有图标,`type` 为 'warning',并有特殊样式。
## en-US
When `Alert` is used as banner, it has particular style, Icon and `type`(warning) are specified by default.
2017-02-13 10:55:53 +08:00
````jsx
2016-08-03 14:54:10 +08:00
import { Alert } from 'antd';
ReactDOM.render(
<div>
<Alert message="Warning text" banner />
<br />
<Alert message="Very long warning text warning text text text text text text text" banner closable />
</div>
, mountNode);
````