import cn from 'classnames' import React, { FC } from 'react' interface Props { className?: string children?: any el?: HTMLElement clean?: boolean } const Container: FC = ({ children, className, el = 'div', clean }) => { const rootClassName = cn(className, { 'mx-auto max-w-8xl px-6': !clean, }) let Component: React.ComponentType< React.HTMLAttributes > = el as any return {children} } export default Container