import { SxProps } from '@mui/material';
import { Theme } from '@emotion/react';
import { ColorVariant, MuiCardBaseProps } from '../types';

export interface CardBaseProps extends MuiCardBaseProps {
  sx?: SxProps<Theme>;
  raised?: boolean;
  border?: boolean;
  color?: ColorVariant;
  children?: React.ReactNode;
}
