From a6ff5eee45215effb3344cb5d631a27a7c0369aa Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 22 Sep 2023 19:34:01 +0200 Subject: refactor(components): rewrite form components --- src/components/atoms/forms/form/form.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/components/atoms/forms/form/form.tsx (limited to 'src/components/atoms/forms/form/form.tsx') diff --git a/src/components/atoms/forms/form/form.tsx b/src/components/atoms/forms/form/form.tsx new file mode 100644 index 0000000..86481d2 --- /dev/null +++ b/src/components/atoms/forms/form/form.tsx @@ -0,0 +1,28 @@ +import { + type FormHTMLAttributes, + forwardRef, + type ForwardRefRenderFunction, +} from 'react'; + +export type FormRole = 'form' | 'search' | 'none' | 'presentation'; + +export type FormProps = FormHTMLAttributes & { + /** + * An accessible role. + */ + role?: FormRole; +}; + +const FormWithRef: ForwardRefRenderFunction = ( + { children, ...props }, + ref +) => ( +
+ {children} +
+); + +/** + * Form component. + */ +export const Form = forwardRef(FormWithRef); -- cgit v1.2.3