11 lines
264 B
TypeScript
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>
|
|
);
|
|
}
|