ant-design/components/date-picker/PickerButton.tsx

9 lines
233 B
TypeScript
Raw Normal View History

import * as React from 'react';
import Button from '../button';
import type { ButtonProps } from '../button';
export default function PickerButton(props: ButtonProps) {
return <Button size="small" type="primary" {...props} />;
}