@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
9 lines (8 loc) • 347 B
TypeScript
/// <reference types="react" />
import { HsvaColor } from "../types";
import { ObjectColorInputBaseProps } from "../types";
interface HsvaInputFieldsProps extends ObjectColorInputBaseProps<HsvaColor> {
label?: string;
}
export declare const HsvaColorInput: ({ color, onChange, label }: HsvaInputFieldsProps) => JSX.Element;
export {};