html - Exported SVG has no fill or stroke in the code -


i'm trying manipulate/animate stroked svg icon i've made; however, when export svg illustrator, see this:

<path d="m8,37.3c1-1.5 ...> 

when expect like:

<path fill="none" stroke="#000000" d="m8,37.3c1-1.5 ...> 

so when try animate stroke using dasharray method, doesn't work. when try add stroke code 1 above, creates ugly outline on shape.

the options this:

enter image description here

i'm wondering how either export svg better, or edit code create stroke (not fill). if more information needed me, let me know.


Comments

Popular posts from this blog

php - How can an email be returned from Stripe Checkout? -

SQL php on different pages to Insert (mysqli) -

linked list - Get the index of the Node in a LinkedList which contains the given value in java -