mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 11:54:27 +00:00
7 lines
203 B
TypeScript
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} />;
|
|
}
|