diff --git a/src/React/DOM/Props.purs b/src/React/DOM/Props.purs index 8bac25c..e6e1e0c 100644 --- a/src/React/DOM/Props.purs +++ b/src/React/DOM/Props.purs @@ -620,3 +620,10 @@ onWheel f = unsafeMkProps "onWheel" (handle f) suppressContentEditableWarning :: Boolean -> Props suppressContentEditableWarning = unsafeMkProps "suppressContentEditableWarning" + +-- SVG attributes +x :: Int -> Props +x = unsafeMkProps "x" + +y :: Int -> Props +y = unsafeMkProps "y"