diff --git a/app/components/Label.tsx b/app/components/Label.tsx index dcac385ca..0f420d896 100644 --- a/app/components/Label.tsx +++ b/app/components/Label.tsx @@ -11,12 +11,20 @@ type LabelProps = Pick< current: number; max: number; }; + required?: boolean; }; -export function Label({ valueLimits, children, htmlFor }: LabelProps) { +export function Label({ + valueLimits, + required, + children, + htmlFor, +}: LabelProps) { return (