Repository URL to install this package:
|
Version:
3.0.1 ▾
|
import { TextProps } from 'atoms/Text';
export interface LabelValueProps {
label?: string;
value?: string;
}
export interface ProductQuantityProps extends TextProps {
/**
* It is the count of quantity
*/
quantityCount: string;
labelValueList?: Array<LabelValueProps>;
}