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 ( //