diff options
| author | MohamedBassem <me@mbassem.com> | 2024-02-08 17:22:31 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-02-08 17:22:31 +0000 |
| commit | bae1bccbd8029db4bacbd8ecc9f668e7119016c8 (patch) | |
| tree | 157b71c6009e3b38a3a94c0cc7d9dda190b72d56 /packages/web/components/ui/label.tsx | |
| parent | 80bb8a108f29331cdb2f2695f6801beee104dc89 (diff) | |
| download | karakeep-bae1bccbd8029db4bacbd8ecc9f668e7119016c8.tar.zst | |
Migrating away from bun to yarn
Diffstat (limited to 'packages/web/components/ui/label.tsx')
| -rw-r--r-- | packages/web/components/ui/label.tsx | 20 |
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 }; |
