UNPKG

@hhgtech/hhg-components

Version:
18 lines (17 loc) 546 B
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 };