pkg-components
Version:
17 lines (16 loc) • 383 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
}