From de6f474aea1126de2a6164c17a8ebbb293128a42 Mon Sep 17 00:00:00 2001 From: Christoph Hagen Date: Mon, 17 Feb 2025 18:36:26 +0100 Subject: [PATCH] Add bell slash icon --- .../ContentElements/Icons/GeneralIcons.swift | 13 +++++++++++++ .../ContentElements/Icons/PageIcon.swift | 4 ++++ 2 files changed, 17 insertions(+) diff --git a/CHDataManagement/Page Elements/ContentElements/Icons/GeneralIcons.swift b/CHDataManagement/Page Elements/ContentElements/Icons/GeneralIcons.swift index 3ad0f7a..9d286b2 100644 --- a/CHDataManagement/Page Elements/ContentElements/Icons/GeneralIcons.swift +++ b/CHDataManagement/Page Elements/ContentElements/Icons/GeneralIcons.swift @@ -119,4 +119,17 @@ extension Icon { } } +extension Icon { + struct BellSlash: ContentIcon { + + static let id = "icon-bell-slash" + + static let attributes = "viewBox='0 0 16 16' fill='currentColor'" + + static let content = + """ + + """ + } +} diff --git a/CHDataManagement/Page Elements/ContentElements/Icons/PageIcon.swift b/CHDataManagement/Page Elements/ContentElements/Icons/PageIcon.swift index 4d19006..14201db 100644 --- a/CHDataManagement/Page Elements/ContentElements/Icons/PageIcon.swift +++ b/CHDataManagement/Page Elements/ContentElements/Icons/PageIcon.swift @@ -19,6 +19,8 @@ enum PageIcon: String, CaseIterable { case bell + case bellSlash = "bell-slash" + // MARK: Statistics case statisticsTime = "time" @@ -85,6 +87,7 @@ enum PageIcon: String, CaseIterable { case .video: Icon.Video.self case .leftRightArrow: Icon.LeftRightArrow.self case .bell: Icon.Bell.self + case .bellSlash: Icon.BellSlash.self } } @@ -98,6 +101,7 @@ enum PageIcon: String, CaseIterable { case .poster: "Poster" case .video: "Video" case .bell: "Bell" + case .bellSlash: "Bell With Slash" case .leftRightArrow: "LeftRightArrow" case .buttonExternalLink: "Button: External Link" case .buttonGitLink: "Button: Git Link"