UNPKG

@postenbring/hedwig-react

Version:

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

9 lines 478 B
import { type InputHTMLAttributes, type ReactNode } from "react"; export interface RadioButtonProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "size"> { children: ReactNode; variant?: "plain" | "bounding-box"; title?: string; size?: "small" | ""; } export declare const RadioButton: import("react").ForwardRefExoticComponent<RadioButtonProps & import("react").RefAttributes<HTMLInputElement>>; //# sourceMappingURL=radio-button.d.ts.map