Files
custum-hyprpanel/widget/settings/shared/Label.ts
2024-07-21 16:20:34 -07:00

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
}),
]
})
}