aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/forms/legend/legend.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/forms/legend/legend.tsx')
-rw-r--r--src/components/atoms/forms/legend/legend.tsx21
1 files changed, 21 insertions, 0 deletions
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<HTMLLegendElement>;
+
+/**
+ * Legend component.
+ */
+export const Legend: FC<LegendProps> = ({
+ children,
+ className = '',
+ ...props
+}) => {
+ const legendClass = `${styles.legend} ${className}`;
+
+ return (
+ <legend {...props} className={legendClass}>
+ {children}
+ </legend>
+ );
+};