Repository URL to install this package:
|
Version:
2.7.3 ▾
|
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>
}