This component is a wrapper around the <a> tag. By default, we remove all
styles from the default <a> tag. You can use this component to create links with styles
like link color.
colorlinklinkaccenttextinheritunderlinetrueAll additional props you pass to this component will be passed to the <a> tag.
<Link href="/" color="link">Link</Link>
<Link href="/" color="accent">Accent Link</Link>
<Link href="/" color="text">Text Link</Link>
<Link href="/" color="inherit">Inherit Link</Link>
<Link href="/" color="link" underline={false}>No underline</Link><Link href="/">
{#snippet start()}
<IconHouse />
{/snippet}
Home
</Link>
<Link href="/" underline={false}>
{#snippet start()}
<IconHouse />
{/snippet}
Home
</Link><Link href="/" target="_blank">
Open
{#snippet end()}
<IconBoxArrowUpRight />
{/snippet}
</Link>
<Link href="/" target="_blank" underline={false}>
Open
{#snippet end()}
<IconBoxArrowUpRight />
{/snippet}
</Link>