UNPKG

amotify

Version:

UI Component for React,NextJS,esbuild

15 lines (14 loc) 481 B
/// <reference types="react" /> import { Themecolor } from '../../@declares'; import { InputTypes } from '.'; declare namespace Color { type Input = InputTypes.CoreInput<string> & React.DOMAttributes<HTMLInputElement> & { id?: string; tabIndex?: number; disabled?: boolean; value?: string; }; type Color = Themecolor | 'theme' | 'posi' | 'nega' | 'warn'; } declare const Color: React.FC<Color.Input>; export { Color, Color as default };