21 lines
410 B
TypeScript
21 lines
410 B
TypeScript
export const Label = (name, sub = "") => {
|
|
return Widget.Box({
|
|
vertical: true,
|
|
hpack: "start",
|
|
children: [
|
|
Widget.Label({
|
|
hpack: "start",
|
|
vpack: "center",
|
|
class_name: "options-label",
|
|
label: name
|
|
}),
|
|
Widget.Label({
|
|
hpack: "start",
|
|
vpack: "center",
|
|
class_name: "options-sublabel",
|
|
label: sub
|
|
}),
|
|
]
|
|
})
|
|
}
|