UNPKG

@adaptabletools/adaptable

Version:

Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

12 lines (11 loc) 411 B
import * as React from 'react'; import { HTMLProps } from 'react'; export declare const baseClassName = "ab-Input"; export type InputProps = HTMLProps<HTMLInputElement> & { type?: string; disabled?: boolean; list?: any; as?: React.ComponentType<any>; }; declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>; export default Input;