I have an svg sprite and I import icons using <svg> and <use>.
I'm wondering if it's generally better to put the title in the import point or in the svg sprite. If I think one title assigned to an svg icon in a sprite can semantically fit all use cases, is it ok to leave it in the sprite?
And what if I have one title in the sprite and add a second more accurate title at the point of import - is that still acceptable? If not, I would end up with some icons having a title only in the sprite and some only in the import point.
Svg import point:
<svg>
<title>Call us</title> // PUT TITLE RATHER HERE?
<use href="../resources/icons/sprite-all.svg#call"></use>
</svg>
Svg sprite:
<svg width="0" height="0">
<symbol id="call">
<title>Call us</title> // OR PUT TITLE RATHER HERE?
<path d="M39.977 (...other values)"></path>
</symbol>
</svg>