Toggle
---
import Toggle from 'fulldev-ui/components/Toggle.astro'
---
<Toggle text="Click me" icon="click" />
Props
Prop | Type | Default |
---|---|---|
color | 'base' | 'brand' | undefined | - |
id | string | undefined | uid(7) |
name | string | undefined | - |
icon | string | undefined | - |
html | string | undefined | - |
text | string | undefined | - |
toggled | boolean | undefined | - |
as | HTMLTag | label |
HTML Attributes | Polymorphic<label> | - |
Examples
---
import Toggle from 'fulldev-ui/components/Toggle.astro'
---
<Toggle icon={'code'} text="Auto save" toggled={true} />