ant-design/components/date-picker/PickerTag.tsx
2020-04-28 14:59:17 +08:00

7 lines
170 B
TypeScript

import * as React from 'react';
import Tag, { TagProps } from '../tag';
export default function PickerTag(props: TagProps) {
return <Tag color="blue" {...props} />;
}