Skip to content

Commit

Permalink
[sc-39746] Adds SVG defs element
Browse files Browse the repository at this point in the history
  • Loading branch information
robmagary committed Oct 30, 2024
1 parent 2ce87cd commit 00cae74
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/DOM/Erumu/HTML/Elements.purs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ module DOM.Erumu.HTML.Elements
, linearGradient
, stop
, text
, defs

, ElementFn
) where
Expand Down Expand Up @@ -264,4 +265,7 @@ stop :: forall msg. ElementFn msg
stop = svgNamespacedElement "stop"

text :: forall msg. ElementFn msg
text = svgNamespacedElement "text"
text = svgNamespacedElement "text"

defs :: forall msg. ElementFn msg
defs = svgNamespacedElement "defs"

0 comments on commit 00cae74

Please sign in to comment.