@pollum-io/pegasys-components
Version:
Components for Pegays Protocol, the leading AMM on Syscoin NEVM.
17 lines (16 loc) • 406 B
TypeScript
export declare type RadioButtonProps = {
name?: string;
/** id **/
id?: string;
/** label **/
label?: string;
/** called when state change **/
onChange?: (value: any) => void;
/** disable radio button **/
disabled?: boolean;
/** value of radio button **/
value?: any;
/** size of radio button **/
size?: number;
checked?: boolean;
};