---
title: Link
description: "`Link` is a component for creating hyperlinks to different web pages, locations within the same page, or other URLs."
links:
- style: https://github.com/yamada-ui/yamada-ui/tree/main/packages/react/src/components/link/link.style.ts
- source: https://github.com/yamada-ui/yamada-ui/tree/main/packages/react/src/components/link
- storybook: https://yamada-ui.github.io/yamada-ui?path=/story/components-link--basic
---
```tsx
ドラゴンボール - wikipedia
```
## Usage
```tsx
import { Link } from "@yamada-ui/react"
```
```tsx
import { Link } from "@/components/ui"
```
```tsx
import { Link } from "@workspaces/ui"
```
```tsx
```
### Change variant
```tsx
{(variant) => (
ドラゴンボール - wikipedia
)}
```
### Change Color Scheme
```tsx
{(colorScheme) => (
ドラゴンボール - wikipedia
)}
```
### External Links
```tsx
ドラゴンボール - wikipedia
```
## Props
| Prop | Default | Type | Description |
| ------------- | --------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------ |
| `as` | - | `As` | The HTML element to render. |
| `asChild` | - | `boolean` | Merges its props onto its immediate child. |
| `css` | - | `CSSObject \| CSSObject[]` | The CSS object. |
| `colorScheme` | - | `"amber" \| "black" \| "blackAlpha" \| "blue" \| "cyan" \| "danger" \| "emerald" \| "error" \| "flashy" \| "fuchsia" ...` | Set color scheme variables. |
| `variant` | `"plain"` | `"plain" \| "underline"` | The variant of the component. |
| `external` | `false` | `boolean` | If `true`, the link will open in new tab. |