hh-ui-components
Version:
16 lines (15 loc) • 378 B
TypeScript
import { FC } from "react";
export interface CartBoxProviderProps {
title?: string;
size?: string;
price?: number;
discountedPrice?: number;
quantity?: number;
img?: any;
color?: any;
tag?: string;
onClick?: () => void;
recomProducts: any;
}
export declare const CartBoxProvider: FC<CartBoxProviderProps>;
export default CartBoxProvider;