mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-27 23:40:05 +01:00
b8af362b23
* Show all symbols when adding a tag group All the SFSymbols are shown when adding a tag group, the list is taken from SFSafeSymbols. This includes symbols such as "swift" and "apple.logo", as seen in https://mastodon.social/@alexito4/110742407894134083. Signed-off-by: Paul Schuetz <pa.schuetz@web.de> * Add credit for SFSafeSymbols The list of used libraries is updated with SFSafeSymbols. Signed-off-by: Paul Schuetz <pa.schuetz@web.de> --------- Signed-off-by: Paul Schuetz <pa.schuetz@web.de>
14 lines
215 B
Swift
14 lines
215 B
Swift
//
|
|
// Symbols.swift
|
|
// IceCubesApp
|
|
//
|
|
// Created by Alejandro Martinez on 18/7/23.
|
|
//
|
|
|
|
import Foundation
|
|
import SFSafeSymbols
|
|
|
|
let allSymbols: [String] = SFSymbol.allSymbols.map { symbol in
|
|
symbol.rawValue
|
|
}
|