UNPKG

@lunit/oui

Version:

Lunit Oncology UI components

9 lines (8 loc) 249 B
import type { CardProps as MuiCardProps } from '@mui/material'; export type CardSize = 'small' | 'large'; export interface CardProps extends MuiCardProps { size?: CardSize; open?: boolean; selected?: boolean; onClick?: () => void; }