10 lines
245 B
JavaScript
10 lines
245 B
JavaScript
|
"use client";
|
||
|
|
||
|
import * as React from 'react';
|
||
|
import Button from '../button';
|
||
|
export default function PickerButton(props) {
|
||
|
return /*#__PURE__*/React.createElement(Button, Object.assign({
|
||
|
size: "small",
|
||
|
type: "primary"
|
||
|
}, props));
|
||
|
}
|