import * as React from 'react'; export type LinkProps = Readonly>; export const Link = React.forwardRef( ({ target = '_blank', style, ...props }, ref) => ( {props.children} ), ); Link.displayName = 'Link';