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

main.dom.svg.Document.kt Maven / Gradle / Ivy

package dom.svg

import dom.Document

private const val SVG_NAMESPACE: String = "http://www.w3.org/2000/svg"

fun  Document.createElement(
    tagName: SvgTagName,
): T =
    createElementNS(
        namespace = SVG_NAMESPACE,
        qualifiedName = tagName.unsafeCast(),
    ).unsafeCast()




© 2015 - 2025 Weber Informatics LLC | Privacy Policy