mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 01:29:11 +08:00
13 lines
393 B
TypeScript
13 lines
393 B
TypeScript
|
import React from 'react';import { Segmented } from 'antd';
|
||
|
|
||
|
export default () => (
|
||
|
<>
|
||
|
<Segmented size="large" options={['Daily', 'Weekly', 'Monthly', 'Quarterly', 'Yearly']} />
|
||
|
<br />
|
||
|
<Segmented options={['Daily', 'Weekly', 'Monthly', 'Quarterly', 'Yearly']} />
|
||
|
<br />
|
||
|
<Segmented size="small" options={['Daily', 'Weekly', 'Monthly', 'Quarterly', 'Yearly']} />
|
||
|
</>
|
||
|
);
|
||
|
|