Button

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

<Button color="brand">Button</Button>

Props

PropTypeDefault
iconComponentProps<typeof Icon>['name']-
avatarComponentProps<typeof Avatar>['src']-
slugCollectionEntry<'pages'>['slug']-
variant'primary' | 'secondary' | 'tertiary' | 'link'secondary
reverseboolean-
textstring-
size'sm' | 'md' | 'lg'-
color'base' | 'brand'-
contrastboolean-
theme'light' | 'dark'-
HTML Attributes'button' | 'a' | 'label'-

Examples

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

<Button variant="primary">Button</Button>
<Button variant="secondary">Button</Button>
<Button variant="tertiary">Button</Button>
---
import Button from 'fulldev-ui/components/Button.astro'
---

<Button icon="circle" text="Button" text="Buttontje" />
---
import Button from 'fulldev-ui/components/Button.astro'
---

<Button size="sm" text="Button" />
<Button size="md" text="Button" />
<Button size="lg" text="Button" />
---
import Button from 'fulldev-ui/components/Button.astro'
---

<Button color="base" text="Button" />
<Button color="brand" text="Button" />