mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 19:19:26 +08:00
1719748a29
* chore: eslint add consistent-type-imports * fix avatar * Update Item.tsx
8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
import * as React from 'react';
|
|
import type { TagProps } from '../tag';
|
|
import Tag from '../tag';
|
|
|
|
export default function PickerTag(props: TagProps) {
|
|
return <Tag color="blue" {...props} />;
|
|
}
|