import { Background, Padding } from '@/@dble_layout'; export const CardContainer = ({ children, fill, isShadow, }: { children: React.ReactNode; fill?: string; isShadow?: boolean; }) => { return ( {children} ); };