import type { ButtonProps } from 'antd'; import { Button as AntButton } from 'antd'; export function Link({ ...props }: ButtonProps) { return ( {props.children} ); }