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