import './_container.scss'; type containerProps = { fluid?: boolean; hero?: boolean; fullWidth?: boolean; small?: boolean; children: React.ReactNode; }; const Container = ({ fluid, hero, fullWidth, small, children, }: containerProps) => { const classes = () => { let c = fluid ? 'swptls-container-fluid ' : 'swptls-container '; c += hero ? 'swptls-hero ' : ''; c += fullWidth ? 'full-width ' : ''; c += small ? 'small ' : ''; return c; }; return