Add notification icon

This commit is contained in:
Christoph Hagen
2025-02-17 13:39:57 +01:00
parent 0bd48be2c2
commit 8f6ffe2c6d
2 changed files with 44 additions and 23 deletions

View File

@ -103,3 +103,20 @@ extension Icon {
"""
}
}
extension Icon {
struct Bell: ContentIcon {
static let id = "icon-bell"
static let attributes = "width='16' height='16' fill='currentColor'"
static let content =
"""
<path d="M8 16a2 2 0 0 0 2-2H6a2 2 0 0 0 2 2M8 2h-.8A4 4 0 0 0 4 6a21.7 21.7 0 0 1-1.1 6H13a21.7 21.7 0 0 1-1-6 4 4 0 0 0-3.2-4zm6.2 10c.2.4.5.8.8 1H1c.3-.2.6-.6.8-1C2.7 10.2 3 6.9 3 6a5 5 0 0 1 4-4.9 1 1 0 1 1 2 0A5 5 0 0 1 13 6c0 .9.3 4.2 1.2 6"/>
"""
}
}