UNPKG

hh-ui-components

Version:
15 lines (14 loc) 365 B
import { FC } from "react"; export interface CartSingleProductProps { title?: string; size?: string; price?: number; discountedPrice?: number; quantity?: number; img?: any; color?: string; tag?: string; onClick?: () => void; } export declare const CartSingleProduct: FC<CartSingleProductProps>; export default CartSingleProduct;