Use SVG sprite as mouse cursor – CSS
I have an SVG sprite: <svg xmlns="http://www.w3.org/2000/svg" style="display:none;"> <symbol id="ailMouseIco" viewBox="0 0 51.2 76.5"> <path fill="#FFF" stroke="#000" stroke-width="3" d="M47.5 48.6l-46-45v62l14-13 10 22 10-4-10-22h22z"/> </symbol> </svg> Elsewhere, I use that sprite as follows: <svg width="30" height="30"> <use xlink:href="#ailMouseIco"></use> </svg> I need…