mirror of
https://github.com/documenso/documenso.git
synced 2026-07-14 23:07:13 +10:00
138d663c25
Merge origin/main into feat/external-2fa-codes. Resolve formatting conflicts caused by biome rollout; preserve both feature streams: PR's external 2FA token + signing-session 2FA proof additions plus main's RateLimit/RecipientExpired/signingReminders/date-auto-insert. In complete-document-with-token.ts, drop the duplicate early field-fetching block introduced when main moved that logic later with date auto-insert support; keep the EXTERNAL_TWO_FACTOR_AUTH check using derivedRecipientActionAuth.
24 lines
920 B
TypeScript
24 lines
920 B
TypeScript
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
import type { VariantProps } from 'class-variance-authority';
|
|
import { cva } from 'class-variance-authority';
|
|
import * as React from 'react';
|
|
|
|
import { cn } from '../lib/utils';
|
|
|
|
const labelVariants = cva('text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70');
|
|
|
|
const Label = React.forwardRef<
|
|
React.ElementRef<typeof LabelPrimitive.Root>,
|
|
React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> &
|
|
VariantProps<typeof labelVariants> & { required?: boolean }
|
|
>(({ className, children, required, ...props }, ref) => (
|
|
<LabelPrimitive.Root ref={ref} className={cn(labelVariants(), className)} {...props}>
|
|
{children}
|
|
{required && <span className="ml-1 inline-block font-medium text-destructive">*</span>}
|
|
</LabelPrimitive.Root>
|
|
));
|
|
|
|
Label.displayName = LabelPrimitive.Root.displayName;
|
|
|
|
export { Label };
|