mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 11:08:45 +08:00
b70d607b9f
close #23687
7 lines
170 B
TypeScript
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} />;
|
|
}
|