mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-30 02:57:50 +08:00
9 lines
352 B
Vue
9 lines
352 B
Vue
|
import type { FunctionalComponent } from 'vue';
|
||
|
import type { ButtonProps } from '../button';
|
||
|
import Button from '../button';
|
||
|
|
||
|
const PickerButton: FunctionalComponent<ButtonProps> = (props: ButtonProps, { attrs, slots }) => {
|
||
|
return <Button size="small" type="primary" {...props} {...attrs} v-slots={slots}></Button>;
|
||
|
};
|
||
|
export default PickerButton;
|