mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
632 B
632 B
order | title | ||||
---|---|---|---|---|---|
8 |
|
zh-CN
幽灵按钮将其他按钮的内容反色,背景变为透明,常用在有色背景上。
en-US
ghost
property will make button's background transparent, it is common used in colored background.
import { Button } from 'antd';
ReactDOM.render(
<div style={{ background: 'rgb(190, 200, 200)', padding: '26px 16px 16px' }}>
<Button type="primary" ghost>Primary</Button>
<Button ghost>Default</Button>
<Button type="dashed" ghost>Dashed</Button>
<Button type="danger" ghost>danger</Button>
</div>
, mountNode);