diff --git a/app/components/Label.tsx b/app/components/Label.tsx index 08e349d28..f5c430a49 100644 --- a/app/components/Label.tsx +++ b/app/components/Label.tsx @@ -14,6 +14,7 @@ type LabelProps = Pick< required?: boolean; className?: string; labelClassName?: string; + spaced?: boolean; }; export function Label({ @@ -23,9 +24,10 @@ export function Label({ htmlFor, className, labelClassName, + spaced = true, }: LabelProps) { return ( -