2023-05-30 14:03:44 +03:00

11 lines
264 B
TypeScript

import type { ButtonProps } from 'antd';
import { Button as AntButton } from 'antd';
export function Link({ ...props }: ButtonProps) {
return (
<AntButton rel="noopener" target="_blank" type="link" {...props}>
{props.children}
</AntButton>
);
}