shadcn-vue/apps/www/src/public/registry/styles/new-york/label.json

18 lines
938 B
JSON

{
"name": "label",
"dependencies": [],
"registryDependencies": [
"utils"
],
"files": [
{
"name": "Label.vue",
"content": "<script setup lang=\"ts\">\nimport { type HTMLAttributes, computed } from 'vue'\nimport { Label, type LabelProps } from 'radix-vue'\nimport { cn } from '@/lib/utils'\n\nconst props = defineProps<LabelProps & { class?: HTMLAttributes['class'] }>()\n\nconst delegatedProps = computed(() => {\n const { class: _, ...delegated } = props\n\n return delegated\n})\n</script>\n\n<template>\n <Label\n v-bind=\"delegatedProps\"\n :class=\"\n cn(\n 'text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70',\n props.class,\n )\n \"\n >\n <slot />\n </Label>\n</template>\n"
},
{
"name": "index.ts",
"content": "export { default as Label } from './Label.vue'\n"
}
],
"type": "components:ui"
}