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