UNPKG

hh-ui-components

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