Files
web/apps/scandic-web/components/Section/index.tsx
Erik Tiekstra 339e7195dc fix(BOOK-436): Added new section component and deprecated the other
Approved-by: Chuma Mcphoy (We Ahead)
2025-10-13 08:31:26 +00:00

16 lines
333 B
TypeScript

import { cx } from "class-variance-authority"
import styles from "./section.module.css"
export function Section({
children,
className,
...props
}: React.PropsWithChildren<React.HTMLAttributes<HTMLElement>>) {
return (
<section {...props} className={cx(styles.section, className)}>
{children}
</section>
)
}