33 lines
852 B
TypeScript
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 };
|