UNPKG

react-colorify

Version:

A compact gradient and color picker library optimized for React, offering a fast and lag-free color selection experience with highly customizable options.

11 lines (10 loc) 272 B
import "./globals.scss"; import React from "react"; interface ColorPickerProps { defaultValue: string; onChange: (color: string) => void; className?: string; labelFor?: string; } declare const Colorify: React.FC<ColorPickerProps>; export default Colorify;