Links
A utility component for displaying multiple links.
---
import Links from 'fulldev-ui/components/Links.astro'
---
<Links links={[{ text: 'First' }, { text: 'Second' }]} />
Props
Please reference src/components/Links.astro for now.
Examples
direction
---
import Links from 'fulldev-ui/components/Links.astro'
---
<Links direction="column" links={[{ text: 'First' }, { text: 'Second' }]} />
variant
---
import Links from 'fulldev-ui/components/Links.astro'
---
<Links variant="primary" links={[{ text: 'First' }, { text: 'Second' }]} />
<Links variant="muted" links={[{ text: 'First' }, { text: 'Second' }]} />
size
---
import Links from 'fulldev-ui/components/Links.astro'
---
<Links size="sm" links={[{ text: 'First' }, { text: 'Second' }]} />
<Links size="md" links={[{ text: 'First' }, { text: 'Second' }]} />
<Links size="lg" links={[{ text: 'First' }, { text: 'Second' }]} />