UNPKG

cjd-parkball

Version:

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

35 lines (28 loc) 995 B
--- category: 2 title: 圆圈颜色 title_en: Color --- zh-CN 圆圈颜色,绿色用于已完成、成功状态,红色表示告警或错误状态,蓝色可表示正在进行或其他默认状态。 en-US Set the color of circles. `green` means completed or success status, `red` means warning or error, and `blue` means ongoing or other default status. ````jsx import { Timeline } from 'parkball'; ReactDOM.render( <Timeline> <Timeline.Item color="green">Create a services site 2015-09-01</Timeline.Item> <Timeline.Item color="green">Create a services site 2015-09-01</Timeline.Item> <Timeline.Item color="red"> <p>Solve initial network problems 1</p> <p>Solve initial network problems 2</p> <p>Solve initial network problems 3 2015-09-01</p> </Timeline.Item> <Timeline.Item> <p>Technical testing 1</p> <p>Technical testing 2</p> <p>Technical testing 3 2015-09-01</p> </Timeline.Item> </Timeline>, mountNode); ````