Menu
Documentation

Checkbox Animated

TairoCheckboxAnimated is an enhanced checkbox component featuring a smooth circular animation with checkmark and customizable color variants for different states.

Example

Show code
vue
<script setup lang="ts">
const checked = ref(false)
</script>

<template>
  <label class="flex items-center gap-3">
    <TairoCheckboxAnimated
      v-model="checked"
      variant="success"
    />
    <BaseText
      class="text-muted-500 dark:text"
      size="sm"
    >
      Lowercase
    </BaseText>
  </label>
</template>

Components

TairoCheckboxAnimated

CheckboxRoot
Unable to load component <TairoCheckboxAnimated> metadata.