Totaal

€10,00

Verzendkosten worden berekend bij het afrekenen.

Buttons

---
import Buttons from 'fulldev-ui/components/Buttons.astro'
---

<Buttons buttons={[{ text: 'First' }, { text: 'Second' }]} />

Props

Examples

variant

---
import Buttons from 'fulldev-ui/components/Buttons.astro'
---

<Buttons
  variant="primary"
  buttons={[{ text: 'First' }, { text: 'Second' }, { text: 'Third' }]}
/>
<Buttons
  variant="secondary"
  buttons={[{ text: 'First' }, { text: 'Second' }]}
/>

size

---
import Buttons from 'fulldev-ui/components/Buttons.astro'
---

<Buttons size="sm" buttons={[{ text: 'First' }, { text: 'Second' }]} />
<Buttons size="md" buttons={[{ text: 'First' }, { text: 'Second' }]} />
<Buttons size="lg" buttons={[{ text: 'First' }, { text: 'Second' }]} />