phase 16 implementation

This commit is contained in:
root
2026-06-25 20:08:39 -04:00
parent 5d017f533a
commit c43620a005
248 changed files with 18458 additions and 90 deletions
+5 -5
View File
@@ -6,11 +6,11 @@ interface FormFieldProps {
id: string;
label: string;
required?: boolean;
optionalLabel?: string;
supportingText?: string;
error?: string;
optionalLabel?: string | undefined;
supportingText?: string | undefined;
error?: string | undefined;
children: ReactNode;
className?: string;
className?: string | undefined;
}
export function FormField({
@@ -58,7 +58,7 @@ export function Fieldset({
}: {
legend: string;
children: ReactNode;
className?: string;
className?: string | undefined;
}) {
return (
<fieldset className={classNames(styles.fieldset, className)}>