import React, { FC } from 'react' import { Card as MuiCard, SxProps } from '@mui/material' interface CardProps { sx?: SxProps, raised?: boolean, className?: string, children?: React.ReactNode } export const Card: FC = (props) => { // == Props ================================ const { sx, raised = false, children, className = '' } = props // == Hooks ================================ // == Functions ============================ // == Actions ============================== // == Template ============================= return ( {children} ) }