@@ -86,6 +86,7 @@ module Miso.Style
86
86
, cursor
87
87
, direction
88
88
, display
89
+ , fill
89
90
, filter
90
91
, flexBasis
91
92
, flexDirection
@@ -170,6 +171,8 @@ module Miso.Style
170
171
, relativeTopOf
171
172
, right
172
173
, rowGap
174
+ , stroke
175
+ , strokeWidth
173
176
, textAlign
174
177
, textDecoration
175
178
, textIndent
@@ -721,6 +724,11 @@ direction x = "direction" =: x
721
724
display :: MisoString -> Style
722
725
display x = " display" =: x
723
726
-----------------------------------------------------------------------------
727
+ -- | https://developer.mozilla.org/en-US/docs/Web/CSS/fill
728
+ --
729
+ fill :: MisoString -> Style
730
+ fill x = " fill" =: x
731
+ -----------------------------------------------------------------------------
724
732
-- | https://developer.mozilla.org/en-US/docs/Web/CSS/filter
725
733
--
726
734
filter :: MisoString -> Style
@@ -1146,6 +1154,16 @@ right x = "right" =: x
1146
1154
rowGap :: MisoString -> Style
1147
1155
rowGap x = " row-gap" =: x
1148
1156
-----------------------------------------------------------------------------
1157
+ -- | https://developer.mozilla.org/en-US/docs/Web/CSS/stroke
1158
+ --
1159
+ stroke :: MisoString -> Style
1160
+ stroke x = " stroke" =: x
1161
+ -----------------------------------------------------------------------------
1162
+ -- | https://developer.mozilla.org/en-US/docs/Web/CSS/stroke-width
1163
+ --
1164
+ strokeWidth :: MisoString -> Style
1165
+ strokeWidth x = " stroke-width" =: x
1166
+ -----------------------------------------------------------------------------
1149
1167
-- | https://developer.mozilla.org/en-US/docs/Web/CSS/text-align
1150
1168
--
1151
1169
textAlign :: MisoString -> Style
0 commit comments