UNPKG

zent

Version:

一套前端设计语言和基于React的实现

27 lines (24 loc) 442 B
--- order: 5 zh-CN: title: 按钮大小 normalButton: 正常按钮 bigButton: 大号按钮 smallButton: 小号按钮 en-US: title: Button sizes normalButton: Normal bigButton: Big smallButton: Small --- ```jsx import { Button } from 'zent'; ReactDOM.render( <div> <Button size="large">{i18n.bigButton}</Button> <Button>{i18n.normalButton}</Button> <Button size="small">{i18n.smallButton}</Button> </div> , mountNode ); ```