import { containers } from "@styles/Commons"; import Box from "./bases/Box"; type Props = { children: React.ReactNode }; const ContainerBorderTopCurved = ({ children }: Props) => { return ( {children} ); }; export default ContainerBorderTopCurved;