diff --git a/src/React/DOM/Props.purs b/src/React/DOM/Props.purs index e6e1e0c..82408f1 100644 --- a/src/React/DOM/Props.purs +++ b/src/React/DOM/Props.purs @@ -627,3 +627,36 @@ x = unsafeMkProps "x" y :: Int -> Props y = unsafeMkProps "y" + +cx :: Int -> Props +cx = unsafeMkProps "cx" + +cy :: Int -> Props +cy = unsafeMkProps "cy" + +r :: Int -> Props +r = unsafeMkProps "r" + +fill :: String -> Props +fill = unsafeMkProps "fill" + +opacity :: Int -> Props +opacity = unsafeMkProps "opacity" + +fillOpacity :: Int -> Props +fillOpacity = unsafeMkProps "fillOpacity" + +stroke :: String -> Props +stroke = unsafeMkProps "stroke" + +strokeWidth :: Int -> Props +strokeWidth = unsafeMkProps "strokeWidth" + +points :: String -> Props +points = unsafeMkProps "points" + +d :: String -> Props +d = unsafeMkProps "d" + +viewBox :: String -> Props +viewBox = unsafeMkProps "viewBox" \ No newline at end of file