import * as S from "./styles"; export default function ContentWrapper({ children, borderRadius, style, padding = "1.2rem 1.6rem", showOpacityIn = false, }: { borderRadius?: string; padding?: string; children: React.ReactNode; style?: Record; showOpacityIn?: boolean; }) { return ( {children} ); }