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

main.misk.tailwind.components.CodeBlock.kt Maven / Gradle / Ivy

There is a newer version: 2024.09.20.215132-bd5c0c5
Show newest version
package misk.tailwind.components

import kotlinx.html.TagConsumer
import kotlinx.html.code
import kotlinx.html.pre

fun TagConsumer<*>.CodeBlock(text: String) {
  pre("bg-gray-100 p-4 overflow-x-scroll rounded-lg") {
    code("text-wrap font-mono") {
      +text
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy