UNPKG

hh-ui-components

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