I have two icons in svg.
Updated:
First of all, is it possible to make this icons using same markup? For example:
<g>
<circle ... />
<path ... />
</g>
?
Because i can operate only with classes. That mean that i want to change their styles in css
and that why i want same markup for both icons.
Also i want remove cx="9" cy="9"
from both icons, because this icon is part of the <rect />
and should be placed strictly on the verge of this <rect />
. And this cx
and cy
move it sideways. If i just remove them, then icon become broken a bit. I need to change attributes of path
and polyline
also. How i can do it? Thank you