import React, { ElementType, FC } from 'react' import { CardMedia as MuiCardMedia, SxProps } from '@mui/material' interface CardMediaProps { height?: number, sx?: SxProps, image?: string, title?: string, component?: ElementType, src?: string, className?: string, children?: React.ReactNode } export const CardMedia: FC = (props) => { // == Props ================================ const { children, sx, image, src, title, height, component = 'img', className = '' } = props // == Hooks ================================ // == Functions ============================ // == Media ============================== // == Template ============================= return ( {children} ) }