{"version":3,"file":"index.cjs","sources":["../../../src/components/Label/index.tsx"],"sourcesContent":["import { cn } from \"@/components/utils\";\nimport * as LabelPrimitive from \"@radix-ui/react-label\";\nimport { cva, type VariantProps } from \"class-variance-authority\";\nimport * as React from \"react\";\n\nconst labelVariants = cva(\n  \"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70\"\n);\n\nconst Label = React.forwardRef<\n  React.ElementRef<typeof LabelPrimitive.Root>,\n  React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> &\n    VariantProps<typeof labelVariants>\n>(({ className, ...props }, ref) => (\n  <LabelPrimitive.Root\n    ref={ref}\n    className={cn(labelVariants(), className)}\n    {...props}\n  />\n));\nLabel.displayName = LabelPrimitive.Root.displayName;\n\nexport { Label };\n"],"names":["labelVariants","cva","Label","React","forwardRef","className","props","ref","jsx","jsxRuntimeExports","LabelPrimitive.Root","Root","cn","displayName"],"mappings":"ulBAKMA,EAAgBC,EAAAA,IACpB,8FAGIC,EAAQC,EAAMC,YAIlB,EAAGC,eAAcC,GAASC,IAC1BC,EAAAC,kBAAAD,IAACE,EAAeC,KAAf,CACCJ,MACAF,UAAWO,EAAAA,GAAGZ,IAAiBK,MAC3BC,MAGRJ,EAAMW,YAAcH,EAAAA,KAAoBG"}