import React, { FC } from 'react' import { CardActionArea as MuiCardActionArea, SxProps } from '@mui/material' interface CardActionAreaProps { onClick?: () => void, href?: string, target?: string, sx?: SxProps, className?: string, children?: React.ReactNode } export const CardActionArea: FC = (props) => { // == Props ================================ const { onClick, href = '', target = '_blank', children, sx, className = '' } = props // == Hooks ================================ // == Functions ============================ // == ActionArea ============================== // == Template ============================= return ( {children} ) }