Link
Link
is a component for creating hyperlinks to different web pages, locations within the same page, or other URLs.
<Link href="https://ja.wikipedia.org/wiki/%E3%83%89%E3%83%A9%E3%82%B4%E3%83%B3%E3%83%9C%E3%83%BC%E3%83%AB">
ドラゴンボール - wikipedia
</Link>
Usage
import { Link } from "@yamada-ui/react"
import { Link } from "@/components/ui"
import { Link } from "@workspaces/ui"
<Link />
Change variant
<Wrap gap="md">
<For each={["plain", "underline"]}>
{(variant) => (
<Link
key={variant}
variant={variant}
href="https://ja.wikipedia.org/wiki/%E3%83%89%E3%83%A9%E3%82%B4%E3%83%B3%E3%83%9C%E3%83%BC%E3%83%AB"
>
ドラゴンボール - wikipedia
</Link>
)}
</For>
</Wrap>
Change Color Scheme
<Wrap gap="md">
<For each={["success", "warning", "link"]}>
{(colorScheme) => (
<Link
key={colorScheme}
colorScheme={colorScheme}
href="https://ja.wikipedia.org/wiki/%E3%83%89%E3%83%A9%E3%82%B4%E3%83%B3%E3%83%9C%E3%83%BC%E3%83%AB"
>
ドラゴンボール - wikipedia
</Link>
)}
</For>
</Wrap>
External Links
<Link
href="https://ja.wikipedia.org/wiki/%E3%83%89%E3%83%A9%E3%82%B4%E3%83%B3%E3%83%9C%E3%83%BC%E3%83%AB"
external
>
ドラゴンボール - wikipedia
</Link>