Links
---
import Links from 'fulldev-ui/components/Links.astro'
---
<Links
links={[
{ text: 'First', href: '#' },
{ text: 'Second', href: '#' },
]}
/>
Props
Examples
direction
---
import Links from 'fulldev-ui/components/Links.astro'
---
<Links
direction="column"
links={[
{ text: 'First', href: '#' },
{ text: 'Second', href: '#' },
]}
/>
variant
---
import Links from 'fulldev-ui/components/Links.astro'
---
<Links
variant="primary"
links={[
{ text: 'First', href: '#' },
{ text: 'Second', href: '#' },
]}
/>
<Links
variant="muted"
links={[
{ text: 'First', href: '#' },
{ text: 'Second', href: '#' },
]}
/>
size
---
import Links from 'fulldev-ui/components/Links.astro'
---
<Links
size="sm"
links={[
{ text: 'First', href: '#' },
{ text: 'Second', href: '#' },
]}
/>
<Links
size="md"
links={[
{ text: 'First', href: '#' },
{ text: 'Second', href: '#' },
]}
/>
<Links
size="lg"
links={[
{ text: 'First', href: '#' },
{ text: 'Second', href: '#' },
]}
/>