@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 422 B
TypeScript
import * as React from 'react';
import { HTMLProps } from 'react';
import { BoxProps } from 'rebass';
export declare const baseClassName = "ab-Input";
export type InputProps = HTMLProps<HTMLInputElement> & {
type?: string;
disabled?: boolean;
list?: any;
} & BoxProps;
declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
export default Input;