mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
729 B
729 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 8 |
|
zh-CN
幽灵按钮将按钮的内容反色,背景变为透明,常用在有色背景上。
en-US
ghost property will make button's background transparent, it is commonly used in colored background.
import { Button } from 'antd';
ReactDOM.render(
<div className="site-button-ghost-wrapper">
<Button type="primary" ghost>
Primary
</Button>
<Button ghost>Default</Button>
<Button type="dashed" ghost>
link
</Button>
<Button type="link" ghost>
link
</Button>
</div>,
mountNode,
);
.site-button-ghost-wrapper {
background: rgb(190, 200, 200);
padding: 26px 16px 16px;
}