mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 09:21:22 +08:00
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
|
import * as React from 'react';
|
||
|
import Tag, { TagProps } from '../tag';
|
||
|
|
||
|
export default function PickerButton(props: TagProps) {
|
||
|
return <Tag color="blue" {...props} />;
|
||
|
}
|