ant-design/components/date-picker/PickerButton.tsx
lijianan fe3378f644
type: code optimization (#49864)
* type: code optimization

* fix: fix
2024-07-15 09:21:54 +08:00

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;