mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 07:09:55 +08:00
ea8ed28209
* chore: unified import method * fix lint
8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
import 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} />;
|
|
}
|