aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/components/ui/label.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/web/components/ui/label.tsx')
-rw-r--r--packages/web/components/ui/label.tsx20
1 files changed, 10 insertions, 10 deletions
diff --git a/packages/web/components/ui/label.tsx b/packages/web/components/ui/label.tsx
index 53418217..84f8b0c7 100644
--- a/packages/web/components/ui/label.tsx
+++ b/packages/web/components/ui/label.tsx
@@ -1,14 +1,14 @@
-"use client"
+"use client";
-import * as React from "react"
-import * as LabelPrimitive from "@radix-ui/react-label"
-import { cva, type VariantProps } from "class-variance-authority"
+import * as React from "react";
+import * as LabelPrimitive from "@radix-ui/react-label";
+import { cva, type VariantProps } from "class-variance-authority";
-import { cn } from "@/lib/utils"
+import { cn } from "@/lib/utils";
const labelVariants = cva(
- "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
-)
+ "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",
+);
const Label = React.forwardRef<
React.ElementRef<typeof LabelPrimitive.Root>,
@@ -20,7 +20,7 @@ const Label = React.forwardRef<
className={cn(labelVariants(), className)}
{...props}
/>
-))
-Label.displayName = LabelPrimitive.Root.displayName
+));
+Label.displayName = LabelPrimitive.Root.displayName;
-export { Label }
+export { Label };