import React from 'react'; import { FunctionTypeVoidToVoid } from '../../../../../CommonTypes/BaseViewModel'; import './ActiveSvg.scss'; type ActiveSvgContainerProps = { content: React.ReactNode; onTouch?: FunctionTypeVoidToVoid; onClick?: FunctionTypeVoidToVoid; disabled?: boolean; }; // eslint-disable-next-line react/function-component-definition const ActiveSvg = ({ content, onTouch, onClick, disabled = false, }: ActiveSvgContainerProps) => { return (