@hhgtech/hhg-components
Version:
Hello Health Group common components
17 lines (16 loc) • 526 B
TypeScript
import React from 'react';
export type Props = {
size?: 'small' | 'large';
label: string;
name: string;
value: string;
checked?: boolean;
className?: string;
isDisabled?: boolean;
image?: string;
hasImage?: boolean;
inputType?: 'radio' | 'checkbox';
onChange: (v: string) => void;
};
declare const SurveyRadio: ({ size, label, name, checked, value, className, isDisabled, onChange, hasImage, inputType, image, }: Props) => React.JSX.Element;
export { SurveyRadio };