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/legend/legend.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/components/atoms/forms/legend/legend.tsx (limited to 'src/components/atoms/forms/legend/legend.tsx') diff --git a/src/components/atoms/forms/legend/legend.tsx b/src/components/atoms/forms/legend/legend.tsx new file mode 100644 index 0000000..b517855 --- /dev/null +++ b/src/components/atoms/forms/legend/legend.tsx @@ -0,0 +1,21 @@ +import type { FC, HTMLAttributes } from 'react'; +import styles from './legend.module.scss'; + +export type LegendProps = HTMLAttributes; + +/** + * Legend component. + */ +export const Legend: FC = ({ + children, + className = '', + ...props +}) => { + const legendClass = `${styles.legend} ${className}`; + + return ( + + {children} + + ); +}; -- cgit v1.2.3