as-product-card
Version:
This is a package of test to release in NPM
10 lines (9 loc) • 341 B
TypeScript
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;