import React from 'react'; import './DialogInfoIcon.scss'; import { FunctionTypeVoidToVoid } from '../../../../../CommonTypes/BaseViewModel'; import UiKitTheme from '../../../../themes/UiKitTheme'; import ActiveSvg from '../../../../components/UI/svgs/ActiveSvg/ActiveSvg'; import InformationFill from '../../../../components/UI/svgs/Icons/Status/InformationFill'; type RenderRightActionsProps = { onClickInfo: FunctionTypeVoidToVoid; theme?: UiKitTheme; }; const DialogInfoIcon = ({ onClickInfo, // eslint-disable-next-line @typescript-eslint/no-unused-vars theme = undefined, }: RenderRightActionsProps) => { return ( //
{/* TODO: phone button // Phone Btn */} {/*
*/} {/* } */} {/* onClick={() => { */} {/* if (CallHandler) CallHandler(); */} {/* }} */} {/* onTouch={() => { */} {/* if (CallHandler) CallHandler(); */} {/* }} */} {/* /> */} {/*
*/}
} onClick={() => { if (onClickInfo) onClickInfo(); }} onTouch={() => { if (onClickInfo) onClickInfo(); }} />
); }; export default DialogInfoIcon;