@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
9 lines (8 loc) • 313 B
TypeScript
import { DetailedHTMLProps, FC, HTMLAttributes } from 'react';
export interface RadioButtonsProps extends DetailedHTMLProps<HTMLAttributes<HTMLInputElement>, HTMLInputElement> {
name?: string;
id?: string;
value?: string;
checked?: any;
}
export declare const RadioButtons: FC<RadioButtonsProps>;