aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/section/section.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/layout/section/section.tsx')
-rw-r--r--src/components/atoms/layout/section/section.tsx41
1 files changed, 7 insertions, 34 deletions
diff --git a/src/components/atoms/layout/section/section.tsx b/src/components/atoms/layout/section/section.tsx
index 63c658a..63a2499 100644
--- a/src/components/atoms/layout/section/section.tsx
+++ b/src/components/atoms/layout/section/section.tsx
@@ -2,45 +2,18 @@ import {
forwardRef,
type ForwardRefRenderFunction,
type HTMLAttributes,
- type ReactNode,
} from 'react';
-import styles from './section.module.scss';
-export type SectionVariant = 'dark' | 'light';
-
-export type SectionProps = Omit<HTMLAttributes<HTMLElement>, 'children'> & {
- /**
- * The section content.
- */
- children: ReactNode | ReactNode[];
- /**
- * Add a border at the bottom of the section.
- *
- * @default false
- */
- hasBorder?: boolean;
- /**
- * The section variant.
- *
- * @default 'light'
- */
- variant?: SectionVariant;
-};
+export type SectionProps = HTMLAttributes<HTMLElement>;
const SectionWithRef: ForwardRefRenderFunction<HTMLElement, SectionProps> = (
- { children, className = '', hasBorder = false, variant = 'light', ...props },
+ { children, ...props },
ref
-) => {
- const borderClass = hasBorder ? styles[`wrapper--borders`] : '';
- const variantClass = styles[`wrapper--${variant}`];
- const sectionClass = `${styles.wrapper} ${borderClass} ${variantClass} ${className}`;
-
- return (
- <section {...props} className={sectionClass} ref={ref}>
- {children}
- </section>
- );
-};
+) => (
+ <section {...props} ref={ref}>
+ {children}
+ </section>
+);
/**
* Section component