import { BoxProps, Flex } from "@chakra-ui/layout"; import React, { ReactNode } from "react"; export default function OutlinedBox({ children, ...props }: { children: ReactNode } & BoxProps) { return ( {children} ); }