html/svg/src/jsMain/kotlin/org/jetbrains/compose/web/svg/svg.kt [185:203]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
attrs: AttrBuilderContext? = null,
content: ContentBuilder? = null
) {
TagElement(
elementBuilder = Rect,
applyAttrs = {
x(x)
y(y)
width(width)
height(height)
attrs?.invoke(this)
},
content = content
)
}
@Composable
@ExperimentalComposeWebSvgApi
fun ElementScope.Rect(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
html/svg/src/jsMain/kotlin/org/jetbrains/compose/web/svg/svg.kt [208:226]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
attrs: AttrBuilderContext? = null,
content: ContentBuilder? = null
) {
TagElement(
elementBuilder = Rect,
applyAttrs = {
x(x)
y(y)
width(width)
height(height)
attrs?.invoke(this)
},
content = content
)
}
@Composable
@ExperimentalComposeWebSvgApi
fun ElementScope.Rect(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -