@patreon/studio
Version:
Patreon Studio Design System
8 lines (7 loc) • 322 B
TypeScript
import type { SelectProps } from '~/components/Select/types';
import type { TextInputProps } from '~/components/TextInput/types';
type InputGroupChild = React.ReactElement<TextInputProps | SelectProps> | false | undefined;
export interface InputGroupProps {
children: InputGroupChild | InputGroupChild[];
}
export {};