You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

587 B

order title debug
9999 [{zh-CN 样式自定义} {en-US Style Customization}] true

zh-CN

测试一些 style 修改样式的行为。

en-US

Use style to change default style.

import { Divider } from 'antd';

ReactDOM.render(
  <div>
    <Divider style={{ height: 2, backgroundColor: '#7cb305' }} />
    <Divider style={{ borderColor: '#7cb305' }} dashed />
    <Divider type="vertical" style={{ height: 60, backgroundColor: '#7cb305' }} />
    <Divider type="vertical" style={{ height: 60, borderColor: '#7cb305' }} dashed />
  </div>,
  mountNode,
);