@maherunlocker/custom-react-table
Version:
dynamic table based on react table v7
10 lines (9 loc) • 513 B
TypeScript
/// <reference types="react" />
import 'bootstrap/dist/css/bootstrap.min.css';
import { InputProps } from 'reactstrap';
export declare type StyledSearchInputPropsType = {
placeholder: string;
initialSearchBoxWidth?: string;
} & InputProps;
export declare function StyledSearchInput({ placeholder, ...props }: StyledSearchInputPropsType): JSX.Element;
export declare function StyledCollapsibleSearchInput({ placeholder, initialSearchBoxWidth, ...props }: StyledSearchInputPropsType): JSX.Element;