@postenbring/hedwig-react
Version:
React components for [Hedwig Design System](https://github.com/bring/hedwig-design-system).
9 lines • 549 B
TypeScript
import { type ReactNode, type SelectHTMLAttributes } from "react";
import type { InputGroupProps } from "../input-group";
export type SelectProps = Omit<InputGroupProps & SelectHTMLAttributes<HTMLSelectElement>, "readOnly" | "children"> & {
children: ReactNode;
};
export declare const Select: import("react").ForwardRefExoticComponent<Omit<InputGroupProps & SelectHTMLAttributes<HTMLSelectElement>, "children" | "readOnly"> & {
children: ReactNode;
} & import("react").RefAttributes<HTMLSelectElement>>;
//# sourceMappingURL=select.d.ts.map