checkbox
shadcn-vue/checkboxFreeComponent
shadcn-vue publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by shadcn-vue on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://shadcn-vue.com/r/styles/new-york/checkbox.jsonSource
1<script setup lang="ts">2import type { CheckboxRootEmits, CheckboxRootProps } from "reka-ui"3import type { HTMLAttributes } from "vue"4import { reactiveOmit } from "@vueuse/core"5import { Check } from "lucide-vue-next"6import { CheckboxIndicator, CheckboxRoot, useForwardPropsEmits } from "reka-ui"7import { cn } from "@/lib/utils"89const props = defineProps<CheckboxRootProps & { class?: HTMLAttributes["class"] }>()10const emits = defineEmits<CheckboxRootEmits>()1112const delegatedProps = reactiveOmit(props, "class")1314const forwarded = useForwardPropsEmits(delegatedProps, emits)15</script>1617<template>18 <CheckboxRoot19 v-bind="forwarded"20 :class="21 cn('grid place-content-center peer h-4 w-4 shrink-0 rounded-sm border border-primary shadow focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground',22 props.class)"23 >24 <CheckboxIndicator class="grid place-content-center text-current">25 <slot>26 <Check class="h-4 w-4" />27 </slot>28 </CheckboxIndicator>29 </CheckboxRoot>30</template>
What it pulls in
npm packages
Files it writes
More from shadcn-vue
All 65 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| accordionaccordion | shadcn-vue | Components | Free | 2 deps · 5 files | |
| alertalert | shadcn-vue | Components | Free | no deps · 4 files | |
| alert-dialogalert-dialog | shadcn-vue | Components | Free | 2 deps · 10 files | |
| aspect-ratioaspect-ratio | shadcn-vue | Components | Free | 1 dep · 2 files | |
| attachmentattachment | shadcn-vue | Components | Free | 1 dep · 10 files | |
| avataravatar | shadcn-vue | Components | Free | 2 deps · 4 files | |
| badgebadge | shadcn-vue | Components | Free | 2 deps · 2 files | |
| breadcrumbbreadcrumb | shadcn-vue | Components | Free | 1 dep · 8 files |
