UNPKG

as-product-card

Version:
10 lines (9 loc) 341 B
import { CSSProperties } from "react"; export interface PropsProductButtons { className?: string; style?: CSSProperties; addButton?: string; subtractButton?: string; } declare const ProductButtons: ({ className, style, addButton, subtractButton }: PropsProductButtons) => JSX.Element; export default ProductButtons;