@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
16 lines (15 loc) • 604 B
TypeScript
import React from "react";
declare type SurveyElementRadioGroupProps = {
disabled?: boolean;
mode?: any;
name: string;
onAddOption?: (e: React.MouseEvent<HTMLDivElement>) => void;
onChange: Function;
onOptionLabelUpdate?: Function;
onRemoveOption?: Function;
onReorderOption?: Function;
options: any[];
value: any;
};
declare const SurveyElementRadioGroup: ({ value, name, onChange, options, onOptionLabelUpdate, onRemoveOption, onReorderOption, onAddOption, mode, disabled, }: SurveyElementRadioGroupProps) => JSX.Element;
export default SurveyElementRadioGroup;