mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 12:39:49 +08:00
fe3378f644
* type: code optimization * fix: fix
11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
import * as React from 'react';
|
|
|
|
import Button from '../button';
|
|
import type { ButtonProps } from '../button';
|
|
|
|
const PickerButton: React.FC<Readonly<ButtonProps>> = (props) => (
|
|
<Button size="small" type="primary" {...props} />
|
|
);
|
|
|
|
export default PickerButton;
|