UNPKG

hh-ui-components

Version:
12 lines (11 loc) 305 B
import React from "react"; export interface SingleProductProps { color: string; variants?: "collection" | "product"; active?: boolean; className?: string; handle?: string; onClick?: () => void; isWhite?: any; } export declare const SingleProduct: React.FC<SingleProductProps>;