Button with two lines

Hallo team Radzen
I have a question about the button with two lines.
I have a Button in DataList and I need a button with two texts but the text has to be on two lines.
image

Is it possible in property text ? :
image

This can be achieved by appending this style to styles.css, adding a new line in the text and setting the height of the button.

.ui-button-text {
  white-space: pre;
}


1 Like