mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
|
import * as React from 'react';
|
||
|
import Button, { ButtonProps } from '../button';
|
||
|
|
||
|
export default function PickerButton(props: ButtonProps) {
|
||
|
return <Button size="small" type="primary" {...props} />;
|
||
|
}
|