---
id: link
sidebar_label: 'Link'
sidebar_position: 1
---
# LearnMoreLink
An external link component with an arrow icon that opens in a new tab.
## Props
| Prop | Type | Required | Description |
| ----------- | ----------------- | -------- | ---------------------- |
| `href` | `string` | Yes | URL to navigate to |
| `children` | `React.ReactNode` | Yes | Link text or content |
| `className` | `string` | No | Additional CSS classes |
## Usage Examples
### Basic Link
```tsx live
Learn more about Insomnia
```
### Custom Styling
```tsx live
Visit our website
```
## Styling
### CSS Variables
The component uses the following CSS variables for theming:
- `--color-font`: Link text color
- `--color-bg`: Link background color
You can customize these variables in your CSS to theme the link appearance.