UNPKG

fenextjs-component

Version:
10 lines (9 loc) • 328 B
import React from "react"; export interface InputColorProps { className?: string; defaultValue?: string; value?: string; onChange?: (data: string) => void; disabled?: boolean; } export declare const InputColor: ({ className, defaultValue, value, onChange, disabled, }: InputColorProps) => React.JSX.Element;