@surveycake/rc
Version:
react component of surveycake
12 lines (11 loc) • 471 B
TypeScript
import { ChipProps } from '@material-ui/core/Chip';
declare type AdditionalVariant = 'surveycake';
declare type MuiChipVariant = 'default' | 'outlined';
declare type ExtendedVariant = MuiChipVariant | AdditionalVariant;
declare type MuiChipColor = 'primary' | 'secondary' | 'default';
declare type ChipType = Omit<ChipProps, 'variant' | 'color'> & {
variant: ExtendedVariant;
active?: boolean;
color?: string;
};
export { ChipType, MuiChipColor };