mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import { SmileOutlined } from '@ant-design/icons';
|
|
import type { Dayjs } from 'dayjs';
|
|
import { DatePicker, Space } from 'antd';
|
|
|
|
const smileIcon = <SmileOutlined />;
|
|
const { RangePicker } = DatePicker;
|
|
|
|
type DatePickerValue = Dayjs | null;
|
|
type RangePickerValue = [Dayjs | null, Dayjs | null] | null;
|
|
|
|
const onChange = (
|
|
date: DatePickerValue | RangePickerValue,
|
|
dateString: [string, string] | string,
|
|
) => {
|
|
console.log(date, dateString);
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<Space direction="vertical" size={12}>
|
|
<DatePicker suffixIcon={smileIcon} onChange={onChange} />
|
|
<DatePicker suffixIcon={smileIcon} onChange={onChange} picker="month" />
|
|
<RangePicker suffixIcon={smileIcon} onChange={onChange} />
|
|
<DatePicker suffixIcon={smileIcon} onChange={onChange} picker="week" />
|
|
<DatePicker suffixIcon="ab" onChange={onChange} />
|
|
<DatePicker suffixIcon="ab" onChange={onChange} picker="month" />
|
|
<RangePicker suffixIcon="ab" onChange={onChange} />
|
|
<DatePicker suffixIcon="ab" onChange={onChange} picker="week" />
|
|
</Space>
|
|
);
|
|
|
|
export default App;
|