import classNames from 'classnames' import styles from "./styles.module.scss" export type BackgroundColor = "soft" | "off-white" | undefined type SectionProps = { backgroundColor?: BackgroundColor children?: React.ReactNode; padding?: "small" | "medium" | "large" paddingBottom?: "small" | "medium" | "large" } export const Section = ({ children, backgroundColor, padding = "large", paddingBottom }: SectionProps) => { return (
{children}
) }