mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
707 B
707 B
order | title | debug | ||||
---|---|---|---|---|---|---|
9999 |
|
true |
zh-CN
测试一些 style
修改样式的行为。
en-US
Use style
to change default style.
import { Divider } from 'antd';
import React from 'react';
const App: React.FC = () => (
<>
<Divider style={{ borderWidth: 2, borderColor: '#7cb305' }} />
<Divider style={{ borderColor: '#7cb305' }} dashed />
<Divider style={{ borderColor: '#7cb305' }} dashed>
Text
</Divider>
<Divider type="vertical" style={{ height: 60, borderColor: '#7cb305' }} />
<Divider type="vertical" style={{ height: 60, borderColor: '#7cb305' }} dashed />
</>
);
export default App;