mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 20:49:53 +08:00
15 lines
362 B
TypeScript
15 lines
362 B
TypeScript
import React from 'react';
|
|
import { AppstoreOutlined, BarsOutlined } from '@ant-design/icons';
|
|
import { Segmented } from 'antd';
|
|
|
|
const Demo: React.FC = () => (
|
|
<Segmented
|
|
options={[
|
|
{ label: 'List', value: 'List', icon: <BarsOutlined /> },
|
|
{ label: 'Kanban', value: 'Kanban', icon: <AppstoreOutlined /> },
|
|
]}
|
|
/>
|
|
);
|
|
|
|
export default Demo;
|