2023-05-16 13:42:46 +03:00

7 lines
197 B
TypeScript

import type { ButtonProps } from 'antd';
import { Button as AntdButton } from 'antd';
export function Button(props: ButtonProps) {
return <AntdButton {...props}>{props.children}</AntdButton>;
}