import { StyledContainer } from "./styles"; import { ContainerProps } from "../types"; const Container = ({ border, children }: ContainerProps) => ( {children} ); export default Container;