tinacms
Version:
> The Fastest Way to Edit Next.js Content
12 lines (11 loc) • 329 B
TypeScript
import * as React from 'react';
import { ColorFormat } from './color-formatter';
declare type WrappedFieldProps = any;
interface Props {
colorFormat: ColorFormat;
userColors: string[];
widget?: 'sketch' | 'block';
input: WrappedFieldProps['input'];
}
export declare const ColorPicker: React.FC<Props>;
export {};