@activecollab/components
Version:
ActiveCollab Components
11 lines • 421 B
TypeScript
import React from "react";
export interface IRadioButtonProps {
/** Class names */
className?: string;
/** Set hover style */
hover?: boolean;
/** Id for RadioButton */
id?: string;
}
export declare const RadioButton: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & IRadioButtonProps & React.RefAttributes<HTMLInputElement>>;
//# sourceMappingURL=RadioButton.d.ts.map