import React, { FC } from 'react' import { CardHeader as MuiCardHeader, SxProps } from '@mui/material' interface CardHeaderProps { title?: React.ReactNode, subTitle?: React.ReactNode, avatar?: React.ReactNode, sx?: SxProps, className?: string } export const CardHeader: FC = (props) => { // == Props ================================ const { sx, title, subTitle, avatar, className = '' } = props // == Hooks ================================ // == Functions ============================ // == Headers ============================== // == Template ============================= return ( ) }