21 lines
945 B
TypeScript
21 lines
945 B
TypeScript
/* eslint-disable react/jsx-props-no-spreading -- Standard shadcn pattern: forward remaining props to underlying elements */
|
|
import * as React from 'react';
|
|
|
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
import { cn } from '@renderer/lib/utils';
|
|
import { cva, type VariantProps } from 'class-variance-authority';
|
|
|
|
const labelVariants = cva(
|
|
'text-sm font-medium leading-none text-[var(--color-text)] peer-disabled:cursor-not-allowed peer-disabled:opacity-70'
|
|
);
|
|
|
|
const Label = React.forwardRef<
|
|
React.ComponentRef<typeof LabelPrimitive.Root>,
|
|
React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & VariantProps<typeof labelVariants>
|
|
>(({ className, ...props }, ref) => (
|
|
<LabelPrimitive.Root ref={ref} className={cn(labelVariants(), className)} {...props} />
|
|
));
|
|
Label.displayName = LabelPrimitive.Root.displayName;
|
|
|
|
export { Label };
|
|
/* eslint-enable react/jsx-props-no-spreading -- Re-enable after shadcn component */
|