UNPKG

cjd-parkball

Version:

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

33 lines (26 loc) 542 B
--- category: 2 title: 带有图标的 title_en: With an Icon --- zh-CN 图标放在文字前面。 en-US The icon should be placed in front of the text. ````jsx import { Breadcrumb, Icon } from 'parkball'; ReactDOM.render( <Breadcrumb> <Breadcrumb.Item href=""> <Icon type="home" /> </Breadcrumb.Item> <Breadcrumb.Item href=""> <Icon type="user" /> <span>Application List</span> </Breadcrumb.Item> <Breadcrumb.Item> Application </Breadcrumb.Item> </Breadcrumb>, mountNode); ````