Skip to content

Commit e338b6e

Browse files
committed
Add icons
1 parent d1b19d5 commit e338b6e

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/panels/config/integrations/integration-panels/bluetooth/bluetooth-config-dashboard.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
import { mdiCogOutline } from "@mdi/js";
1+
import {
2+
mdiBroadcast,
3+
mdiCogOutline,
4+
mdiLan,
5+
mdiLinkVariant,
6+
mdiNetwork,
7+
} from "@mdi/js";
28
import type { CSSResultGroup, TemplateResult } from "lit";
39
import { css, html, LitElement, nothing } from "lit";
410
import { customElement, property, state } from "lit/decorators";
@@ -32,18 +38,22 @@ export const bluetoothTabs: PageNavigation[] = [
3238
{
3339
translationKey: "ui.panel.config.bluetooth.tabs.overview",
3440
path: `/config/bluetooth/dashboard`,
41+
iconPath: mdiNetwork,
3542
},
3643
{
3744
translationKey: "ui.panel.config.bluetooth.tabs.advertisements",
3845
path: `/config/bluetooth/advertisement-monitor`,
46+
iconPath: mdiBroadcast,
3947
},
4048
{
4149
translationKey: "ui.panel.config.bluetooth.tabs.visualization",
4250
path: `/config/bluetooth/visualization`,
51+
iconPath: mdiLan,
4352
},
4453
{
4554
translationKey: "ui.panel.config.bluetooth.tabs.connections",
4655
path: `/config/bluetooth/connection-monitor`,
56+
iconPath: mdiLinkVariant,
4757
},
4858
];
4959

0 commit comments

Comments
 (0)