I have the code in my svg: ```svg <svg ...> <path ... /> <defs> <path id="refresh" ... /> <clipPath id="refresh-clip"> <use href="#refresh" /> </clipPath> </defs> <g clip-path="url(#refresh-clip)"> ... </g> </svg> ``` And as a result ids and clip-path are updated: `refresh-1`, `refresh-clip-2`, `url(#refresh-clip-2)`, but href attribute of `<use />` is still `#refresh`