UNPKG

@figr-design/identity-code-lib

Version:

This repo contains code for components exported from Figrs design system generator (Identity).

15 lines 506 B
import * as React from "react"; import { InputProps } from "./Input"; import { ButtonProps } from "./Button"; interface InputGroupProps { inputId: string; label: string; helperText: string; submitButtonLabel: string; disabled?: boolean; inputProps: Omit<InputProps, "disabled" | "id">; buttonProps: Omit<ButtonProps, "disabled " | "asChild">; } declare const InputGroup: React.FC<InputGroupProps>; export { InputGroup, InputGroupProps }; //# sourceMappingURL=InputGroup.d.ts.map