mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-08 01:53:34 +08:00

* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
9 lines
233 B
TypeScript
9 lines
233 B
TypeScript
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} />;
|
|
}
|