UNPKG

@devfamily/admiral

Version:

Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.

11 lines (10 loc) 493 B
import React from 'react'; import type { ColorPickerProps, ColorPickerResult } from '../../ui/ColorPicker/interfaces'; import { FormItemProps } from '../Item'; import { InputComponentWithName } from '../interfaces'; export interface ColorPickerInputProps extends ColorPickerProps, FormItemProps { name: string; outputValue?: keyof ColorPickerResult; onChange?: (value: any) => void; } export declare const ColorPickerInput: InputComponentWithName<React.FC<ColorPickerInputProps>>;