import { ClassNames } from "@compiled/react"; import { error } from "../style/colors"; export const BoxStyles = ({ children }) => ( {({ css }) => children({ className: css` display: flex; width: 100px; height: 100px; border: 1px solid ${error}; padding: 8px; flex-direction: column; `, }) } );