UNPKG

@terrazzo/react-color-picker

Version:

React color picker that supports Color Module 4, wide color gamut (WCG), and Display-P3 using WebGL for monitor-accurate colors. Powered by Culori.

9 lines 389 B
import type { Oklab } from '@terrazzo/use-color'; import { type ComponentProps } from 'react'; export interface TrueGradientProps extends ComponentProps<'canvas'> { start: Oklab; end: Oklab; } declare function TrueGradient({ start, end, ...props }: TrueGradientProps): import("react/jsx-runtime").JSX.Element; export default TrueGradient; //# sourceMappingURL=TrueGradient.d.ts.map