chore: base form (#23101)

This commit is contained in:
zxhlyh
2025-07-29 15:37:16 +08:00
committed by GitHub
parent 27f400e13f
commit 4c65a8091a
5 changed files with 58 additions and 5 deletions

View File

@@ -7,6 +7,7 @@ const AuthForm = ({
defaultValues,
ref,
formFromProps,
...rest
}: BaseFormProps) => {
return (
<BaseForm
@@ -16,6 +17,7 @@ const AuthForm = ({
formClassName='space-y-4'
labelClassName='h-6 flex items-center mb-1 system-sm-medium text-text-secondary'
formFromProps={formFromProps}
{...rest}
/>
)
}