sp4-otel-1770445387/packages/ui/src/components/Label.tsx
jordan bdf462ce92
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/manual/woodpecker Pipeline was successful
Initialize project from skeleton template
2026-02-07 06:23:08 +00:00

33 lines
852 B
TypeScript

import * as React from 'react';
import * as LabelPrimitive from '@radix-ui/react-label';
import { cva, type VariantProps } from 'class-variance-authority';
import { cn } from '../utils/cn';
const labelVariants = cva(
'text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70'
);
export interface LabelProps
extends React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>,
VariantProps<typeof labelVariants> {
error?: boolean;
}
const Label = React.forwardRef<
React.ElementRef<typeof LabelPrimitive.Root>,
LabelProps
>(({ className, error, ...props }, ref) => (
<LabelPrimitive.Root
ref={ref}
className={cn(
labelVariants(),
error && 'text-[var(--error)]',
className
)}
{...props}
/>
));
Label.displayName = LabelPrimitive.Root.displayName;
export { Label };