UNPKG

326 BTypeScriptView Raw
1import { BoxProps } from "../Box";
2import * as React from "react";
3import { IInput } from "../Input";
4
5export interface IInputGroup {
6 size?: IInput["size"];
7 children: React.ReactNode;
8}
9
10export type InputGroupProps = IInputGroup & BoxProps;
11declare const InputGroup: React.FC<InputGroupProps>;
12
13export default InputGroup;