diff --git a/src/Halogen/Svg/Elements.purs b/src/Halogen/Svg/Elements.purs index b848d3f..11c219d 100644 --- a/src/Halogen/Svg/Elements.purs +++ b/src/Halogen/Svg/Elements.purs @@ -27,6 +27,9 @@ g = element $ ElemName "g" circle :: forall p i. Leaf I.SVGcircle p i circle props = element (ElemName "circle") props [] +circleNode :: forall p i. Node I.SVGcircle p i +circleNode = element (ElemName "circle") + ellipse :: forall p i. Leaf I.SVGellipse p i ellipse props = element (ElemName "ellipse") props []