mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 15:49:10 +08:00
21 lines
484 B
TypeScript
21 lines
484 B
TypeScript
|
import { ConfigProvider, Segmented } from 'antd';
|
||
|
import React from 'react';
|
||
|
|
||
|
export default () => (
|
||
|
<ConfigProvider
|
||
|
theme={{
|
||
|
components: {
|
||
|
Segmented: {
|
||
|
itemColor: '#222',
|
||
|
itemHoverColor: '#333',
|
||
|
itemHoverBg: 'rgba(0, 0, 0, 0.06)',
|
||
|
itemSelectedBg: '#aaa',
|
||
|
itemActiveBg: '#ccc',
|
||
|
},
|
||
|
},
|
||
|
}}
|
||
|
>
|
||
|
<Segmented options={['Daily', 'Weekly', 'Monthly', 'Quarterly', 'Yearly']} />
|
||
|
</ConfigProvider>
|
||
|
);
|