ant-design/components/switch/demo/text.md
afc163 753c01ae18 ES6 syntax for demo code
fix antd.notification
2015-10-28 20:55:49 +08:00

400 B

文字和图标

  • order: 2

带有文字和图标。


import { Switch, Icon } from 'antd';
const container = document.getElementById('components-switch-demo-text');

ReactDOM.render(<div>
  <Switch checkedChildren="开" unCheckedChildren="关" />
  <span> </span>
  <Switch checkedChildren={<Icon type="check" />} unCheckedChildren={<Icon type="cross" />} />
</div>, container);