mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
ac5a06027e
This reverts commit ea8ed28209
.
8 lines
232 B
TypeScript
8 lines
232 B
TypeScript
import * as React from 'react';
|
|
import type { ButtonProps } from '../button';
|
|
import Button from '../button';
|
|
|
|
export default function PickerButton(props: ButtonProps) {
|
|
return <Button size="small" type="primary" {...props} />;
|
|
}
|