diff options
Diffstat (limited to 'packages/ui-new/src/components/ui/label.tsx')
| -rw-r--r-- | packages/ui-new/src/components/ui/label.tsx | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/ui-new/src/components/ui/label.tsx b/packages/ui-new/src/components/ui/label.tsx new file mode 100644 index 0000000..9a998c7 --- /dev/null +++ b/packages/ui-new/src/components/ui/label.tsx @@ -0,0 +1,19 @@ +import type * as React from "react"; + +import { cn } from "@/lib/utils"; + +function Label({ className, ...props }: React.ComponentProps<"label">) { + return ( + // biome-ignore lint/a11y/noLabelWithoutControl: shadcn component + <label + data-slot="label" + className={cn( + "gap-2 text-xs leading-none group-data-[disabled=true]:opacity-50 peer-disabled:opacity-50 flex items-center select-none group-data-[disabled=true]:pointer-events-none peer-disabled:cursor-not-allowed", + className, + )} + {...props} + /> + ); +} + +export { Label }; |