import * as React from "react"; import { IComponentProps } from "./BaseComponent"; import PositionContainer from "./PositionContainer"; import { IconName, InputGroup, Intent } from "@blueprintjs/core"; class InputGroupComponent extends React.Component { render() { return ( ); } } export interface IInputGroupComponentProps extends IComponentProps { className?: string; disabled?: boolean; large?: boolean; intent?: Intent; defaultValue?: string; leftIcon?: IconName; rightElement?: JSX.Element; round?: boolean; small?: boolean; type?: string; value?: string; placeholder?: string; } export default InputGroupComponent;