main.misk.tailwind.components.CodeBlock.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of misk-tailwind Show documentation
Show all versions of misk-tailwind Show documentation
Open source application container in Kotlin
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
}
}
}