UNPKG

@patreon/studio

Version:

Patreon Studio Design System

8 lines (7 loc) 310 B
import type { SelectProps } from '../Select/types'; import type { TextInputProps } from '../TextInput/types'; declare type InputGroupChild = React.ReactElement<TextInputProps | SelectProps> | false | undefined; export interface InputGroupProps { children: InputGroupChild | InputGroupChild[]; } export {};