2020-05-08 14:50:42 +08:00

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} />;
}