amotify
Version:
UI Component for React,NextJS,esbuild
15 lines (14 loc) • 481 B
TypeScript
/// <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 };