LineHeight
Overrides the default line height inherited by descendent Text components.
Introduced in Kontakt 8.11.
modifier LineHeight
import { LineHeight, Text, VStack } from ui
export var main = VStack {
Text("Default\nline height")
VStack {
Text("Increased\nline height")
} with {
LineHeight(1.5)
}
}