nes-ui-react
Version:
A design system that paints the web in 8 bits.
12 lines (11 loc) • 384 B
TypeScript
/// <reference types="react" />
import { IdProps } from './IdProps';
import { OnChangeHandlerProps } from './OnChangeHandler';
import { StyleProps } from './StyleProps';
export interface InputProps extends IdProps, StyleProps, OnChangeHandlerProps<React.SyntheticEvent> {
autoComplete?: string;
label?: string;
value?: string;
name?: string;
disabled?: boolean;
}