UNPKG

@chakra-ui/core

Version:

Responsive and accessible React UI components built with React and Emotion

14 lines (10 loc) 326 B
import { BoxProps } from "../Box"; import * as React from "react"; import { IInput } from "../Input"; export interface IInputGroup { size?: IInput["size"]; children: React.ReactNode; } export type InputGroupProps = IInputGroup & BoxProps; declare const InputGroup: React.FC<InputGroupProps>; export default InputGroup;