Links are accessible elements used primarily for navigation. This component is
styled to resemble a hyperlink and semantically renders an <a>.
Did you know that links can live inline with text
When add a link to a group of content or container, it is recommended to avoid wrapping with a link
To solve this, use the Link component with property breakout instead. It'll
wrap the container in a clickable overlay and maintaining semantic HTML.
To use the Link with a routing library like Reach Router or React Router, all
you need to do is pass the as prop. It'll replace the rendered a tag with
Reach's Link.
The Link component composes the Box component.
| Name | Type | Description | Default |
|---|---|---|---|
| colorScheme | string | - | |
| css | Interpolation<{}> | The emotion's css style object | - |
| isExternal | boolean | If `true`, the link will open in new tab | - |
| orientation | "horizontal" | "vertical" | - | |
| size | string | - | |
| styleConfig | Record<string, any> | - | |
| variant | string | - |