'use client'; import type * as React from 'react'; import { cn } from '@/lib/utils'; function Label({ className, ...props }: React.ComponentProps<'label'>) { return ( // biome-ignore lint/a11y/noLabelWithoutControl: This is a reusable component - control association happens at usage