import { Anchor } from '@nuco/react/components/Anchor';Component.tsxtsx
<Anchor href="https://nuco.takumaru.dev" target="_blank">
Nuco Documentation
</Anchor>type Props = {
/**
* The URL that the hyperlink points to
*/
href?: string;
/**
* Where to display the linked URL
* @default undefined
*/
target?: "_blank" | "_self" | "_parent" | "_top";
/**
* The relationship of the linked URL
*/
rel?: string;
/**
* The style of the underline for the link
* @default "none"
*/
underline?: "none" | "solid" | "dashed" | "dotted";
/**
* Whether the link is disabled
* @default false
*/
disabled?: boolean;
};type Emits = {
/**
* Fired when the link is clicked
*/
"onClick"?: Event;
};