@hhgtech/hhg-components
Version:
Hello Health Group common components
18 lines (17 loc) • 546 B
TypeScript
import React from 'react';
export type Props = {
options: Array<{
value: string;
label?: string;
image?: string;
imageActive?: string;
}>;
value?: string;
className?: string;
isDisabled?: boolean;
size?: 'small' | 'large';
direction?: 'vertical' | 'horizontal';
onChange?: (v: string) => void;
};
declare const RadioImageGroupForTool: ({ value, options, className, direction, onChange, isDisabled, }: Props) => React.JSX.Element;
export { RadioImageGroupForTool };