@lunit/oui
Version:
Lunit Oncology UI components
7 lines (6 loc) • 324 B
TypeScript
import type { ChipProps as MuiChipProps } from '@mui/material';
export type ChipsPreset = 'default' | 'uploaded' | 'analyzing' | 'analyzed' | 'analysis_failed' | 'qc_failed' | 'ready' | 'inferred' | 'inferencing' | 'invalid';
export interface ChipProps extends MuiChipProps {
preset?: ChipsPreset;
label?: string;
}