Added media, menu, network and power modules to bar.

This commit is contained in:
Jas Singh
2024-06-09 03:44:16 -07:00
parent 6ff50006f2
commit 3579e563b8
17 changed files with 156 additions and 27 deletions

10
modules/bar/menu/index.js Normal file
View File

@@ -0,0 +1,10 @@
export const Menu = () => {
return Widget.Box({
child: Widget.Button({
child: Widget.Label({
class_name: "bar-menu_label",
label: "󰣇",
}),
}),
});
};