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 f3a2973 commit 4556eaeCopy full SHA for 4556eae
core/src/main/scala/chandu0101/scalajs/react/components/materialui/MuiZDepth.scala
@@ -1,11 +1,11 @@
1
package chandu0101.scalajs.react.components.materialui
2
3
-class MuiZDepth(val value: String) extends AnyVal
+class MuiZDepth(val value: Int) extends AnyVal
4
object MuiZDepth{
5
- val _0 = new MuiZDepth("0")
6
- val _1 = new MuiZDepth("1")
7
- val _2 = new MuiZDepth("2")
8
- val _3 = new MuiZDepth("3")
9
- val _4 = new MuiZDepth("4")
10
- val _5 = new MuiZDepth("5")
+ val _0 = new MuiZDepth(0)
+ val _1 = new MuiZDepth(1)
+ val _2 = new MuiZDepth(2)
+ val _3 = new MuiZDepth(3)
+ val _4 = new MuiZDepth(4)
+ val _5 = new MuiZDepth(5)
11
}
0 commit comments