Icons and Images
Icons
val g = Button("A button with an icon", "fas fa-asterisk")
val fb = Link("A link with an icon", "https://google.com", "fab fa-google")Images
@JsModule("/kotlin/modules/img/dog.jpg")
external val dogJpg: dynamic
val i = Button("A button with an image") {
image = dogJpg
}val l = Link("A link with an external image", image = "https://www.host.com/logo.png")Last updated