7 lines
197 B
TypeScript
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>;
|
|
}
|