Component workbench.
Try the controls. Follow the state. Switch themes with the control in the header. Each example uses the same components you install.
FzButton
native click
- Props
- variant, size, loading, disabled, type
- Slots
- default, trailing
<script setup lang="ts">
import { FzButton } from '@chrisdalbano/forza-ui'
function saveBuild(): void {
/* your application action */
}
</script>
<template>
<FzButton @click="saveBuild">Save build</FzButton>
</template>