pkg-components
Version:
17 lines (16 loc) • 386 B
text/typescript
export interface QuantityButtonProps {
border?: string
classNameQuantity?: string
disabled?: boolean
label?: string
margin?: any
padding?: any
quantity: number
showNegativeButton?: boolean
showPositiveButton?: boolean
validationOne?: boolean
validationZero?: boolean
width?: string
handleDecrement?: () => void
handleIncrement?: () => void
}