diff --git a/app/components/Label.tsx b/app/components/Label.tsx index 828456dc7..08e349d28 100644 --- a/app/components/Label.tsx +++ b/app/components/Label.tsx @@ -13,6 +13,7 @@ type LabelProps = Pick< }; required?: boolean; className?: string; + labelClassName?: string; }; export function Label({ @@ -21,10 +22,11 @@ export function Label({ children, htmlFor, className, + labelClassName, }: LabelProps) { return (
-