Repository URL to install this package:
|
Version:
2.1.6 ▾
|
export interface ListItem {
name: string;
image?: string;
isSelected?: boolean;
/**
* @description sometimes the combination of current values can make one not possible
*/
isDisabled?: boolean;
}
export interface ProductOptionsProps {
className?: string;
list?: Array<ListItem>;
type?: string;
isDropdown?: boolean;
isProductDetailsPage?: boolean;
onChange?: Function;
selectedValue?: Object;
}