Ellipse

@Composable
fun ElementScope<SVGElement>.Ellipse(attrs: SVGEllipseAttrsScope.() -> Unit)(source)

Type-safe API for creating an SVGEllipseElement.

For example, to create an Ellipse with a radius x-axis of 100 and y-axis of 50 centered at 12x12:

Svg {
Ellipse {
cx(100)
cy(50)
rx(100)
ry(50)
}
}

See also