UNPKG

@test-party/contrast-color-picker

Version:

🎨 @test-party/contrast-color-picker is a lightweight, customizable color contrast picker designed for React applications. Built with accessibility in mind, it helps developers ensure compliance with WCAG color contrast standards by offering real-time fee

8 lines (7 loc) • 289 B
/// <reference types="react" /> import { ColorInputBaseProps } from "../types"; interface HsvaColorInputProps extends ColorInputBaseProps { label?: string; } export declare const HsvaStringColorInput: ({ color, onChange, label }: HsvaColorInputProps) => JSX.Element; export {};