ShapeNode
data class ShapeNode(val shape: Shape, val width: Dp, val height: Dp, val fill: PdfPaint? = null, val strokeColor: PdfColor? = null, val strokeWidth: Dp = Dp.Zero) : PdfNode
Geometric primitive — a circle or ellipse drawn as a filled and / or stroked shape. Use the com.conamobile.pdfkmp.dsl.ContainerScope.circle / com.conamobile.pdfkmp.dsl.ContainerScope.ellipse DSL functions rather than constructing this directly.