UNPKG

@postenbring/hedwig-react

Version:

React components for [Hedwig Design System](https://github.com/bring/hedwig-design-system).

12 lines 589 B
import type { InputHTMLAttributes } from "react"; import type { InputGroupProps } from "../input-group"; /** * Omitting: * - `size` from InputHTMLAttributes * - `children` from InputGroupProps * The original `size` prop that input elements have is not in use in HDS. * It is overridden by styling. */ export type InputProps = Omit<InputGroupProps & Omit<InputHTMLAttributes<HTMLInputElement>, "size">, "children">; export declare const Input: import("react").ForwardRefExoticComponent<InputProps & import("react").RefAttributes<HTMLInputElement>>; //# sourceMappingURL=input.d.ts.map