1 2 3 4 5 6 7
import type { ComponentPropsWithoutRef } from 'react' import { cn } from '../lib/cn' export function Container({ className, ...props }: ComponentPropsWithoutRef<'div'>) { return <div className={cn('mx-auto w-full max-w-[90rem] px-5 sm:px-8 lg:px-12', className)} {...props} /> }