Skip to content

Commit 27ba423

Browse files
Add overflow props to System
1 parent eeacfae commit 27ba423

File tree

1 file changed

+8
-0
lines changed
  • packages/rescript-mui-material/src/types

1 file changed

+8
-0
lines changed

packages/rescript-mui-material/src/types/System.res

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,13 @@ module Value = {
7878
| @as("self-end") SelfEnd
7979
| @as("baseline") Baseline
8080

81+
/* Overflow */
82+
| @as("auto") Auto
83+
| @as("clip") Clip
84+
| @as("hidden") Hidden
85+
| @as("scroll") Scroll
86+
| @as("visible") Visible
87+
8188
/* Global values */
8289
| @as("inherit") Inherit
8390
| @as("initial") Initial
@@ -191,4 +198,5 @@ type props = {
191198
letterSpacing?: Value.t,
192199
lineHeight?: Value.t,
193200
textAlign?: Value.t,
201+
overflow?: Value.t,
194202
}

0 commit comments

Comments
 (0)