All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.olvind.mui.muiSystem.createThemeShapeMod.scala Maven / Gradle / Ivy

There is a newer version: 5.11.16
Show newest version
package com.olvind.mui.muiSystem

import org.scalablytyped.runtime.Shortcut
import org.scalablytyped.runtime.StObject
import scala.scalajs.js
import scala.scalajs.js.annotation.{JSGlobalScope, JSGlobal, JSImport, JSName, JSBracketAccess}

object createThemeShapeMod extends Shortcut {
  
  @JSImport("@mui/system/createTheme/shape", JSImport.Default)
  @js.native
  val default: Shape = js.native
  
  trait Shape extends StObject {
    
    var borderRadius: Double
  }
  object Shape {
    
    inline def apply(borderRadius: Double): Shape = {
      val __obj = js.Dynamic.literal(borderRadius = borderRadius.asInstanceOf[js.Any])
      __obj.asInstanceOf[Shape]
    }
    
    @scala.inline
    implicit open class MutableBuilder[Self <: Shape] (val x: Self) extends AnyVal {
      
      inline def setBorderRadius(value: Double): Self = StObject.set(x, "borderRadius", value.asInstanceOf[js.Any])
    }
  }
  
  /* Inlined std.Partial<@mui/system.@mui/system/createTheme/shape.Shape> */
  trait ShapeOptions extends StObject {
    
    var borderRadius: js.UndefOr[Double] = js.undefined
  }
  object ShapeOptions {
    
    inline def apply(): ShapeOptions = {
      val __obj = js.Dynamic.literal()
      __obj.asInstanceOf[ShapeOptions]
    }
    
    @scala.inline
    implicit open class MutableBuilder[Self <: ShapeOptions] (val x: Self) extends AnyVal {
      
      inline def setBorderRadius(value: Double): Self = StObject.set(x, "borderRadius", value.asInstanceOf[js.Any])
      
      inline def setBorderRadiusUndefined: Self = StObject.set(x, "borderRadius", js.undefined)
    }
  }
  
  type _To = Shape
  
  /* This means you don't have to write `default`, but can instead just say `createThemeShapeMod.foo` */
  override def _to: Shape = default
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy