import type { FC, ReactNode } from "react"; import { Box, ThemeUIStyleObject } from "theme-ui"; export interface CardBoxProps { children?: ReactNode; sx?: ThemeUIStyleObject; withRadius: boolean; radius?: string; bg?: string; background?: string; } export const CardBox: FC = ({ bg, background, sx, withRadius, radius, children, }) => ( {children} );