UNPKG

cjd-parkball

Version:

> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用

27 lines (20 loc) 622 B
--- category: 2 title: 幽灵按钮 title_en: Ghost Button --- zh-CN 幽灵按钮将按钮的内容反色,背景变为透明,常用在有色背景上。 en-US `ghost` property will make button's background transparent, it is common used in colored background. ````jsx import { Button } from 'parkball'; 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); ````