import { ReactNode } from 'react'; import clsx from 'clsx'; import styles from './Box.module.scss'; type Props = { children: ReactNode; className?: string; }; const Box = ({ children, className }: Props) =>