From 45b0180c5e5b33bc2e233a80e3d69069c8522dd5 Mon Sep 17 00:00:00 2001 From: Serhii Khoma Date: Fri, 31 Jul 2020 19:04:23 +0300 Subject: [PATCH] feat(#13): circleNode -> add --- src/Halogen/Svg/Elements.purs | 3 +++ 1 file changed, 3 insertions(+) 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 []