Repository URL to install this package:
|
Version:
2.1.12 ▾
|
import { TextProps } from '@skava/ui/dist/components/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>
}