import type { BoxProps } from '@mui/material'; import type { PropsWithChildren } from 'react'; import { Card } from '../Card'; export const ContractComponent: React.FC> = ({ children, ...props }) => { if (!children) { return null; } return {children}; };