We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46f87a2 commit 18f97e8Copy full SHA for 18f97e8
src/Fable.React/Fable.Helpers.React.fs
@@ -311,7 +311,6 @@ module Props =
311
| Y of obj
312
interface IProp
313
314
- /// If you are searching for a way to provide a value not supported by this DSL then use something like: !!("align-content", "center")
315
type CSSProp =
316
| AlignContent of obj
317
| AlignItems of obj
@@ -719,6 +718,8 @@ module Props =
719
718
| ZIndex of obj
720
| Zoom of obj
721
interface ICSSProp
+ /// If you are searching for a way to provide a value not supported by this DSL then use something like: CSSProp.Custom "align-content" "center"
722
+ static member inline Custom (key: string) (value: obj) : ICSSProp = !!(key, value)
723
724
open Props
725
open Fable.Import.React
0 commit comments