1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-02-15 07:25:54 +00:00

Add icons

This commit is contained in:
Paul Bottein
2026-01-05 10:49:12 +01:00
parent d1b19d5c3e
commit e338b6e578

View File

@@ -1,4 +1,10 @@
import { mdiCogOutline } from "@mdi/js"; import {
mdiBroadcast,
mdiCogOutline,
mdiLan,
mdiLinkVariant,
mdiNetwork,
} from "@mdi/js";
import type { CSSResultGroup, TemplateResult } from "lit"; import type { CSSResultGroup, TemplateResult } from "lit";
import { css, html, LitElement, nothing } from "lit"; import { css, html, LitElement, nothing } from "lit";
import { customElement, property, state } from "lit/decorators"; import { customElement, property, state } from "lit/decorators";
@@ -32,18 +38,22 @@ export const bluetoothTabs: PageNavigation[] = [
{ {
translationKey: "ui.panel.config.bluetooth.tabs.overview", translationKey: "ui.panel.config.bluetooth.tabs.overview",
path: `/config/bluetooth/dashboard`, path: `/config/bluetooth/dashboard`,
iconPath: mdiNetwork,
}, },
{ {
translationKey: "ui.panel.config.bluetooth.tabs.advertisements", translationKey: "ui.panel.config.bluetooth.tabs.advertisements",
path: `/config/bluetooth/advertisement-monitor`, path: `/config/bluetooth/advertisement-monitor`,
iconPath: mdiBroadcast,
}, },
{ {
translationKey: "ui.panel.config.bluetooth.tabs.visualization", translationKey: "ui.panel.config.bluetooth.tabs.visualization",
path: `/config/bluetooth/visualization`, path: `/config/bluetooth/visualization`,
iconPath: mdiLan,
}, },
{ {
translationKey: "ui.panel.config.bluetooth.tabs.connections", translationKey: "ui.panel.config.bluetooth.tabs.connections",
path: `/config/bluetooth/connection-monitor`, path: `/config/bluetooth/connection-monitor`,
iconPath: mdiLinkVariant,
}, },
]; ];