fannypack
Version:
An accessible, composable, and friendly React UI Kit
40 lines (27 loc) • 512 B
text/mdx
name: Link
route: /typography/link
menu: Typography
import { Playground, PropsTable } from 'docz';
import { Box } from '../primitives/index';
import Link from './index';
# Link
## Import
`import { Link } from 'fannypack'`
## Basic Usage
`<Link>` renders a `<a>` element with reset styles and basic link styling.
<Playground>
<Link href="https://google.com">
Click me
</Link>
</Playground>
## Props
<PropsTable of={Link} />
## Theming
### Schema
```jsx
{
base: string | Object
}
```