lilactown / helix

A simple, easy to use library for React development in ClojureScript.
Eclipse Public License 2.0
627 stars 52 forks source link

SVG marker #91

Closed b-treebeard closed 2 years ago

b-treebeard commented 2 years ago

I see that helix.dom/marker is undeclared. (Ref: [https://developer.mozilla.org/en-US/docs/Web/SVG/Element/marker]())

Was this simply missed in the list of tags in helix/dom.cljc, or is there a deeper reason for the exclusion?

lilactown commented 2 years ago

Likely missed. I copied that list of elements from some other place. Feel free to open a PR to add it.

In the meantime, you can create an element using (helix.dom/$d "marker" ,,,)

b-treebeard commented 2 years ago

Will do. Thanks for the tip! :+1:

lilactown commented 2 years ago

Fixed in latest master! Thanks for the report