diff --git a/SampleSPM/SampleSPM/ContentView.swift b/SampleSPM/SampleSPM/ContentView.swift index 8cc58da..979f6a4 100644 --- a/SampleSPM/SampleSPM/ContentView.swift +++ b/SampleSPM/SampleSPM/ContentView.swift @@ -9,24 +9,322 @@ import SwiftUI import MaterialDesignSymbol struct ContentView: View { + @State private var selectedTab = 0 var body: some View { - VStack { - Text("MaterialDesignSymbol Sample") + TabView(selection: $selectedTab) { + MaterialSymbolListView() + .tabItem { + Label("New Icons", systemImage: "star.fill") + } + .tag(0) - Image(uiImage: MaterialDesignSymbol(icon: .album48px, size: 30).image()) + LegacyIconListView() + .tabItem { + Label("Legacy Icons", systemImage: "clock") + } + .tag(1) - Image(uiImage: createColoredIcon()) + IconDemoView() + .tabItem { + Label("Demo", systemImage: "paintbrush") + } + .tag(2) } } +} + +// MARK: - Material Symbol List (New 4,102 icons) +struct MaterialSymbolListView: View { + @State private var searchText = "" + + private let columns = [ + GridItem(.adaptive(minimum: 60)) + ] + + private var filteredIcons: [MaterialSymbolEnum] { + if searchText.isEmpty { + return Array(MaterialSymbolEnum.allCases.prefix(500)) // Limit for performance + } else { + return MaterialSymbolEnum.allCases.filter { icon in + String(describing: icon).lowercased().contains(searchText.lowercased()) + }.prefix(100).map { $0 } + } + } + + var body: some View { + NavigationView { + VStack { + Text("Material Symbols Outlined - 3,802 unique icons") + .font(.caption) + .foregroundColor(.secondary) + + SearchBar(text: $searchText, placeholder: "Search icons...") + + ScrollView { + LazyVGrid(columns: columns, spacing: 16) { + ForEach(filteredIcons, id: \.self) { icon in + IconCell( + iconText: icon.rawValue, + iconName: String(describing: icon) + ) + } + } + .padding() + } + } + .navigationTitle("Material Symbols") + } + } +} + +// MARK: - Legacy Icon List (1,661 icons) +struct LegacyIconListView: View { + @State private var searchText = "" + + private let columns = [ + GridItem(.adaptive(minimum: 60)) + ] + + // Sample of legacy icons for display + private var sampleIcons: [(name: String, icon: MaterialDesignIconEnum)] { + [ + ("home", .home24px), + ("search", .search24px), + ("settings", .settings24px), + ("menu", .menu24px), + ("close", .close24px), + ("add", .add24px), + ("delete", .delete24px), + ("edit", .edit24px), + ("share", .share24px), + ("favorite", .favorite24px), + ("star", .star24px), + ("person", .person24px), + ("email", .email24px), + ("phone", .phone24px), + ("camera", .camera24px), + ("photo", .photo24px), + ("album", .album24px), + ("video", .videocam24px), + ("play", .playArrow24px), + ("pause", .pause24px), + ("stop", .stop24px), + ("forward", .forward24px), + ("replay", .replay24px), + ("volume", .volumeUp24px), + ("mute", .volumeOff24px), + ("bluetooth", .bluetooth24px), + ("wifi", .networkWifi18px), + ("gps", .gpsFixed24px), + ("lock", .lock24px), + ("unlock", .lockOpen24px), + ("visibility", .visibility24px), + ("download", .fileDownload24px), + ("upload", .fileUpload24px), + ("cloud", .cloud24px), + ("folder", .folder24px), + ("file", .insertDriveFile24px), + ("attach", .attachFile24px), + ("link", .link24px), + ("send", .send24px), + ("chat", .chat24px), + ("forum", .forum24px), + ("notification", .notifications24px), + ("alarm", .alarm24px), + ("schedule", .schedule24px), + ("event", .event24px), + ("today", .today24px), + ("location", .locationOn24px), + ("map", .map24px), + ("navigate", .navigation24px), + ("directions", .directions24px), + ("car", .directionsCar24px), + ("bus", .directionsBus24px), + ("train", .directionsTrain24px), + ("flight", .flight24px), + ("hotel", .hotel24px), + ("restaurant", .localRestaurant24px), + ("shopping", .shoppingCart24px), + ("payment", .payment24px), + ] + } + + var body: some View { + NavigationView { + VStack { + Text("Legacy MaterialDesignIconEnum - 1,661 icons") + .font(.caption) + .foregroundColor(.secondary) + + Text("(Showing sample icons)") + .font(.caption2) + .foregroundColor(.secondary) + + ScrollView { + LazyVGrid(columns: columns, spacing: 16) { + ForEach(sampleIcons, id: \.name) { item in + IconCell( + iconText: item.icon.rawValue, + iconName: item.name + ) + } + } + .padding() + } + } + .navigationTitle("Legacy Icons") + } + } +} + +// MARK: - Demo View +struct IconDemoView: View { + @State private var iconSize: CGFloat = 48 + @State private var selectedColor: Color = .blue + + var body: some View { + NavigationView { + VStack(spacing: 24) { + Text("Icon Customization Demo") + .font(.headline) + + // Icon display + HStack(spacing: 20) { + Image(uiImage: createIcon(icon: .home, color: UIColor(selectedColor), size: iconSize)) + Image(uiImage: createIcon(icon: .search, color: UIColor(selectedColor), size: iconSize)) + Image(uiImage: createIcon(icon: .settings, color: UIColor(selectedColor), size: iconSize)) + Image(uiImage: createIcon(icon: .favorite, color: UIColor(selectedColor), size: iconSize)) + } + + Divider() - private func createColoredIcon() -> UIImage { - let symbol = MaterialDesignSymbol(icon: .album24px, size: 30) - symbol.addAttribute(foregroundColor: .green) + // Size slider + VStack { + Text("Size: \(Int(iconSize))px") + Slider(value: $iconSize, in: 16...96, step: 4) + .padding(.horizontal) + } + + // Color picker + VStack { + Text("Color") + HStack(spacing: 16) { + ForEach([Color.blue, .red, .green, .orange, .purple, .black], id: \.self) { color in + Circle() + .fill(color) + .frame(width: 40, height: 40) + .overlay( + Circle() + .stroke(selectedColor == color ? Color.primary : Color.clear, lineWidth: 3) + ) + .onTapGesture { + selectedColor = color + } + } + } + } + + Divider() + + // Code example + VStack(alignment: .leading, spacing: 8) { + Text("Usage Example:") + .font(.headline) + + Text(""" + // New API (Recommended) + MaterialSymbolEnum.home + + // Legacy API (Still works) + MaterialDesignIconEnum.home24px + """) + .font(.system(.caption, design: .monospaced)) + .padding() + .background(Color(.systemGray6)) + .cornerRadius(8) + } + .padding() + + Spacer() + } + .padding() + .navigationTitle("Demo") + } + } + + private func createIcon(icon: MaterialSymbolEnum, color: UIColor, size: CGFloat) -> UIImage { + let symbol = MaterialDesignSymbol(text: icon.rawValue, size: size) + symbol.addAttribute(foregroundColor: color) + return symbol.image() + } +} + +// MARK: - Supporting Views +struct IconCell: View { + let iconText: String + let iconName: String + @State private var isCopied = false + + var body: some View { + VStack(spacing: 4) { + Image(uiImage: createIconImage()) + .resizable() + .frame(width: 32, height: 32) + + Text(iconName.prefix(8) + (iconName.count > 8 ? "..." : "")) + .font(.system(size: 8)) + .foregroundColor(.secondary) + .lineLimit(1) + } + .frame(width: 60, height: 60) + .background(isCopied ? Color.green.opacity(0.2) : Color(.systemGray6)) + .cornerRadius(8) + .onTapGesture { + UIPasteboard.general.string = iconName + withAnimation { + isCopied = true + } + DispatchQueue.main.asyncAfter(deadline: .now() + 1) { + withAnimation { + isCopied = false + } + } + } + } + + private func createIconImage() -> UIImage { + let symbol = MaterialDesignSymbol(text: iconText, size: 32) return symbol.image() } } +struct SearchBar: View { + @Binding var text: String + let placeholder: String + + var body: some View { + HStack { + Image(systemName: "magnifyingglass") + .foregroundColor(.secondary) + + TextField(placeholder, text: $text) + .textFieldStyle(PlainTextFieldStyle()) + + if !text.isEmpty { + Button(action: { text = "" }) { + Image(systemName: "xmark.circle.fill") + .foregroundColor(.secondary) + } + } + } + .padding(8) + .background(Color(.systemGray6)) + .cornerRadius(10) + .padding(.horizontal) + } +} + struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() diff --git a/Sources/MaterialDesignSymbol/MaterialDesignFont.swift b/Sources/MaterialDesignSymbol/MaterialDesignFont.swift index 52c15c0..659e6c5 100644 --- a/Sources/MaterialDesignSymbol/MaterialDesignFont.swift +++ b/Sources/MaterialDesignSymbol/MaterialDesignFont.swift @@ -16,7 +16,8 @@ public struct MaterialDesignFont { static let shared = MaterialDesignFont() /// 呼び出すアイコンファイル名 - private let name = "material-design-icons" + private let name = "Material Symbols Outlined" + private let fileName = "MaterialSymbolsOutlined" private init() { loadFont() @@ -25,7 +26,7 @@ public struct MaterialDesignFont { /// このメソッドはSPMの場合だけ使います。 public func loadFont() { /// 呼び出すアイコンファイル名 - registerFont(name: name, fileExtension: "ttf") + registerFont(name: fileName, fileExtension: "ttf") } private func registerFont(name: String, fileExtension: String) { @@ -47,11 +48,11 @@ public struct MaterialDesignFont { - returns: UIFont */ public func fontOfSize(_ fontSize: CGFloat) -> UIFont { - + // アイコンを呼び出す if UIFont.fontNames(forFamilyName: name).count == 0 { do { - try FontLoader.loadFont(name) + try FontLoader.loadFont(fileName) } catch FontError.invalidFontFile { print("invalidFontFile") } catch FontError.fontPathNotFound { @@ -61,7 +62,7 @@ public struct MaterialDesignFont { } catch FontError.registerFailed { print("registerFailed") } catch { - + } } diff --git a/Sources/MaterialDesignSymbol/MaterialDesignIcon1.swift b/Sources/MaterialDesignSymbol/MaterialDesignIcon1.swift index cf7a48a..1e5df27 100644 --- a/Sources/MaterialDesignSymbol/MaterialDesignIcon1.swift +++ b/Sources/MaterialDesignSymbol/MaterialDesignIcon1.swift @@ -12,404 +12,404 @@ import UIKit * マテリアルデザインアイコンのコードを返すクラス */ extension MaterialDesignIcon { - public static let threeDRotation24px = "\u{e600}" - public static let threeDRotation48px = "\u{e601}" - public static let accessibility24px = "\u{e602}" - public static let accessibility48px = "\u{e603}" - public static let accountBalance24px = "\u{e604}" - public static let accountBalance48px = "\u{e605}" - public static let accountBalanceWallet24px = "\u{e606}" - public static let accountBalanceWallet48px = "\u{e607}" - public static let accountBox18px = "\u{e608}" - public static let accountBox24px = "\u{e609}" - public static let accountBox48px = "\u{e60a}" - public static let accountChild24px = "\u{e60b}" - public static let accountChild48px = "\u{e60c}" - public static let accountCircle18px = "\u{e60d}" - public static let accountCircle24px = "\u{e60e}" - public static let accountCircle48px = "\u{e60f}" - public static let addShoppingCart24px = "\u{e610}" - public static let addShoppingCart48px = "\u{e611}" - public static let alarm24px = "\u{e612}" - public static let alarm48px = "\u{e613}" - public static let alarmAdd24px = "\u{e614}" - public static let alarmAdd48px = "\u{e615}" - public static let alarmOff24px = "\u{e616}" - public static let alarmOff48px = "\u{e617}" - public static let alarmOn24px = "\u{e618}" - public static let alarmOn48px = "\u{e619}" - public static let android24px = "\u{e61a}" - public static let android48px = "\u{e61b}" - public static let announcement24px = "\u{e61c}" - public static let announcement48px = "\u{e61d}" - public static let aspectRatio24px = "\u{e61e}" - public static let aspectRatio48px = "\u{e61f}" - public static let assessment24px = "\u{e620}" - public static let assessment48px = "\u{e621}" - public static let assignment24px = "\u{e622}" - public static let assignment48px = "\u{e623}" - public static let assignmentInd24px = "\u{e624}" - public static let assignmentInd48px = "\u{e625}" - public static let assignmentLate24px = "\u{e626}" - public static let assignmentLate48px = "\u{e627}" - public static let assignmentReturn24px = "\u{e628}" - public static let assignmentReturn48px = "\u{e629}" - public static let assignmentReturned24px = "\u{e62a}" - public static let assignmentReturned48px = "\u{e62b}" - public static let assignmentTurnedIn24px = "\u{e62c}" - public static let assignmentTurnedIn48px = "\u{e62d}" - public static let autorenew24px = "\u{e62e}" - public static let autorenew48px = "\u{e62f}" - public static let backup24px = "\u{e630}" - public static let backup48px = "\u{e631}" - public static let book24px = "\u{e632}" - public static let book48px = "\u{e633}" - public static let bookmark24px = "\u{e634}" - public static let bookmark48px = "\u{e635}" - public static let bookmarkOutline24px = "\u{e636}" - public static let bookmarkOutline48px = "\u{e637}" - public static let bugReport24px = "\u{e638}" - public static let bugReport48px = "\u{e639}" - public static let cached24px = "\u{e63a}" - public static let cached48px = "\u{e63b}" - public static let class24px = "\u{e63c}" - public static let class48px = "\u{e63d}" - public static let creditCard24px = "\u{e63e}" - public static let creditCard48px = "\u{e63f}" - public static let dashboard24px = "\u{e640}" - public static let dashboard48px = "\u{e641}" - public static let delete24px = "\u{e642}" - public static let delete48px = "\u{e643}" - public static let description24px = "\u{e644}" - public static let description48px = "\u{e645}" - public static let dns24px = "\u{e646}" - public static let dns48px = "\u{e647}" - public static let done24px = "\u{e648}" - public static let done48px = "\u{e649}" - public static let doneAll24px = "\u{e64a}" - public static let doneAll48px = "\u{e64b}" - public static let event18px = "\u{e64c}" - public static let event24px = "\u{e64d}" - public static let event48px = "\u{e64e}" - public static let exitToApp24px = "\u{e64f}" - public static let exitToApp48px = "\u{e650}" - public static let explore24px = "\u{e651}" - public static let explore48px = "\u{e652}" - public static let extension24px = "\u{e653}" - public static let extension48px = "\u{e654}" - public static let faceUnlock24px = "\u{e655}" - public static let faceUnlock48px = "\u{e656}" - public static let favorite24px = "\u{e657}" - public static let favorite48px = "\u{e658}" - public static let favoriteOutline24px = "\u{e659}" - public static let favoriteOutline48px = "\u{e65a}" - public static let findInPage24px = "\u{e65b}" - public static let findInPage48px = "\u{e65c}" - public static let findReplace24px = "\u{e65d}" - public static let findReplace48px = "\u{e65e}" - public static let flipToBack24px = "\u{e65f}" - public static let flipToBack48px = "\u{e660}" - public static let flipToFront24px = "\u{e661}" - public static let flipToFront48px = "\u{e662}" - public static let getApp24px = "\u{e663}" - public static let getApp48px = "\u{e664}" - public static let grade24px = "\u{e665}" - public static let grade48px = "\u{e666}" - public static let groupWork24px = "\u{e667}" - public static let groupWork48px = "\u{e668}" - public static let help24px = "\u{e669}" - public static let help48px = "\u{e66a}" - public static let highlightRemove24px = "\u{e66b}" - public static let highlightRemove48px = "\u{e66c}" - public static let history24px = "\u{e66d}" - public static let history48px = "\u{e66e}" - public static let home24px = "\u{e66f}" - public static let home48px = "\u{e670}" - public static let https24px = "\u{e671}" - public static let https48px = "\u{e672}" - public static let info24px = "\u{e673}" - public static let info48px = "\u{e674}" - public static let infoOutline24px = "\u{e675}" - public static let infoOutline48px = "\u{e676}" - public static let input24px = "\u{e677}" - public static let input48px = "\u{e678}" - public static let invertColors24px = "\u{e679}" - public static let invertColors48px = "\u{e67a}" - public static let label24px = "\u{e67b}" - public static let label48px = "\u{e67c}" - public static let labelOutline24px = "\u{e67d}" - public static let labelOutline48px = "\u{e67e}" - public static let language24px = "\u{e67f}" - public static let language48px = "\u{e680}" - public static let launch24px = "\u{e681}" - public static let launch48px = "\u{e682}" - public static let list24px = "\u{e683}" - public static let list48px = "\u{e684}" - public static let lock24px = "\u{e685}" - public static let lock48px = "\u{e686}" - public static let lockOpen24px = "\u{e687}" - public static let lockOpen48px = "\u{e688}" - public static let lockOutline24px = "\u{e689}" - public static let lockOutline48px = "\u{e68a}" - public static let loyalty24px = "\u{e68b}" - public static let loyalty48px = "\u{e68c}" - public static let markunreadMailbox24px = "\u{e68d}" - public static let markunreadMailbox48px = "\u{e68e}" - public static let noteAdd24px = "\u{e68f}" - public static let noteAdd48px = "\u{e690}" - public static let openInBrowser24px = "\u{e691}" - public static let openInBrowser48px = "\u{e692}" - public static let openInNew24px = "\u{e693}" - public static let openInNew48px = "\u{e694}" - public static let openWith24px = "\u{e695}" - public static let openWith48px = "\u{e696}" - public static let pageview24px = "\u{e697}" - public static let pageview48px = "\u{e698}" - public static let payment24px = "\u{e699}" - public static let payment48px = "\u{e69a}" - public static let permCameraMic24px = "\u{e69b}" - public static let permCameraMic48px = "\u{e69c}" - public static let permContactCal24px = "\u{e69d}" - public static let permContactCal48px = "\u{e69e}" - public static let permDataSetting24px = "\u{e69f}" - public static let permDataSetting48px = "\u{e6a0}" - public static let permDeviceInfo24px = "\u{e6a1}" - public static let permDeviceInfo48px = "\u{e6a2}" - public static let permIdentity24px = "\u{e6a3}" - public static let permIdentity48px = "\u{e6a4}" - public static let permMedia24px = "\u{e6a5}" - public static let permMedia48px = "\u{e6a6}" - public static let permPhoneMsg24px = "\u{e6a7}" - public static let permPhoneMsg48px = "\u{e6a8}" - public static let permScanWifi24px = "\u{e6a9}" - public static let permScanWifi48px = "\u{e6aa}" - public static let pictureInPicture24px = "\u{e6ab}" - public static let pictureInPicture48px = "\u{e6ac}" - public static let polymer24px = "\u{e6ad}" - public static let polymer48px = "\u{e6ae}" - public static let print24px = "\u{e6af}" - public static let print48px = "\u{e6b0}" - public static let queryBuilder24px = "\u{e6b1}" - public static let queryBuilder48px = "\u{e6b2}" - public static let questionAnswer24px = "\u{e6b3}" - public static let questionAnswer48px = "\u{e6b4}" - public static let receipt24px = "\u{e6b5}" - public static let receipt48px = "\u{e6b6}" - public static let redeem24px = "\u{e6b7}" - public static let redeem48px = "\u{e6b8}" - public static let reorder24px = "\u{e6b9}" - public static let reportProblem24px = "\u{e6ba}" - public static let reportProblem48px = "\u{e6bb}" - public static let restore24px = "\u{e6bc}" - public static let restore48px = "\u{e6bd}" - public static let room24px = "\u{e6be}" - public static let room48px = "\u{e6bf}" - public static let schedule24px = "\u{e6c0}" - public static let schedule48px = "\u{e6c1}" - public static let search24px = "\u{e6c2}" - public static let search48px = "\u{e6c3}" - public static let settings24px = "\u{e6c4}" - public static let settings48px = "\u{e6c5}" - public static let settingsApplications24px = "\u{e6c6}" - public static let settingsApplications48px = "\u{e6c7}" - public static let settingsBackupRestore24px = "\u{e6c8}" - public static let settingsBackupRestore48px = "\u{e6c9}" - public static let settingsBluetooth24px = "\u{e6ca}" - public static let settingsBluetooth48px = "\u{e6cb}" - public static let settingsCell24px = "\u{e6cc}" - public static let settingsCell48px = "\u{e6cd}" - public static let settingsDisplay24px = "\u{e6ce}" - public static let settingsDisplay48px = "\u{e6cf}" - public static let settingsEthernet24px = "\u{e6d0}" - public static let settingsEthernet48px = "\u{e6d1}" - public static let settingsInputAntenna24px = "\u{e6d2}" - public static let settingsInputAntenna48px = "\u{e6d3}" - public static let settingsInputComponent24px = "\u{e6d4}" - public static let settingsInputComponent48px = "\u{e6d5}" - public static let settingsInputComposite24px = "\u{e6d6}" - public static let settingsInputComposite48px = "\u{e6d7}" - public static let settingsInputHdmi24px = "\u{e6d8}" - public static let settingsInputHdmi48px = "\u{e6d9}" - public static let settingsInputSvideo24px = "\u{e6da}" - public static let settingsInputSvideo48px = "\u{e6db}" - public static let settingsOverscan24px = "\u{e6dc}" - public static let settingsOverscan48px = "\u{e6dd}" - public static let settingsPhone24px = "\u{e6de}" - public static let settingsPhone48px = "\u{e6df}" - public static let settingsPower24px = "\u{e6e0}" - public static let settingsPower48px = "\u{e6e1}" - public static let settingsRemote24px = "\u{e6e2}" - public static let settingsRemote48px = "\u{e6e3}" - public static let settingsVoice24px = "\u{e6e4}" - public static let settingsVoice48px = "\u{e6e5}" - public static let shop24px = "\u{e6e6}" - public static let shop48px = "\u{e6e7}" - public static let shopTwo24px = "\u{e6e8}" - public static let shopTwo48px = "\u{e6e9}" - public static let shoppingBasket24px = "\u{e6ea}" - public static let shoppingBasket48px = "\u{e6eb}" - public static let shoppingCart24px = "\u{e6ec}" - public static let shoppingCart48px = "\u{e6ed}" - public static let speakerNotes24px = "\u{e6ee}" - public static let speakerNotes48px = "\u{e6ef}" - public static let spellcheck24px = "\u{e6f0}" - public static let spellcheck48px = "\u{e6f1}" - public static let starRate24px = "\u{e6f2}" - public static let starRate48px = "\u{e6f3}" - public static let stars24px = "\u{e6f4}" - public static let stars48px = "\u{e6f5}" - public static let store24px = "\u{e6f6}" - public static let store48px = "\u{e6f7}" - public static let subject24px = "\u{e6f8}" - public static let subject48px = "\u{e6f9}" - public static let supervisorAccount24px = "\u{e6fa}" - public static let swapHoriz24px = "\u{e6fb}" - public static let swapHoriz48px = "\u{e6fc}" - public static let swapVert24px = "\u{e6fd}" - public static let swapVert48px = "\u{e6fe}" - public static let swapVertCircle24px = "\u{e6ff}" - public static let swapVertCircle48px = "\u{e700}" - public static let systemUpdateTv24px = "\u{e701}" - public static let systemUpdateTv48px = "\u{e702}" - public static let tab24px = "\u{e703}" - public static let tab48px = "\u{e704}" - public static let tabUnselected24px = "\u{e705}" - public static let tabUnselected48px = "\u{e706}" - public static let theaters24px = "\u{e707}" - public static let theaters48px = "\u{e708}" - public static let thumbDown24px = "\u{e709}" - public static let thumbDown48px = "\u{e70a}" - public static let thumbUp24px = "\u{e70b}" - public static let thumbUp48px = "\u{e70c}" - public static let thumbsUpDown24px = "\u{e70d}" - public static let thumbsUpDown48px = "\u{e70e}" - public static let toc24px = "\u{e70f}" - public static let toc48px = "\u{e710}" - public static let today24px = "\u{e711}" - public static let today48px = "\u{e712}" - public static let trackChanges24px = "\u{e713}" - public static let trackChanges48px = "\u{e714}" - public static let translate24px = "\u{e715}" - public static let translate48px = "\u{e716}" - public static let trendingDown24px = "\u{e717}" - public static let trendingDown48px = "\u{e718}" - public static let trendingNeutral24px = "\u{e719}" - public static let trendingNeutral48px = "\u{e71a}" - public static let trendingUp24px = "\u{e71b}" - public static let trendingUp48px = "\u{e71c}" - public static let turnedIn24px = "\u{e71d}" - public static let turnedIn48px = "\u{e71e}" - public static let turnedInNot24px = "\u{e71f}" - public static let turnedInNot48px = "\u{e720}" - public static let verifiedUser24px = "\u{e721}" - public static let verifiedUser48px = "\u{e722}" - public static let viewAgenda24px = "\u{e723}" - public static let viewAgenda48px = "\u{e724}" - public static let viewArray24px = "\u{e725}" - public static let viewArray48px = "\u{e726}" - public static let viewCarousel24px = "\u{e727}" - public static let viewCarousel48px = "\u{e728}" - public static let viewColumn24px = "\u{e729}" - public static let viewColumn48px = "\u{e72a}" - public static let viewDay24px = "\u{e72b}" - public static let viewDay48px = "\u{e72c}" - public static let viewHeadline24px = "\u{e72d}" - public static let viewHeadline48px = "\u{e72e}" - public static let viewList24px = "\u{e72f}" - public static let viewList48px = "\u{e730}" - public static let viewModule24px = "\u{e731}" - public static let viewModule48px = "\u{e732}" - public static let viewQuilt24px = "\u{e733}" - public static let viewQuilt48px = "\u{e734}" - public static let viewStream24px = "\u{e735}" - public static let viewStream48px = "\u{e736}" - public static let viewWeek24px = "\u{e737}" - public static let viewWeek48px = "\u{e738}" - public static let visibility24px = "\u{e739}" - public static let visibility48px = "\u{e73a}" - public static let visibilityOff24px = "\u{e73b}" - public static let visibilityOff48px = "\u{e73c}" + public static let threeDRotation24px = "\u{e84d}" + public static let threeDRotation48px = "\u{e84d}" + public static let accessibility24px = "\u{e84e}" + public static let accessibility48px = "\u{e84e}" + public static let accountBalance24px = "\u{e84f}" + public static let accountBalance48px = "\u{e84f}" + public static let accountBalanceWallet24px = "\u{e850}" + public static let accountBalanceWallet48px = "\u{e850}" + public static let accountBox18px = "\u{e851}" + public static let accountBox24px = "\u{e851}" + public static let accountBox48px = "\u{e851}" + public static let accountChild24px = "\u{e852}" + public static let accountChild48px = "\u{e852}" + public static let accountCircle18px = "\u{f20b}" + public static let accountCircle24px = "\u{f20b}" + public static let accountCircle48px = "\u{f20b}" + public static let addShoppingCart24px = "\u{e854}" + public static let addShoppingCart48px = "\u{e854}" + public static let alarm24px = "\u{e855}" + public static let alarm48px = "\u{e855}" + public static let alarmAdd24px = "\u{e856}" + public static let alarmAdd48px = "\u{e856}" + public static let alarmOff24px = "\u{e857}" + public static let alarmOff48px = "\u{e857}" + public static let alarmOn24px = "\u{e858}" + public static let alarmOn48px = "\u{e858}" + public static let android24px = "\u{e859}" + public static let android48px = "\u{e859}" + public static let announcement24px = "\u{e87f}" + public static let announcement48px = "\u{e87f}" + public static let aspectRatio24px = "\u{e85b}" + public static let aspectRatio48px = "\u{e85b}" + public static let assessment24px = "\u{f0cc}" + public static let assessment48px = "\u{f0cc}" + public static let assignment24px = "\u{e85d}" + public static let assignment48px = "\u{e85d}" + public static let assignmentInd24px = "\u{e85e}" + public static let assignmentInd48px = "\u{e85e}" + public static let assignmentLate24px = "\u{e85f}" + public static let assignmentLate48px = "\u{e85f}" + public static let assignmentReturn24px = "\u{e860}" + public static let assignmentReturn48px = "\u{e860}" + public static let assignmentReturned24px = "\u{e861}" + public static let assignmentReturned48px = "\u{e861}" + public static let assignmentTurnedIn24px = "\u{e862}" + public static let assignmentTurnedIn48px = "\u{e862}" + public static let autorenew24px = "\u{e863}" + public static let autorenew48px = "\u{e863}" + public static let backup24px = "\u{e864}" + public static let backup48px = "\u{e864}" + public static let book24px = "\u{e86e}" + public static let book48px = "\u{e86e}" + public static let bookmark24px = "\u{e8e7}" + public static let bookmark48px = "\u{e8e7}" + public static let bookmarkOutline24px = "\u{e8e7}" + public static let bookmarkOutline48px = "\u{e8e7}" + public static let bugReport24px = "\u{e868}" + public static let bugReport48px = "\u{e868}" + public static let cached24px = "\u{e86a}" + public static let cached48px = "\u{e86a}" + public static let class24px = "\u{e86e}" + public static let class48px = "\u{e86e}" + public static let creditCard24px = "\u{e8a1}" + public static let creditCard48px = "\u{e8a1}" + public static let dashboard24px = "\u{e871}" + public static let dashboard48px = "\u{e871}" + public static let delete24px = "\u{e92e}" + public static let delete48px = "\u{e92e}" + public static let description24px = "\u{e873}" + public static let description48px = "\u{e873}" + public static let dns24px = "\u{e875}" + public static let dns48px = "\u{e875}" + public static let done24px = "\u{e876}" + public static let done48px = "\u{e876}" + public static let doneAll24px = "\u{e877}" + public static let doneAll48px = "\u{e877}" + public static let event18px = "\u{e878}" + public static let event24px = "\u{e878}" + public static let event48px = "\u{e878}" + public static let exitToApp24px = "\u{e879}" + public static let exitToApp48px = "\u{e879}" + public static let explore24px = "\u{e87a}" + public static let explore48px = "\u{e87a}" + public static let extension24px = "\u{e87b}" + public static let extension48px = "\u{e87b}" + public static let faceUnlock24px = "\u{f008}" + public static let faceUnlock48px = "\u{f008}" + public static let favorite24px = "\u{e87e}" + public static let favorite48px = "\u{e87e}" + public static let favoriteOutline24px = "\u{e87e}" + public static let favoriteOutline48px = "\u{e87e}" + public static let findInPage24px = "\u{e880}" + public static let findInPage48px = "\u{e880}" + public static let findReplace24px = "\u{e881}" + public static let findReplace48px = "\u{e881}" + public static let flipToBack24px = "\u{e882}" + public static let flipToBack48px = "\u{e882}" + public static let flipToFront24px = "\u{e883}" + public static let flipToFront48px = "\u{e883}" + public static let getApp24px = "\u{f090}" + public static let getApp48px = "\u{f090}" + public static let grade24px = "\u{f09a}" + public static let grade48px = "\u{f09a}" + public static let groupWork24px = "\u{e886}" + public static let groupWork48px = "\u{e886}" + public static let help24px = "\u{e8fd}" + public static let help48px = "\u{e8fd}" + public static let highlightRemove24px = "\u{e888}" + public static let highlightRemove48px = "\u{e888}" + public static let history24px = "\u{e8b3}" + public static let history48px = "\u{e8b3}" + public static let home24px = "\u{e9b2}" + public static let home48px = "\u{e9b2}" + public static let https24px = "\u{e899}" + public static let https48px = "\u{e899}" + public static let info24px = "\u{e88e}" + public static let info48px = "\u{e88e}" + public static let infoOutline24px = "\u{e88e}" + public static let infoOutline48px = "\u{e88e}" + public static let input24px = "\u{e890}" + public static let input48px = "\u{e890}" + public static let invertColors24px = "\u{e891}" + public static let invertColors48px = "\u{e891}" + public static let label24px = "\u{e893}" + public static let label48px = "\u{e893}" + public static let labelOutline24px = "\u{e893}" + public static let labelOutline48px = "\u{e893}" + public static let language24px = "\u{e894}" + public static let language48px = "\u{e894}" + public static let launch24px = "\u{e89e}" + public static let launch48px = "\u{e89e}" + public static let list24px = "\u{e896}" + public static let list48px = "\u{e896}" + public static let lock24px = "\u{e899}" + public static let lock48px = "\u{e899}" + public static let lockOpen24px = "\u{e898}" + public static let lockOpen48px = "\u{e898}" + public static let lockOutline24px = "\u{e899}" + public static let lockOutline48px = "\u{e899}" + public static let loyalty24px = "\u{e89a}" + public static let loyalty48px = "\u{e89a}" + public static let markunreadMailbox24px = "\u{e89b}" + public static let markunreadMailbox48px = "\u{e89b}" + public static let noteAdd24px = "\u{e89c}" + public static let noteAdd48px = "\u{e89c}" + public static let openInBrowser24px = "\u{e89d}" + public static let openInBrowser48px = "\u{e89d}" + public static let openInNew24px = "\u{e89e}" + public static let openInNew48px = "\u{e89e}" + public static let openWith24px = "\u{e89f}" + public static let openWith48px = "\u{e89f}" + public static let pageview24px = "\u{e8a0}" + public static let pageview48px = "\u{e8a0}" + public static let payment24px = "\u{e8a1}" + public static let payment48px = "\u{e8a1}" + public static let permCameraMic24px = "\u{e8a2}" + public static let permCameraMic48px = "\u{e8a2}" + public static let permContactCal24px = "\u{e8a3}" + public static let permContactCal48px = "\u{e8a3}" + public static let permDataSetting24px = "\u{e8a4}" + public static let permDataSetting48px = "\u{e8a4}" + public static let permDeviceInfo24px = "\u{f2dc}" + public static let permDeviceInfo48px = "\u{f2dc}" + public static let permIdentity24px = "\u{f0d3}" + public static let permIdentity48px = "\u{f0d3}" + public static let permMedia24px = "\u{e8a7}" + public static let permMedia48px = "\u{e8a7}" + public static let permPhoneMsg24px = "\u{e8a8}" + public static let permPhoneMsg48px = "\u{e8a8}" + public static let permScanWifi24px = "\u{e8a9}" + public static let permScanWifi48px = "\u{e8a9}" + public static let pictureInPicture24px = "\u{e8aa}" + public static let pictureInPicture48px = "\u{e8aa}" + public static let polymer24px = "\u{e8ab}" + public static let polymer48px = "\u{e8ab}" + public static let print24px = "\u{e8ad}" + public static let print48px = "\u{e8ad}" + public static let queryBuilder24px = "\u{efd6}" + public static let queryBuilder48px = "\u{efd6}" + public static let questionAnswer24px = "\u{e8af}" + public static let questionAnswer48px = "\u{e8af}" + public static let receipt24px = "\u{e8b0}" + public static let receipt48px = "\u{e8b0}" + public static let redeem24px = "\u{e8f6}" + public static let redeem48px = "\u{e8f6}" + public static let reorder24px = "\u{e8fe}" + public static let reportProblem24px = "\u{f083}" + public static let reportProblem48px = "\u{f083}" + public static let restore24px = "\u{e8b3}" + public static let restore48px = "\u{e8b3}" + public static let room24px = "\u{f1db}" + public static let room48px = "\u{f1db}" + public static let schedule24px = "\u{efd6}" + public static let schedule48px = "\u{efd6}" + public static let search24px = "\u{e8b6}" + public static let search48px = "\u{e8b6}" + public static let settings24px = "\u{e8b8}" + public static let settings48px = "\u{e8b8}" + public static let settingsApplications24px = "\u{e8b9}" + public static let settingsApplications48px = "\u{e8b9}" + public static let settingsBackupRestore24px = "\u{e8ba}" + public static let settingsBackupRestore48px = "\u{e8ba}" + public static let settingsBluetooth24px = "\u{e8bb}" + public static let settingsBluetooth48px = "\u{e8bb}" + public static let settingsCell24px = "\u{f2d1}" + public static let settingsCell48px = "\u{f2d1}" + public static let settingsDisplay24px = "\u{e8bd}" + public static let settingsDisplay48px = "\u{e8bd}" + public static let settingsEthernet24px = "\u{e8be}" + public static let settingsEthernet48px = "\u{e8be}" + public static let settingsInputAntenna24px = "\u{e8bf}" + public static let settingsInputAntenna48px = "\u{e8bf}" + public static let settingsInputComponent24px = "\u{e8c1}" + public static let settingsInputComponent48px = "\u{e8c1}" + public static let settingsInputComposite24px = "\u{e8c1}" + public static let settingsInputComposite48px = "\u{e8c1}" + public static let settingsInputHdmi24px = "\u{e8c2}" + public static let settingsInputHdmi48px = "\u{e8c2}" + public static let settingsInputSvideo24px = "\u{e8c3}" + public static let settingsInputSvideo48px = "\u{e8c3}" + public static let settingsOverscan24px = "\u{e8c4}" + public static let settingsOverscan48px = "\u{e8c4}" + public static let settingsPhone24px = "\u{e8c5}" + public static let settingsPhone48px = "\u{e8c5}" + public static let settingsPower24px = "\u{e8c6}" + public static let settingsPower48px = "\u{e8c6}" + public static let settingsRemote24px = "\u{e8c7}" + public static let settingsRemote48px = "\u{e8c7}" + public static let settingsVoice24px = "\u{e8c8}" + public static let settingsVoice48px = "\u{e8c8}" + public static let shop24px = "\u{e8c9}" + public static let shop48px = "\u{e8c9}" + public static let shopTwo24px = "\u{e8ca}" + public static let shopTwo48px = "\u{e8ca}" + public static let shoppingBasket24px = "\u{e8cb}" + public static let shoppingBasket48px = "\u{e8cb}" + public static let shoppingCart24px = "\u{e8cc}" + public static let shoppingCart48px = "\u{e8cc}" + public static let speakerNotes24px = "\u{e8cd}" + public static let speakerNotes48px = "\u{e8cd}" + public static let spellcheck24px = "\u{e8ce}" + public static let spellcheck48px = "\u{e8ce}" + public static let starRate24px = "\u{f0ec}" + public static let starRate48px = "\u{f0ec}" + public static let stars24px = "\u{e8d0}" + public static let stars48px = "\u{e8d0}" + public static let store24px = "\u{e8d1}" + public static let store48px = "\u{e8d1}" + public static let subject24px = "\u{e8d2}" + public static let subject48px = "\u{e8d2}" + public static let supervisorAccount24px = "\u{e8d3}" + public static let swapHoriz24px = "\u{e8d4}" + public static let swapHoriz48px = "\u{e8d4}" + public static let swapVert24px = "\u{e8d5}" + public static let swapVert48px = "\u{e8d5}" + public static let swapVertCircle24px = "\u{e8d6}" + public static let swapVertCircle48px = "\u{e8d6}" + public static let systemUpdateTv24px = "\u{e8d7}" + public static let systemUpdateTv48px = "\u{e8d7}" + public static let tab24px = "\u{e8d8}" + public static let tab48px = "\u{e8d8}" + public static let tabUnselected24px = "\u{e8d9}" + public static let tabUnselected48px = "\u{e8d9}" + public static let theaters24px = "\u{e8da}" + public static let theaters48px = "\u{e8da}" + public static let thumbDown24px = "\u{f578}" + public static let thumbDown48px = "\u{f578}" + public static let thumbUp24px = "\u{f577}" + public static let thumbUp48px = "\u{f577}" + public static let thumbsUpDown24px = "\u{e8dd}" + public static let thumbsUpDown48px = "\u{e8dd}" + public static let toc24px = "\u{e8de}" + public static let toc48px = "\u{e8de}" + public static let today24px = "\u{e8df}" + public static let today48px = "\u{e8df}" + public static let trackChanges24px = "\u{e8e1}" + public static let trackChanges48px = "\u{e8e1}" + public static let translate24px = "\u{e8e2}" + public static let translate48px = "\u{e8e2}" + public static let trendingDown24px = "\u{e8e3}" + public static let trendingDown48px = "\u{e8e3}" + public static let trendingNeutral24px = "\u{e8e4}" + public static let trendingNeutral48px = "\u{e8e4}" + public static let trendingUp24px = "\u{e8e5}" + public static let trendingUp48px = "\u{e8e5}" + public static let turnedIn24px = "\u{e8e7}" + public static let turnedIn48px = "\u{e8e7}" + public static let turnedInNot24px = "\u{e8e7}" + public static let turnedInNot48px = "\u{e8e7}" + public static let verifiedUser24px = "\u{f013}" + public static let verifiedUser48px = "\u{f013}" + public static let viewAgenda24px = "\u{e8e9}" + public static let viewAgenda48px = "\u{e8e9}" + public static let viewArray24px = "\u{e8ea}" + public static let viewArray48px = "\u{e8ea}" + public static let viewCarousel24px = "\u{e8eb}" + public static let viewCarousel48px = "\u{e8eb}" + public static let viewColumn24px = "\u{e8ec}" + public static let viewColumn48px = "\u{e8ec}" + public static let viewDay24px = "\u{e8ed}" + public static let viewDay48px = "\u{e8ed}" + public static let viewHeadline24px = "\u{e8ee}" + public static let viewHeadline48px = "\u{e8ee}" + public static let viewList24px = "\u{e8ef}" + public static let viewList48px = "\u{e8ef}" + public static let viewModule24px = "\u{e8f0}" + public static let viewModule48px = "\u{e8f0}" + public static let viewQuilt24px = "\u{e8f1}" + public static let viewQuilt48px = "\u{e8f1}" + public static let viewStream24px = "\u{e8f2}" + public static let viewStream48px = "\u{e8f2}" + public static let viewWeek24px = "\u{e8f3}" + public static let viewWeek48px = "\u{e8f3}" + public static let visibility24px = "\u{e8f4}" + public static let visibility48px = "\u{e8f4}" + public static let visibilityOff24px = "\u{e8f5}" + public static let visibilityOff48px = "\u{e8f5}" public static let walletGiftcard24px = "\u{e73d}" public static let walletGiftcard48px = "\u{e73e}" public static let walletMembership24px = "\u{e73f}" public static let walletMembership48px = "\u{e740}" public static let walletTravel24px = "\u{e741}" public static let walletTravel48px = "\u{e742}" - public static let work24px = "\u{e743}" - public static let work48px = "\u{e744}" - public static let error18px = "\u{e745}" - public static let error24px = "\u{e746}" - public static let error36px = "\u{e747}" - public static let error48px = "\u{e748}" - public static let warning18px = "\u{e749}" - public static let warning24px = "\u{e74a}" - public static let warning36px = "\u{e74b}" - public static let warning48px = "\u{e74c}" - public static let album24px = "\u{e74d}" - public static let album48px = "\u{e74e}" - public static let avTimer24px = "\u{e74f}" - public static let avTimer48px = "\u{e750}" - public static let closedCaption24px = "\u{e751}" - public static let closedCaption48px = "\u{e752}" - public static let equalizer24px = "\u{e753}" - public static let equalizer48px = "\u{e754}" - public static let explicit24px = "\u{e755}" - public static let explicit48px = "\u{e756}" - public static let fastForward24px = "\u{e757}" - public static let fastForward48px = "\u{e758}" - public static let fastRewind24px = "\u{e759}" - public static let fastRewind48px = "\u{e75a}" - public static let games24px = "\u{e75b}" - public static let games48px = "\u{e75c}" - public static let hearing24px = "\u{e75d}" - public static let hearing48px = "\u{e75e}" - public static let highQuality24px = "\u{e75f}" - public static let highQuality48px = "\u{e760}" - public static let loop24px = "\u{e761}" - public static let loop48px = "\u{e762}" - public static let mic24px = "\u{e763}" - public static let mic48px = "\u{e764}" - public static let micNone24px = "\u{e765}" - public static let micNone48px = "\u{e766}" - public static let micOff24px = "\u{e767}" - public static let micOff48px = "\u{e768}" - public static let movie24px = "\u{e769}" - public static let movie48px = "\u{e76a}" + public static let work24px = "\u{e943}" + public static let work48px = "\u{e943}" + public static let error18px = "\u{f8b6}" + public static let error24px = "\u{f8b6}" + public static let error36px = "\u{f8b6}" + public static let error48px = "\u{f8b6}" + public static let warning18px = "\u{f083}" + public static let warning24px = "\u{f083}" + public static let warning36px = "\u{f083}" + public static let warning48px = "\u{f083}" + public static let album24px = "\u{e019}" + public static let album48px = "\u{e019}" + public static let avTimer24px = "\u{e01b}" + public static let avTimer48px = "\u{e01b}" + public static let closedCaption24px = "\u{e996}" + public static let closedCaption48px = "\u{e996}" + public static let equalizer24px = "\u{e01d}" + public static let equalizer48px = "\u{e01d}" + public static let explicit24px = "\u{e01e}" + public static let explicit48px = "\u{e01e}" + public static let fastForward24px = "\u{e01f}" + public static let fastForward48px = "\u{e01f}" + public static let fastRewind24px = "\u{e020}" + public static let fastRewind48px = "\u{e020}" + public static let games24px = "\u{e30f}" + public static let games48px = "\u{e30f}" + public static let hearing24px = "\u{e023}" + public static let hearing48px = "\u{e023}" + public static let highQuality24px = "\u{e024}" + public static let highQuality48px = "\u{e024}" + public static let loop24px = "\u{e863}" + public static let loop48px = "\u{e863}" + public static let mic24px = "\u{e31d}" + public static let mic48px = "\u{e31d}" + public static let micNone24px = "\u{e31d}" + public static let micNone48px = "\u{e31d}" + public static let micOff24px = "\u{e02b}" + public static let micOff48px = "\u{e02b}" + public static let movie24px = "\u{e404}" + public static let movie48px = "\u{e404}" public static let myLibraryAdd24px = "\u{e76b}" public static let myLibraryAdd48px = "\u{e76c}" public static let myLibraryBooks24px = "\u{e76d}" public static let myLibraryBooks48px = "\u{e76e}" public static let myLibraryMusic24px = "\u{e76f}" public static let myLibraryMusic48px = "\u{e770}" - public static let newReleases24px = "\u{e771}" - public static let newReleases48px = "\u{e772}" - public static let notInterested24px = "\u{e773}" - public static let notInterested48px = "\u{e774}" - public static let pause24px = "\u{e775}" - public static let pause48px = "\u{e776}" + public static let newReleases24px = "\u{ef76}" + public static let newReleases48px = "\u{ef76}" + public static let notInterested24px = "\u{f08c}" + public static let notInterested48px = "\u{f08c}" + public static let pause24px = "\u{e034}" + public static let pause48px = "\u{e034}" public static let pauseCircleFill24px = "\u{e777}" public static let pauseCircleFill48px = "\u{e778}" - public static let pauseCircleOutline24px = "\u{e779}" - public static let pauseCircleOutline48px = "\u{e77a}" - public static let playArrow24px = "\u{e77b}" - public static let playArrow48px = "\u{e77c}" + public static let pauseCircleOutline24px = "\u{e1a2}" + public static let pauseCircleOutline48px = "\u{e1a2}" + public static let playArrow24px = "\u{e037}" + public static let playArrow48px = "\u{e037}" public static let playCircleFill24px = "\u{e77d}" public static let playCircleFill48px = "\u{e77e}" public static let playCircleOutline24px = "\u{e77f}" public static let playCircleOutline48px = "\u{e780}" public static let playShoppingBag24px = "\u{e781}" public static let playShoppingBag48px = "\u{e782}" - public static let playlistAdd24px = "\u{e783}" - public static let playlistAdd48px = "\u{e784}" - public static let queue24px = "\u{e785}" - public static let queue48px = "\u{e786}" - public static let queueMusic24px = "\u{e787}" - public static let queueMusic48px = "\u{e788}" - public static let radio24px = "\u{e789}" - public static let radio48px = "\u{e78a}" - public static let recentActors24px = "\u{e78b}" - public static let recentActors48px = "\u{e78c}" - public static let repeat24px = "\u{e78d}" - public static let repeat48px = "\u{e78e}" + public static let playlistAdd24px = "\u{e03b}" + public static let playlistAdd48px = "\u{e03b}" + public static let queue24px = "\u{e03c}" + public static let queue48px = "\u{e03c}" + public static let queueMusic24px = "\u{e03d}" + public static let queueMusic48px = "\u{e03d}" + public static let radio24px = "\u{e03e}" + public static let radio48px = "\u{e03e}" + public static let recentActors24px = "\u{e03f}" + public static let recentActors48px = "\u{e03f}" + public static let repeat24px = "\u{e040}" + public static let repeat48px = "\u{e040}" } #endif diff --git a/Sources/MaterialDesignSymbol/MaterialDesignIcon2.swift b/Sources/MaterialDesignSymbol/MaterialDesignIcon2.swift index 1760460..7250098 100644 --- a/Sources/MaterialDesignSymbol/MaterialDesignIcon2.swift +++ b/Sources/MaterialDesignSymbol/MaterialDesignIcon2.swift @@ -12,197 +12,197 @@ import UIKit * マテリアルデザインアイコンのコードを返すクラス */ extension MaterialDesignIcon { - public static let repeatOne24px = "\u{e78f}" - public static let repeatOne48px = "\u{e790}" - public static let replay24px = "\u{e791}" - public static let replay48px = "\u{e792}" - public static let shuffle24px = "\u{e793}" - public static let shuffle48px = "\u{e794}" - public static let skipNext24px = "\u{e795}" - public static let skipNext48px = "\u{e796}" - public static let skipPrevious24px = "\u{e797}" - public static let skipPrevious48px = "\u{e798}" - public static let snooze24px = "\u{e799}" - public static let snooze48px = "\u{e79a}" - public static let stop24px = "\u{e79b}" - public static let stop48px = "\u{e79c}" - public static let subtitles24px = "\u{e79d}" - public static let subtitles48px = "\u{e79e}" - public static let surroundSound24px = "\u{e79f}" - public static let surroundSound48px = "\u{e7a0}" + public static let repeatOne24px = "\u{e041}" + public static let repeatOne48px = "\u{e041}" + public static let replay24px = "\u{e042}" + public static let replay48px = "\u{e042}" + public static let shuffle24px = "\u{e043}" + public static let shuffle48px = "\u{e043}" + public static let skipNext24px = "\u{e044}" + public static let skipNext48px = "\u{e044}" + public static let skipPrevious24px = "\u{e045}" + public static let skipPrevious48px = "\u{e045}" + public static let snooze24px = "\u{e046}" + public static let snooze48px = "\u{e046}" + public static let stop24px = "\u{e047}" + public static let stop48px = "\u{e047}" + public static let subtitles24px = "\u{e048}" + public static let subtitles48px = "\u{e048}" + public static let surroundSound24px = "\u{e049}" + public static let surroundSound48px = "\u{e049}" public static let videoCollection24px = "\u{e7a1}" public static let videoCollection48px = "\u{e7a2}" - public static let videocam24px = "\u{e7a3}" - public static let videocam48px = "\u{e7a4}" - public static let videocamOff24px = "\u{e7a5}" - public static let videocamOff48px = "\u{e7a6}" - public static let volumeDown18px = "\u{e7a7}" - public static let volumeDown24px = "\u{e7a8}" - public static let volumeDown48px = "\u{e7a9}" - public static let volumeMute18px = "\u{e7aa}" - public static let volumeMute24px = "\u{e7ab}" - public static let volumeMute48px = "\u{e7ac}" - public static let volumeOff24px = "\u{e7ad}" - public static let volumeOff48px = "\u{e7ae}" - public static let volumeUp18px = "\u{e7af}" - public static let volumeUp24px = "\u{e7b0}" - public static let volumeUp48px = "\u{e7b1}" - public static let web24px = "\u{e7b2}" - public static let web48px = "\u{e7b3}" - public static let business24px = "\u{e7b4}" - public static let business48px = "\u{e7b5}" - public static let call24px = "\u{e7b6}" - public static let call48px = "\u{e7b7}" - public static let callEnd24px = "\u{e7b8}" - public static let callEnd48px = "\u{e7b9}" - public static let callMade24px = "\u{e7ba}" - public static let callMade48px = "\u{e7bb}" - public static let callMerge24px = "\u{e7bc}" - public static let callMerge48px = "\u{e7bd}" - public static let callMissed24px = "\u{e7be}" - public static let callMissed48px = "\u{e7bf}" - public static let callReceived24px = "\u{e7c0}" - public static let callReceived48px = "\u{e7c1}" - public static let callSplit24px = "\u{e7c2}" - public static let callSplit48px = "\u{e7c3}" - public static let chat24px = "\u{e7c4}" - public static let chat48px = "\u{e7c5}" - public static let clearAll24px = "\u{e7c6}" - public static let clearAll48px = "\u{e7c7}" - public static let comment24px = "\u{e7c8}" - public static let comment48px = "\u{e7c9}" - public static let contacts24px = "\u{e7ca}" - public static let contacts48px = "\u{e7cb}" - public static let dialerSip24px = "\u{e7cc}" - public static let dialerSip48px = "\u{e7cd}" - public static let dialpad24px = "\u{e7ce}" - public static let dialpad48px = "\u{e7cf}" + public static let videocam24px = "\u{e04b}" + public static let videocam48px = "\u{e04b}" + public static let videocamOff24px = "\u{e04c}" + public static let videocamOff48px = "\u{e04c}" + public static let volumeDown18px = "\u{e04d}" + public static let volumeDown24px = "\u{e04d}" + public static let volumeDown48px = "\u{e04d}" + public static let volumeMute18px = "\u{e04e}" + public static let volumeMute24px = "\u{e04e}" + public static let volumeMute48px = "\u{e04e}" + public static let volumeOff24px = "\u{e04f}" + public static let volumeOff48px = "\u{e04f}" + public static let volumeUp18px = "\u{e050}" + public static let volumeUp24px = "\u{e050}" + public static let volumeUp48px = "\u{e050}" + public static let web24px = "\u{e051}" + public static let web48px = "\u{e051}" + public static let business24px = "\u{e7ee}" + public static let business48px = "\u{e7ee}" + public static let call24px = "\u{f0d4}" + public static let call48px = "\u{f0d4}" + public static let callEnd24px = "\u{f0bc}" + public static let callEnd48px = "\u{f0bc}" + public static let callMade24px = "\u{e0b2}" + public static let callMade48px = "\u{e0b2}" + public static let callMerge24px = "\u{e0b3}" + public static let callMerge48px = "\u{e0b3}" + public static let callMissed24px = "\u{e0b4}" + public static let callMissed48px = "\u{e0b4}" + public static let callReceived24px = "\u{e0b5}" + public static let callReceived48px = "\u{e0b5}" + public static let callSplit24px = "\u{e0b6}" + public static let callSplit48px = "\u{e0b6}" + public static let chat24px = "\u{e0c9}" + public static let chat48px = "\u{e0c9}" + public static let clearAll24px = "\u{e0b8}" + public static let clearAll48px = "\u{e0b8}" + public static let comment24px = "\u{e24c}" + public static let comment48px = "\u{e24c}" + public static let contacts24px = "\u{e0ba}" + public static let contacts48px = "\u{e0ba}" + public static let dialerSip24px = "\u{e0bb}" + public static let dialerSip48px = "\u{e0bb}" + public static let dialpad24px = "\u{e0bc}" + public static let dialpad48px = "\u{e0bc}" public static let dndOn24px = "\u{e7d0}" public static let dndOn48px = "\u{e7d1}" - public static let email24px = "\u{e7d2}" - public static let email48px = "\u{e7d3}" - public static let forum24px = "\u{e7d4}" - public static let forum48px = "\u{e7d5}" - public static let importExport24px = "\u{e7d6}" - public static let importExport48px = "\u{e7d7}" - public static let invertColorsOff24px = "\u{e7d8}" - public static let invertColorsOff48px = "\u{e7d9}" + public static let email24px = "\u{e159}" + public static let email48px = "\u{e159}" + public static let forum24px = "\u{e8af}" + public static let forum48px = "\u{e8af}" + public static let importExport24px = "\u{e8d5}" + public static let importExport48px = "\u{e8d5}" + public static let invertColorsOff24px = "\u{e0c4}" + public static let invertColorsOff48px = "\u{e0c4}" public static let invertColorsOn24px = "\u{e7da}" public static let invertColorsOn48px = "\u{e7db}" - public static let liveHelp24px = "\u{e7dc}" - public static let liveHelp48px = "\u{e7dd}" - public static let locationOff24px = "\u{e7de}" - public static let locationOff48px = "\u{e7df}" - public static let locationOn24px = "\u{e7e0}" - public static let locationOn48px = "\u{e7e1}" - public static let message24px = "\u{e7e2}" - public static let message48px = "\u{e7e3}" + public static let liveHelp24px = "\u{e0c6}" + public static let liveHelp48px = "\u{e0c6}" + public static let locationOff24px = "\u{e0c7}" + public static let locationOff48px = "\u{e0c7}" + public static let locationOn24px = "\u{f1db}" + public static let locationOn48px = "\u{f1db}" + public static let message24px = "\u{e0c9}" + public static let message48px = "\u{e0c9}" public static let messenger24px = "\u{e7e4}" public static let messenger48px = "\u{e7e5}" - public static let noSim24px = "\u{e7e6}" - public static let noSim48px = "\u{e7e7}" - public static let phone24px = "\u{e7e8}" - public static let phone48px = "\u{e7e9}" - public static let portableWifiOff24px = "\u{e7ea}" - public static let portableWifiOff48px = "\u{e7eb}" + public static let noSim24px = "\u{e1ce}" + public static let noSim48px = "\u{e1ce}" + public static let phone24px = "\u{f0d4}" + public static let phone48px = "\u{f0d4}" + public static let portableWifiOff24px = "\u{f087}" + public static let portableWifiOff48px = "\u{f087}" public static let quickContactsDialer24px = "\u{e7ec}" public static let quickContactsDialer48px = "\u{e7ed}" public static let quickContactsMail24px = "\u{e7ee}" public static let quickContactsMail48px = "\u{e7ef}" - public static let ringVolume24px = "\u{e7f0}" - public static let ringVolume48px = "\u{e7f1}" - public static let stayCurrentLandscape24px = "\u{e7f2}" - public static let stayCurrentLandscape48px = "\u{e7f3}" - public static let stayCurrentPortrait24px = "\u{e7f4}" - public static let stayCurrentPortrait48px = "\u{e7f5}" - public static let stayPrimaryLandscape24px = "\u{e7f6}" - public static let stayPrimaryLandscape48px = "\u{e7f7}" - public static let stayPrimaryPortrait24px = "\u{e7f8}" - public static let stayPrimaryPortrait48px = "\u{e7f9}" - public static let swapCalls24px = "\u{e7fa}" - public static let swapCalls48px = "\u{e7fb}" - public static let textsms24px = "\u{e7fc}" - public static let textsms48px = "\u{e7fd}" - public static let voicemail24px = "\u{e7fe}" - public static let voicemail48px = "\u{e7ff}" - public static let vpnKey24px = "\u{e800}" - public static let vpnKey48px = "\u{e801}" - public static let add24px = "\u{e802}" - public static let add48px = "\u{e803}" - public static let addBox24px = "\u{e804}" - public static let addBox48px = "\u{e805}" - public static let addCircle24px = "\u{e806}" - public static let addCircle48px = "\u{e807}" - public static let addCircleOutline24px = "\u{e808}" - public static let addCircleOutline48px = "\u{e809}" - public static let archive24px = "\u{e80a}" - public static let archive48px = "\u{e80b}" - public static let backspace24px = "\u{e80c}" - public static let backspace48px = "\u{e80d}" - public static let block24px = "\u{e80e}" - public static let block48px = "\u{e80f}" - public static let clear24px = "\u{e810}" - public static let clear48px = "\u{e811}" - public static let contentCopy24px = "\u{e812}" - public static let contentCopy48px = "\u{e813}" - public static let contentCut24px = "\u{e814}" - public static let contentCut48px = "\u{e815}" - public static let contentPaste24px = "\u{e816}" - public static let contentPaste48px = "\u{e817}" - public static let create24px = "\u{e818}" - public static let create48px = "\u{e819}" - public static let drafts24px = "\u{e81a}" - public static let drafts48px = "\u{e81b}" - public static let filterList24px = "\u{e81c}" - public static let filterList48px = "\u{e81d}" - public static let flag24px = "\u{e81e}" - public static let flag48px = "\u{e81f}" - public static let forward24px = "\u{e820}" - public static let forward48px = "\u{e821}" - public static let gesture24px = "\u{e822}" - public static let gesture48px = "\u{e823}" - public static let inbox24px = "\u{e824}" - public static let inbox48px = "\u{e825}" - public static let link24px = "\u{e826}" - public static let link48px = "\u{e827}" - public static let mail24px = "\u{e828}" - public static let mail48px = "\u{e829}" - public static let markunread24px = "\u{e82a}" - public static let markunread48px = "\u{e82b}" - public static let redo24px = "\u{e82c}" - public static let redo48px = "\u{e82d}" - public static let remove24px = "\u{e82e}" - public static let remove48px = "\u{e82f}" - public static let removeCircle24px = "\u{e830}" - public static let removeCircle48px = "\u{e831}" - public static let removeCircleOutline24px = "\u{e832}" - public static let removeCircleOutline48px = "\u{e833}" - public static let reply24px = "\u{e834}" - public static let reply48px = "\u{e835}" - public static let replyAll24px = "\u{e836}" - public static let replyAll48px = "\u{e837}" - public static let report24px = "\u{e838}" - public static let report48px = "\u{e839}" - public static let save24px = "\u{e83a}" - public static let save48px = "\u{e83b}" - public static let selectAll24px = "\u{e83c}" - public static let selectAll48px = "\u{e83d}" - public static let send24px = "\u{e83e}" - public static let send48px = "\u{e83f}" - public static let sort24px = "\u{e840}" - public static let sort48px = "\u{e841}" - public static let textFormat24px = "\u{e842}" - public static let textFormat48px = "\u{e843}" - public static let undo24px = "\u{e844}" - public static let undo48px = "\u{e845}" - public static let accessAlarm24px = "\u{e846}" - public static let accessAlarm48px = "\u{e847}" - public static let accessAlarms24px = "\u{e848}" - public static let accessAlarms48px = "\u{e849}" - public static let accessTime24px = "\u{e84a}" - public static let accessTime48px = "\u{e84b}" - public static let addAlarm24px = "\u{e84c}" - public static let addAlarm48px = "\u{e84d}" + public static let ringVolume24px = "\u{f0dd}" + public static let ringVolume48px = "\u{f0dd}" + public static let stayCurrentLandscape24px = "\u{ed3e}" + public static let stayCurrentLandscape48px = "\u{ed3e}" + public static let stayCurrentPortrait24px = "\u{e7ba}" + public static let stayCurrentPortrait48px = "\u{e7ba}" + public static let stayPrimaryLandscape24px = "\u{ed3e}" + public static let stayPrimaryLandscape48px = "\u{ed3e}" + public static let stayPrimaryPortrait24px = "\u{f2d3}" + public static let stayPrimaryPortrait48px = "\u{f2d3}" + public static let swapCalls24px = "\u{e0d7}" + public static let swapCalls48px = "\u{e0d7}" + public static let textsms24px = "\u{e625}" + public static let textsms48px = "\u{e625}" + public static let voicemail24px = "\u{e0d9}" + public static let voicemail48px = "\u{e0d9}" + public static let vpnKey24px = "\u{e0da}" + public static let vpnKey48px = "\u{e0da}" + public static let add24px = "\u{e145}" + public static let add48px = "\u{e145}" + public static let addBox24px = "\u{e146}" + public static let addBox48px = "\u{e146}" + public static let addCircle24px = "\u{e3ba}" + public static let addCircle48px = "\u{e3ba}" + public static let addCircleOutline24px = "\u{e3ba}" + public static let addCircleOutline48px = "\u{e3ba}" + public static let archive24px = "\u{e149}" + public static let archive48px = "\u{e149}" + public static let backspace24px = "\u{e14a}" + public static let backspace48px = "\u{e14a}" + public static let block24px = "\u{f08c}" + public static let block48px = "\u{f08c}" + public static let clear24px = "\u{e5cd}" + public static let clear48px = "\u{e5cd}" + public static let contentCopy24px = "\u{e14d}" + public static let contentCopy48px = "\u{e14d}" + public static let contentCut24px = "\u{e14e}" + public static let contentCut48px = "\u{e14e}" + public static let contentPaste24px = "\u{e14f}" + public static let contentPaste48px = "\u{e14f}" + public static let create24px = "\u{f097}" + public static let create48px = "\u{f097}" + public static let drafts24px = "\u{e151}" + public static let drafts48px = "\u{e151}" + public static let filterList24px = "\u{e152}" + public static let filterList48px = "\u{e152}" + public static let flag24px = "\u{f0c6}" + public static let flag48px = "\u{f0c6}" + public static let forward24px = "\u{f57a}" + public static let forward48px = "\u{f57a}" + public static let gesture24px = "\u{e155}" + public static let gesture48px = "\u{e155}" + public static let inbox24px = "\u{e156}" + public static let inbox48px = "\u{e156}" + public static let link24px = "\u{e250}" + public static let link48px = "\u{e250}" + public static let mail24px = "\u{e159}" + public static let mail48px = "\u{e159}" + public static let markunread24px = "\u{e159}" + public static let markunread48px = "\u{e159}" + public static let redo24px = "\u{e15a}" + public static let redo48px = "\u{e15a}" + public static let remove24px = "\u{e15b}" + public static let remove48px = "\u{e15b}" + public static let removeCircle24px = "\u{f08f}" + public static let removeCircle48px = "\u{f08f}" + public static let removeCircleOutline24px = "\u{f08f}" + public static let removeCircleOutline48px = "\u{f08f}" + public static let reply24px = "\u{e15e}" + public static let reply48px = "\u{e15e}" + public static let replyAll24px = "\u{e15f}" + public static let replyAll48px = "\u{e15f}" + public static let report24px = "\u{f052}" + public static let report48px = "\u{f052}" + public static let save24px = "\u{e161}" + public static let save48px = "\u{e161}" + public static let selectAll24px = "\u{e162}" + public static let selectAll48px = "\u{e162}" + public static let send24px = "\u{e163}" + public static let send48px = "\u{e163}" + public static let sort24px = "\u{e164}" + public static let sort48px = "\u{e164}" + public static let textFormat24px = "\u{e165}" + public static let textFormat48px = "\u{e165}" + public static let undo24px = "\u{e166}" + public static let undo48px = "\u{e166}" + public static let accessAlarm24px = "\u{e855}" + public static let accessAlarm48px = "\u{e855}" + public static let accessAlarms24px = "\u{e855}" + public static let accessAlarms48px = "\u{e855}" + public static let accessTime24px = "\u{efd6}" + public static let accessTime48px = "\u{efd6}" + public static let addAlarm24px = "\u{e856}" + public static let addAlarm48px = "\u{e856}" public static let airplanemodeOff24px = "\u{e84e}" public static let airplanemodeOff48px = "\u{e84f}" public static let airplanemodeOn24px = "\u{e850}" @@ -225,9 +225,9 @@ extension MaterialDesignIcon { public static let battery9018px = "\u{e861}" public static let battery9024px = "\u{e862}" public static let battery9048px = "\u{e863}" - public static let batteryAlert18px = "\u{e864}" - public static let batteryAlert24px = "\u{e865}" - public static let batteryAlert48px = "\u{e866}" + public static let batteryAlert18px = "\u{e19c}" + public static let batteryAlert24px = "\u{e19c}" + public static let batteryAlert48px = "\u{e19c}" public static let batteryCharging2018px = "\u{e867}" public static let batteryCharging2024px = "\u{e868}" public static let batteryCharging2048px = "\u{e869}" @@ -246,80 +246,80 @@ extension MaterialDesignIcon { public static let batteryCharging9018px = "\u{e876}" public static let batteryCharging9024px = "\u{e877}" public static let batteryCharging9048px = "\u{e878}" - public static let batteryChargingFull18px = "\u{e879}" - public static let batteryChargingFull24px = "\u{e87a}" - public static let batteryChargingFull48px = "\u{e87b}" - public static let batteryFull18px = "\u{e87c}" - public static let batteryFull24px = "\u{e87d}" - public static let batteryFull48px = "\u{e87e}" - public static let batteryStd18px = "\u{e87f}" - public static let batteryStd24px = "\u{e880}" - public static let batteryStd48px = "\u{e881}" - public static let batteryUnknown18px = "\u{e882}" - public static let batteryUnknown24px = "\u{e883}" - public static let batteryUnknown48px = "\u{e884}" - public static let bluetooth24px = "\u{e885}" - public static let bluetooth48px = "\u{e886}" - public static let bluetoothConnected24px = "\u{e887}" - public static let bluetoothConnected48px = "\u{e888}" - public static let bluetoothDisabled24px = "\u{e889}" - public static let bluetoothDisabled48px = "\u{e88a}" - public static let bluetoothSearching24px = "\u{e88b}" - public static let bluetoothSearching48px = "\u{e88c}" - public static let brightnessAuto24px = "\u{e88d}" - public static let brightnessAuto48px = "\u{e88e}" - public static let brightnessHigh24px = "\u{e88f}" - public static let brightnessHigh48px = "\u{e890}" - public static let brightnessLow24px = "\u{e891}" - public static let brightnessLow48px = "\u{e892}" - public static let brightnessMedium24px = "\u{e893}" - public static let brightnessMedium48px = "\u{e894}" - public static let dataUsage24px = "\u{e895}" - public static let dataUsage48px = "\u{e896}" - public static let developerMode24px = "\u{e897}" - public static let developerMode48px = "\u{e898}" - public static let devices24px = "\u{e899}" - public static let devices48px = "\u{e89a}" - public static let dvr24px = "\u{e89b}" - public static let dvr48px = "\u{e89c}" - public static let gpsFixed24px = "\u{e89d}" - public static let gpsFixed48px = "\u{e89e}" - public static let gpsNotFixed24px = "\u{e89f}" - public static let gpsNotFixed48px = "\u{e8a0}" - public static let gpsOff24px = "\u{e8a1}" - public static let gpsOff48px = "\u{e8a2}" - public static let locationDisabled24px = "\u{e8a3}" - public static let locationDisabled48px = "\u{e8a4}" - public static let locationSearching24px = "\u{e8a5}" - public static let locationSearching48px = "\u{e8a6}" + public static let batteryChargingFull18px = "\u{e1a3}" + public static let batteryChargingFull24px = "\u{e1a3}" + public static let batteryChargingFull48px = "\u{e1a3}" + public static let batteryFull18px = "\u{e1a5}" + public static let batteryFull24px = "\u{e1a5}" + public static let batteryFull48px = "\u{e1a5}" + public static let batteryStd18px = "\u{e1a5}" + public static let batteryStd24px = "\u{e1a5}" + public static let batteryStd48px = "\u{e1a5}" + public static let batteryUnknown18px = "\u{e1a6}" + public static let batteryUnknown24px = "\u{e1a6}" + public static let batteryUnknown48px = "\u{e1a6}" + public static let bluetooth24px = "\u{e1a7}" + public static let bluetooth48px = "\u{e1a7}" + public static let bluetoothConnected24px = "\u{e1a8}" + public static let bluetoothConnected48px = "\u{e1a8}" + public static let bluetoothDisabled24px = "\u{e1a9}" + public static let bluetoothDisabled48px = "\u{e1a9}" + public static let bluetoothSearching24px = "\u{e60f}" + public static let bluetoothSearching48px = "\u{e60f}" + public static let brightnessAuto24px = "\u{e1ab}" + public static let brightnessAuto48px = "\u{e1ab}" + public static let brightnessHigh24px = "\u{e1ac}" + public static let brightnessHigh48px = "\u{e1ac}" + public static let brightnessLow24px = "\u{e1ad}" + public static let brightnessLow48px = "\u{e1ad}" + public static let brightnessMedium24px = "\u{e1ae}" + public static let brightnessMedium48px = "\u{e1ae}" + public static let dataUsage24px = "\u{eff2}" + public static let dataUsage48px = "\u{eff2}" + public static let developerMode24px = "\u{f2e2}" + public static let developerMode48px = "\u{f2e2}" + public static let devices24px = "\u{e326}" + public static let devices48px = "\u{e326}" + public static let dvr24px = "\u{e1b2}" + public static let dvr48px = "\u{e1b2}" + public static let gpsFixed24px = "\u{e55c}" + public static let gpsFixed48px = "\u{e55c}" + public static let gpsNotFixed24px = "\u{e1b7}" + public static let gpsNotFixed48px = "\u{e1b7}" + public static let gpsOff24px = "\u{e1b6}" + public static let gpsOff48px = "\u{e1b6}" + public static let locationDisabled24px = "\u{e1b6}" + public static let locationDisabled48px = "\u{e1b6}" + public static let locationSearching24px = "\u{e1b7}" + public static let locationSearching48px = "\u{e1b7}" public static let multitrackAudio24px = "\u{e8a7}" public static let multitrackAudio48px = "\u{e8a8}" - public static let networkCell18px = "\u{e8a9}" - public static let networkCell24px = "\u{e8aa}" - public static let networkCell48px = "\u{e8ab}" - public static let networkWifi18px = "\u{e8ac}" - public static let networkWifi24px = "\u{e8ad}" - public static let networkWifi48px = "\u{e8ae}" - public static let nfc24px = "\u{e8af}" - public static let nfc48px = "\u{e8b0}" + public static let networkCell18px = "\u{e1b9}" + public static let networkCell24px = "\u{e1b9}" + public static let networkCell48px = "\u{e1b9}" + public static let networkWifi18px = "\u{e1ba}" + public static let networkWifi24px = "\u{e1ba}" + public static let networkWifi48px = "\u{e1ba}" + public static let nfc24px = "\u{e1bb}" + public static let nfc48px = "\u{e1bb}" public static let nowWallpaper18px = "\u{e8b1}" public static let nowWallpaper24px = "\u{e8b2}" public static let nowWallpaper48px = "\u{e8b3}" public static let nowWidgets18px = "\u{e8b4}" public static let nowWidgets24px = "\u{e8b5}" public static let nowWidgets48px = "\u{e8b6}" - public static let screenLockLandscape24px = "\u{e8b7}" - public static let screenLockLandscape48px = "\u{e8b8}" - public static let screenLockPortrait24px = "\u{e8b9}" - public static let screenLockPortrait48px = "\u{e8ba}" - public static let screenLockRotation24px = "\u{e8bb}" - public static let screenLockRotation48px = "\u{e8bc}" - public static let screenRotation24px = "\u{e8bd}" - public static let screenRotation48px = "\u{e8be}" - public static let sdStorage24px = "\u{e8bf}" - public static let sdStorage48px = "\u{e8c0}" - public static let settingsSystemDaydream24px = "\u{e8c1}" - public static let settingsSystemDaydream48px = "\u{e8c2}" + public static let screenLockLandscape24px = "\u{f2d8}" + public static let screenLockLandscape48px = "\u{f2d8}" + public static let screenLockPortrait24px = "\u{f2be}" + public static let screenLockPortrait48px = "\u{f2be}" + public static let screenLockRotation24px = "\u{f2d6}" + public static let screenLockRotation48px = "\u{f2d6}" + public static let screenRotation24px = "\u{f2d5}" + public static let screenRotation48px = "\u{f2d5}" + public static let sdStorage24px = "\u{e623}" + public static let sdStorage48px = "\u{e623}" + public static let settingsSystemDaydream24px = "\u{e1c3}" + public static let settingsSystemDaydream48px = "\u{e1c3}" public static let signalCellular0Bar18px = "\u{e8c3}" public static let signalCellular0Bar24px = "\u{e8c4}" public static let signalCellular0Bar48px = "\u{e8c5}" @@ -350,14 +350,14 @@ extension MaterialDesignIcon { public static let signalCellularConnectedNoInternet4Bar18px = "\u{e8de}" public static let signalCellularConnectedNoInternet4Bar24px = "\u{e8df}" public static let signalCellularConnectedNoInternet4Bar48px = "\u{e8e0}" - public static let signalCellularNoSim24px = "\u{e8e1}" - public static let signalCellularNoSim48px = "\u{e8e2}" - public static let signalCellularNull18px = "\u{e8e3}" - public static let signalCellularNull24px = "\u{e8e4}" - public static let signalCellularNull48px = "\u{e8e5}" - public static let signalCellularOff18px = "\u{e8e6}" - public static let signalCellularOff24px = "\u{e8e7}" - public static let signalCellularOff48px = "\u{e8e8}" + public static let signalCellularNoSim24px = "\u{e1ce}" + public static let signalCellularNoSim48px = "\u{e1ce}" + public static let signalCellularNull18px = "\u{e1cf}" + public static let signalCellularNull24px = "\u{e1cf}" + public static let signalCellularNull48px = "\u{e1cf}" + public static let signalCellularOff18px = "\u{e1d0}" + public static let signalCellularOff24px = "\u{e1d0}" + public static let signalCellularOff48px = "\u{e1d0}" public static let signalWifi0Bar18px = "\u{e8e9}" public static let signalWifi0Bar24px = "\u{e8ea}" public static let signalWifi0Bar48px = "\u{e8eb}" @@ -373,9 +373,9 @@ extension MaterialDesignIcon { public static let signalWifi4Bar18px = "\u{e8f5}" public static let signalWifi4Bar24px = "\u{e8f6}" public static let signalWifi4Bar48px = "\u{e8f7}" - public static let signalWifiOff18px = "\u{e8f8}" - public static let signalWifiOff24px = "\u{e8f9}" - public static let signalWifiOff48px = "\u{e8fa}" + public static let signalWifiOff18px = "\u{e1da}" + public static let signalWifiOff24px = "\u{e1da}" + public static let signalWifiOff48px = "\u{e1da}" public static let signalWifiStatusbar1Bar26x24px = "\u{e8fb}" public static let signalWifiStatusbar2Bar26x24px = "\u{e8fc}" public static let signalWifiStatusbar3Bar26x24px = "\u{e8fd}" @@ -387,29 +387,29 @@ extension MaterialDesignIcon { public static let signalWifiStatusbarConnectedNoInternet26x24px = "\u{e903}" public static let signalWifiStatusbarNotConnected26x24px = "\u{e904}" public static let signalWifiStatusbarNull26x24px = "\u{e905}" - public static let storage24px = "\u{e906}" - public static let storage48px = "\u{e907}" - public static let usb18px = "\u{e908}" - public static let usb24px = "\u{e909}" - public static let usb48px = "\u{e90a}" - public static let wifiLock24px = "\u{e90b}" - public static let wifiLock48px = "\u{e90c}" - public static let wifiTethering24px = "\u{e90d}" - public static let wifiTethering48px = "\u{e90e}" - public static let attachFile18px = "\u{e90f}" - public static let attachFile24px = "\u{e910}" - public static let attachFile48px = "\u{e911}" - public static let attachMoney18px = "\u{e912}" - public static let attachMoney24px = "\u{e913}" - public static let attachMoney48px = "\u{e914}" - public static let borderAll18px = "\u{e915}" - public static let borderAll24px = "\u{e916}" - public static let borderAll48px = "\u{e917}" - public static let borderBottom18px = "\u{e918}" - public static let borderBottom24px = "\u{e919}" - public static let borderBottom48px = "\u{e91a}" - public static let borderClear18px = "\u{e91b}" - public static let borderClear24px = "\u{e91c}" - public static let borderClear48px = "\u{e91d}" + public static let storage24px = "\u{e1db}" + public static let storage48px = "\u{e1db}" + public static let usb18px = "\u{e1e0}" + public static let usb24px = "\u{e1e0}" + public static let usb48px = "\u{e1e0}" + public static let wifiLock24px = "\u{e1e1}" + public static let wifiLock48px = "\u{e1e1}" + public static let wifiTethering24px = "\u{e1e2}" + public static let wifiTethering48px = "\u{e1e2}" + public static let attachFile18px = "\u{e226}" + public static let attachFile24px = "\u{e226}" + public static let attachFile48px = "\u{e226}" + public static let attachMoney18px = "\u{e227}" + public static let attachMoney24px = "\u{e227}" + public static let attachMoney48px = "\u{e227}" + public static let borderAll18px = "\u{e228}" + public static let borderAll24px = "\u{e228}" + public static let borderAll48px = "\u{e228}" + public static let borderBottom18px = "\u{e229}" + public static let borderBottom24px = "\u{e229}" + public static let borderBottom48px = "\u{e229}" + public static let borderClear18px = "\u{e22a}" + public static let borderClear24px = "\u{e22a}" + public static let borderClear48px = "\u{e22a}" } #endif diff --git a/Sources/MaterialDesignSymbol/MaterialDesignIcon3.swift b/Sources/MaterialDesignSymbol/MaterialDesignIcon3.swift index ed32353..12a38ae 100644 --- a/Sources/MaterialDesignSymbol/MaterialDesignIcon3.swift +++ b/Sources/MaterialDesignSymbol/MaterialDesignIcon3.swift @@ -12,276 +12,276 @@ import UIKit * マテリアルデザインアイコンのコードを返すクラス */ extension MaterialDesignIcon { - public static let borderColor18px = "\u{e91e}" - public static let borderColor24px = "\u{e91f}" - public static let borderColor48px = "\u{e920}" - public static let borderHorizontal18px = "\u{e921}" - public static let borderHorizontal24px = "\u{e922}" - public static let borderHorizontal48px = "\u{e923}" - public static let borderInner18px = "\u{e924}" - public static let borderInner24px = "\u{e925}" - public static let borderInner48px = "\u{e926}" - public static let borderLeft18px = "\u{e927}" - public static let borderLeft24px = "\u{e928}" - public static let borderLeft48px = "\u{e929}" - public static let borderOuter18px = "\u{e92a}" - public static let borderOuter24px = "\u{e92b}" - public static let borderOuter48px = "\u{e92c}" - public static let borderRight18px = "\u{e92d}" - public static let borderRight24px = "\u{e92e}" - public static let borderRight48px = "\u{e92f}" - public static let borderStyle18px = "\u{e930}" - public static let borderStyle24px = "\u{e931}" - public static let borderStyle48px = "\u{e932}" - public static let borderTop18px = "\u{e933}" - public static let borderTop24px = "\u{e934}" - public static let borderTop48px = "\u{e935}" - public static let borderVertical18px = "\u{e936}" - public static let borderVertical24px = "\u{e937}" - public static let borderVertical48px = "\u{e938}" - public static let formatAlignCenter18px = "\u{e939}" - public static let formatAlignCenter24px = "\u{e93a}" - public static let formatAlignCenter48px = "\u{e93b}" - public static let formatAlignJustify18px = "\u{e93c}" - public static let formatAlignJustify24px = "\u{e93d}" - public static let formatAlignJustify48px = "\u{e93e}" - public static let formatAlignLeft18px = "\u{e93f}" - public static let formatAlignLeft24px = "\u{e940}" - public static let formatAlignLeft48px = "\u{e941}" - public static let formatAlignRight18px = "\u{e942}" - public static let formatAlignRight24px = "\u{e943}" - public static let formatAlignRight48px = "\u{e944}" - public static let formatBold18px = "\u{e945}" - public static let formatBold24px = "\u{e946}" - public static let formatBold48px = "\u{e947}" - public static let formatClear18px = "\u{e948}" - public static let formatClear24px = "\u{e949}" - public static let formatClear48px = "\u{e94a}" - public static let formatColorFill18px = "\u{e94b}" - public static let formatColorFill24px = "\u{e94c}" - public static let formatColorFill48px = "\u{e94d}" - public static let formatColorReset18px = "\u{e94e}" - public static let formatColorReset24px = "\u{e94f}" - public static let formatColorReset48px = "\u{e950}" - public static let formatColorText18px = "\u{e951}" - public static let formatColorText24px = "\u{e952}" - public static let formatColorText48px = "\u{e953}" - public static let formatIndentDecrease18px = "\u{e954}" - public static let formatIndentDecrease24px = "\u{e955}" - public static let formatIndentDecrease48px = "\u{e956}" - public static let formatIndentIncrease18px = "\u{e957}" - public static let formatIndentIncrease24px = "\u{e958}" - public static let formatIndentIncrease48px = "\u{e959}" - public static let formatItalic18px = "\u{e95a}" - public static let formatItalic24px = "\u{e95b}" - public static let formatItalic48px = "\u{e95c}" - public static let formatLineSpacing18px = "\u{e95d}" - public static let formatLineSpacing24px = "\u{e95e}" - public static let formatLineSpacing48px = "\u{e95f}" - public static let formatListBulleted18px = "\u{e960}" - public static let formatListBulleted24px = "\u{e961}" - public static let formatListBulleted48px = "\u{e962}" - public static let formatListNumbered18px = "\u{e963}" - public static let formatListNumbered24px = "\u{e964}" - public static let formatListNumbered48px = "\u{e965}" - public static let formatPaint18px = "\u{e966}" - public static let formatPaint24px = "\u{e967}" - public static let formatPaint48px = "\u{e968}" - public static let formatQuote18px = "\u{e969}" - public static let formatQuote24px = "\u{e96a}" - public static let formatQuote48px = "\u{e96b}" - public static let formatSize18px = "\u{e96c}" - public static let formatSize24px = "\u{e96d}" - public static let formatSize48px = "\u{e96e}" - public static let formatStrikethrough18px = "\u{e96f}" - public static let formatStrikethrough24px = "\u{e970}" - public static let formatStrikethrough48px = "\u{e971}" - public static let formatTextdirectionLToR18px = "\u{e972}" - public static let formatTextdirectionLToR24px = "\u{e973}" - public static let formatTextdirectionLToR48px = "\u{e974}" - public static let formatTextdirectionRToL18px = "\u{e975}" - public static let formatTextdirectionRToL24px = "\u{e976}" - public static let formatTextdirectionRToL48px = "\u{e977}" + public static let borderColor18px = "\u{e22b}" + public static let borderColor24px = "\u{e22b}" + public static let borderColor48px = "\u{e22b}" + public static let borderHorizontal18px = "\u{e22c}" + public static let borderHorizontal24px = "\u{e22c}" + public static let borderHorizontal48px = "\u{e22c}" + public static let borderInner18px = "\u{e22d}" + public static let borderInner24px = "\u{e22d}" + public static let borderInner48px = "\u{e22d}" + public static let borderLeft18px = "\u{e22e}" + public static let borderLeft24px = "\u{e22e}" + public static let borderLeft48px = "\u{e22e}" + public static let borderOuter18px = "\u{e22f}" + public static let borderOuter24px = "\u{e22f}" + public static let borderOuter48px = "\u{e22f}" + public static let borderRight18px = "\u{e230}" + public static let borderRight24px = "\u{e230}" + public static let borderRight48px = "\u{e230}" + public static let borderStyle18px = "\u{e231}" + public static let borderStyle24px = "\u{e231}" + public static let borderStyle48px = "\u{e231}" + public static let borderTop18px = "\u{e232}" + public static let borderTop24px = "\u{e232}" + public static let borderTop48px = "\u{e232}" + public static let borderVertical18px = "\u{e233}" + public static let borderVertical24px = "\u{e233}" + public static let borderVertical48px = "\u{e233}" + public static let formatAlignCenter18px = "\u{e234}" + public static let formatAlignCenter24px = "\u{e234}" + public static let formatAlignCenter48px = "\u{e234}" + public static let formatAlignJustify18px = "\u{e235}" + public static let formatAlignJustify24px = "\u{e235}" + public static let formatAlignJustify48px = "\u{e235}" + public static let formatAlignLeft18px = "\u{e236}" + public static let formatAlignLeft24px = "\u{e236}" + public static let formatAlignLeft48px = "\u{e236}" + public static let formatAlignRight18px = "\u{e237}" + public static let formatAlignRight24px = "\u{e237}" + public static let formatAlignRight48px = "\u{e237}" + public static let formatBold18px = "\u{e238}" + public static let formatBold24px = "\u{e238}" + public static let formatBold48px = "\u{e238}" + public static let formatClear18px = "\u{e239}" + public static let formatClear24px = "\u{e239}" + public static let formatClear48px = "\u{e239}" + public static let formatColorFill18px = "\u{e23a}" + public static let formatColorFill24px = "\u{e23a}" + public static let formatColorFill48px = "\u{e23a}" + public static let formatColorReset18px = "\u{e23b}" + public static let formatColorReset24px = "\u{e23b}" + public static let formatColorReset48px = "\u{e23b}" + public static let formatColorText18px = "\u{e23c}" + public static let formatColorText24px = "\u{e23c}" + public static let formatColorText48px = "\u{e23c}" + public static let formatIndentDecrease18px = "\u{e23d}" + public static let formatIndentDecrease24px = "\u{e23d}" + public static let formatIndentDecrease48px = "\u{e23d}" + public static let formatIndentIncrease18px = "\u{e23e}" + public static let formatIndentIncrease24px = "\u{e23e}" + public static let formatIndentIncrease48px = "\u{e23e}" + public static let formatItalic18px = "\u{e23f}" + public static let formatItalic24px = "\u{e23f}" + public static let formatItalic48px = "\u{e23f}" + public static let formatLineSpacing18px = "\u{e240}" + public static let formatLineSpacing24px = "\u{e240}" + public static let formatLineSpacing48px = "\u{e240}" + public static let formatListBulleted18px = "\u{e241}" + public static let formatListBulleted24px = "\u{e241}" + public static let formatListBulleted48px = "\u{e241}" + public static let formatListNumbered18px = "\u{e242}" + public static let formatListNumbered24px = "\u{e242}" + public static let formatListNumbered48px = "\u{e242}" + public static let formatPaint18px = "\u{e243}" + public static let formatPaint24px = "\u{e243}" + public static let formatPaint48px = "\u{e243}" + public static let formatQuote18px = "\u{e244}" + public static let formatQuote24px = "\u{e244}" + public static let formatQuote48px = "\u{e244}" + public static let formatSize18px = "\u{e245}" + public static let formatSize24px = "\u{e245}" + public static let formatSize48px = "\u{e245}" + public static let formatStrikethrough18px = "\u{e246}" + public static let formatStrikethrough24px = "\u{e246}" + public static let formatStrikethrough48px = "\u{e246}" + public static let formatTextdirectionLToR18px = "\u{e247}" + public static let formatTextdirectionLToR24px = "\u{e247}" + public static let formatTextdirectionLToR48px = "\u{e247}" + public static let formatTextdirectionRToL18px = "\u{e248}" + public static let formatTextdirectionRToL24px = "\u{e248}" + public static let formatTextdirectionRToL48px = "\u{e248}" public static let formatUnderline18px = "\u{e978}" public static let formatUnderline24px = "\u{e979}" public static let formatUnderline48px = "\u{e97a}" - public static let functions18px = "\u{e97b}" - public static let functions24px = "\u{e97c}" - public static let functions48px = "\u{e97d}" - public static let insertChart18px = "\u{e97e}" - public static let insertChart24px = "\u{e97f}" - public static let insertChart48px = "\u{e980}" - public static let insertComment18px = "\u{e981}" - public static let insertComment24px = "\u{e982}" - public static let insertComment48px = "\u{e983}" - public static let insertDriveFile18px = "\u{e984}" - public static let insertDriveFile24px = "\u{e985}" - public static let insertDriveFile48px = "\u{e986}" - public static let insertEmoticon18px = "\u{e987}" - public static let insertEmoticon24px = "\u{e988}" - public static let insertEmoticon48px = "\u{e989}" - public static let insertInvitation18px = "\u{e98a}" - public static let insertInvitation24px = "\u{e98b}" - public static let insertInvitation48px = "\u{e98c}" - public static let insertLink18px = "\u{e98d}" - public static let insertLink24px = "\u{e98e}" - public static let insertLink48px = "\u{e98f}" - public static let insertPhoto18px = "\u{e990}" - public static let insertPhoto24px = "\u{e991}" - public static let insertPhoto48px = "\u{e992}" - public static let mergeType18px = "\u{e993}" - public static let mergeType24px = "\u{e994}" - public static let mergeType48px = "\u{e995}" - public static let modeComment18px = "\u{e996}" - public static let modeComment24px = "\u{e997}" - public static let modeComment48px = "\u{e998}" - public static let modeEdit18px = "\u{e999}" - public static let modeEdit24px = "\u{e99a}" - public static let modeEdit48px = "\u{e99b}" - public static let publish18px = "\u{e99c}" - public static let publish24px = "\u{e99d}" - public static let publish48px = "\u{e99e}" - public static let verticalAlignBottom18px = "\u{e99f}" - public static let verticalAlignBottom24px = "\u{e9a0}" - public static let verticalAlignBottom48px = "\u{e9a1}" - public static let verticalAlignCenter18px = "\u{e9a2}" - public static let verticalAlignCenter24px = "\u{e9a3}" - public static let verticalAlignCenter48px = "\u{e9a4}" - public static let verticalAlignTop18px = "\u{e9a5}" - public static let verticalAlignTop24px = "\u{e9a6}" - public static let verticalAlignTop48px = "\u{e9a7}" - public static let wrapText18px = "\u{e9a8}" - public static let wrapText24px = "\u{e9a9}" - public static let wrapText48px = "\u{e9aa}" - public static let attachment18px = "\u{e9ab}" - public static let attachment24px = "\u{e9ac}" - public static let attachment48px = "\u{e9ad}" - public static let cloud24px = "\u{e9ae}" - public static let cloud48px = "\u{e9af}" - public static let cloudCircle18px = "\u{e9b0}" - public static let cloudCircle24px = "\u{e9b1}" - public static let cloudCircle48px = "\u{e9b2}" - public static let cloudDone24px = "\u{e9b3}" - public static let cloudDone48px = "\u{e9b4}" - public static let cloudDownload24px = "\u{e9b5}" - public static let cloudDownload48px = "\u{e9b6}" - public static let cloudOff24px = "\u{e9b7}" - public static let cloudOff48px = "\u{e9b8}" - public static let cloudQueue24px = "\u{e9b9}" - public static let cloudQueue48px = "\u{e9ba}" - public static let cloudUpload24px = "\u{e9bb}" - public static let cloudUpload48px = "\u{e9bc}" - public static let fileDownload24px = "\u{e9bd}" - public static let fileDownload48px = "\u{e9be}" - public static let fileUpload24px = "\u{e9bf}" - public static let fileUpload48px = "\u{e9c0}" - public static let folder18px = "\u{e9c1}" - public static let folder24px = "\u{e9c2}" - public static let folder48px = "\u{e9c3}" - public static let folderOpen18px = "\u{e9c4}" - public static let folderOpen24px = "\u{e9c5}" - public static let folderOpen48px = "\u{e9c6}" - public static let folderShared18px = "\u{e9c7}" - public static let folderShared24px = "\u{e9c8}" - public static let folderShared48px = "\u{e9c9}" - public static let cast24px = "\u{e9ca}" - public static let cast48px = "\u{e9cb}" - public static let castConnected24px = "\u{e9cc}" - public static let castConnected48px = "\u{e9cd}" - public static let computer24px = "\u{e9ce}" - public static let computer48px = "\u{e9cf}" - public static let desktopMac24px = "\u{e9d0}" - public static let desktopMac48px = "\u{e9d1}" - public static let desktopWindows24px = "\u{e9d2}" - public static let desktopWindows48px = "\u{e9d3}" - public static let dock24px = "\u{e9d4}" - public static let dock48px = "\u{e9d5}" - public static let gamepad24px = "\u{e9d6}" - public static let gamepad48px = "\u{e9d7}" - public static let headset24px = "\u{e9d8}" - public static let headset48px = "\u{e9d9}" - public static let headsetMic24px = "\u{e9da}" - public static let headsetMic48px = "\u{e9db}" - public static let keyboard24px = "\u{e9dc}" - public static let keyboard48px = "\u{e9dd}" - public static let keyboardAlt24px = "\u{e9de}" - public static let keyboardAlt48px = "\u{e9df}" - public static let keyboardArrowDown24px = "\u{e9e0}" - public static let keyboardArrowDown48px = "\u{e9e1}" - public static let keyboardArrowLeft24px = "\u{e9e2}" - public static let keyboardArrowLeft48px = "\u{e9e3}" - public static let keyboardArrowRight24px = "\u{e9e4}" - public static let keyboardArrowRight48px = "\u{e9e5}" - public static let keyboardArrowUp24px = "\u{e9e6}" - public static let keyboardArrowUp48px = "\u{e9e7}" - public static let keyboardBackspace24px = "\u{e9e8}" - public static let keyboardBackspace48px = "\u{e9e9}" - public static let keyboardCapslock24px = "\u{e9ea}" - public static let keyboardCapslock48px = "\u{e9eb}" + public static let functions18px = "\u{e24a}" + public static let functions24px = "\u{e24a}" + public static let functions48px = "\u{e24a}" + public static let insertChart18px = "\u{f0cc}" + public static let insertChart24px = "\u{f0cc}" + public static let insertChart48px = "\u{f0cc}" + public static let insertComment18px = "\u{e24c}" + public static let insertComment24px = "\u{e24c}" + public static let insertComment48px = "\u{e24c}" + public static let insertDriveFile18px = "\u{e66d}" + public static let insertDriveFile24px = "\u{e66d}" + public static let insertDriveFile48px = "\u{e66d}" + public static let insertEmoticon18px = "\u{ea22}" + public static let insertEmoticon24px = "\u{ea22}" + public static let insertEmoticon48px = "\u{ea22}" + public static let insertInvitation18px = "\u{e878}" + public static let insertInvitation24px = "\u{e878}" + public static let insertInvitation48px = "\u{e878}" + public static let insertLink18px = "\u{e250}" + public static let insertLink24px = "\u{e250}" + public static let insertLink48px = "\u{e250}" + public static let insertPhoto18px = "\u{e3f4}" + public static let insertPhoto24px = "\u{e3f4}" + public static let insertPhoto48px = "\u{e3f4}" + public static let mergeType18px = "\u{e252}" + public static let mergeType24px = "\u{e252}" + public static let mergeType48px = "\u{e252}" + public static let modeComment18px = "\u{e253}" + public static let modeComment24px = "\u{e253}" + public static let modeComment48px = "\u{e253}" + public static let modeEdit18px = "\u{f097}" + public static let modeEdit24px = "\u{f097}" + public static let modeEdit48px = "\u{f097}" + public static let publish18px = "\u{e255}" + public static let publish24px = "\u{e255}" + public static let publish48px = "\u{e255}" + public static let verticalAlignBottom18px = "\u{e258}" + public static let verticalAlignBottom24px = "\u{e258}" + public static let verticalAlignBottom48px = "\u{e258}" + public static let verticalAlignCenter18px = "\u{e259}" + public static let verticalAlignCenter24px = "\u{e259}" + public static let verticalAlignCenter48px = "\u{e259}" + public static let verticalAlignTop18px = "\u{e25a}" + public static let verticalAlignTop24px = "\u{e25a}" + public static let verticalAlignTop48px = "\u{e25a}" + public static let wrapText18px = "\u{e25b}" + public static let wrapText24px = "\u{e25b}" + public static let wrapText48px = "\u{e25b}" + public static let attachment18px = "\u{e2bc}" + public static let attachment24px = "\u{e2bc}" + public static let attachment48px = "\u{e2bc}" + public static let cloud24px = "\u{f15c}" + public static let cloud48px = "\u{f15c}" + public static let cloudCircle18px = "\u{e2be}" + public static let cloudCircle24px = "\u{e2be}" + public static let cloudCircle48px = "\u{e2be}" + public static let cloudDone24px = "\u{e2bf}" + public static let cloudDone48px = "\u{e2bf}" + public static let cloudDownload24px = "\u{e2c0}" + public static let cloudDownload48px = "\u{e2c0}" + public static let cloudOff24px = "\u{e2c1}" + public static let cloudOff48px = "\u{e2c1}" + public static let cloudQueue24px = "\u{f15c}" + public static let cloudQueue48px = "\u{f15c}" + public static let cloudUpload24px = "\u{e2c3}" + public static let cloudUpload48px = "\u{e2c3}" + public static let fileDownload24px = "\u{f090}" + public static let fileDownload48px = "\u{f090}" + public static let fileUpload24px = "\u{f09b}" + public static let fileUpload48px = "\u{f09b}" + public static let folder18px = "\u{e2c7}" + public static let folder24px = "\u{e2c7}" + public static let folder48px = "\u{e2c7}" + public static let folderOpen18px = "\u{e2c8}" + public static let folderOpen24px = "\u{e2c8}" + public static let folderOpen48px = "\u{e2c8}" + public static let folderShared18px = "\u{e2c9}" + public static let folderShared24px = "\u{e2c9}" + public static let folderShared48px = "\u{e2c9}" + public static let cast24px = "\u{e307}" + public static let cast48px = "\u{e307}" + public static let castConnected24px = "\u{e308}" + public static let castConnected48px = "\u{e308}" + public static let computer24px = "\u{e31e}" + public static let computer48px = "\u{e31e}" + public static let desktopMac24px = "\u{e30b}" + public static let desktopMac48px = "\u{e30b}" + public static let desktopWindows24px = "\u{e30c}" + public static let desktopWindows48px = "\u{e30c}" + public static let dock24px = "\u{f2e0}" + public static let dock48px = "\u{f2e0}" + public static let gamepad24px = "\u{e30f}" + public static let gamepad48px = "\u{e30f}" + public static let headset24px = "\u{f01f}" + public static let headset48px = "\u{f01f}" + public static let headsetMic24px = "\u{e311}" + public static let headsetMic48px = "\u{e311}" + public static let keyboard24px = "\u{e312}" + public static let keyboard48px = "\u{e312}" + public static let keyboardAlt24px = "\u{f028}" + public static let keyboardAlt48px = "\u{f028}" + public static let keyboardArrowDown24px = "\u{e313}" + public static let keyboardArrowDown48px = "\u{e313}" + public static let keyboardArrowLeft24px = "\u{e314}" + public static let keyboardArrowLeft48px = "\u{e314}" + public static let keyboardArrowRight24px = "\u{e315}" + public static let keyboardArrowRight48px = "\u{e315}" + public static let keyboardArrowUp24px = "\u{e316}" + public static let keyboardArrowUp48px = "\u{e316}" + public static let keyboardBackspace24px = "\u{e317}" + public static let keyboardBackspace48px = "\u{e317}" + public static let keyboardCapslock24px = "\u{e318}" + public static let keyboardCapslock48px = "\u{e318}" public static let keyboardControl24px = "\u{e9ec}" public static let keyboardControl48px = "\u{e9ed}" - public static let keyboardHide24px = "\u{e9ee}" - public static let keyboardHide48px = "\u{e9ef}" - public static let keyboardReturn24px = "\u{e9f0}" - public static let keyboardReturn48px = "\u{e9f1}" - public static let keyboardTab24px = "\u{e9f2}" - public static let keyboardTab48px = "\u{e9f3}" - public static let keyboardVoice24px = "\u{e9f4}" - public static let keyboardVoice48px = "\u{e9f5}" - public static let laptop24px = "\u{e9f6}" - public static let laptop48px = "\u{e9f7}" - public static let laptopChromebook24px = "\u{e9f8}" - public static let laptopChromebook48px = "\u{e9f9}" - public static let laptopMac24px = "\u{e9fa}" - public static let laptopMac48px = "\u{e9fb}" - public static let laptopWindows24px = "\u{e9fc}" - public static let laptopWindows48px = "\u{e9fd}" - public static let memory24px = "\u{e9fe}" - public static let memory48px = "\u{e9ff}" - public static let mouse24px = "\u{ea00}" - public static let mouse48px = "\u{ea01}" - public static let phoneAndroid24px = "\u{ea02}" - public static let phoneAndroid48px = "\u{ea03}" - public static let phoneIphone24px = "\u{ea04}" - public static let phoneIphone48px = "\u{ea05}" - public static let phonelink24px = "\u{ea06}" - public static let phonelink48px = "\u{ea07}" - public static let phonelinkOff24px = "\u{ea08}" - public static let phonelinkOff48px = "\u{ea09}" - public static let security24px = "\u{ea0a}" - public static let security48px = "\u{ea0b}" - public static let simCard24px = "\u{ea0c}" - public static let simCard48px = "\u{ea0d}" - public static let smartphone24px = "\u{ea0e}" - public static let smartphone48px = "\u{ea0f}" - public static let speaker24px = "\u{ea10}" - public static let speaker48px = "\u{ea11}" - public static let tablet24px = "\u{ea12}" - public static let tablet48px = "\u{ea13}" - public static let tabletAndroid24px = "\u{ea14}" - public static let tabletAndroid48px = "\u{ea15}" - public static let tabletMac24px = "\u{ea16}" - public static let tabletMac48px = "\u{ea17}" - public static let tv24px = "\u{ea18}" - public static let tv48px = "\u{ea19}" - public static let watch24px = "\u{ea1a}" - public static let watch48px = "\u{ea1b}" - public static let addToPhotos24px = "\u{ea1c}" - public static let addToPhotos48px = "\u{ea1d}" - public static let adjust24px = "\u{ea1e}" - public static let adjust48px = "\u{ea1f}" - public static let assistantPhoto24px = "\u{ea20}" - public static let assistantPhoto48px = "\u{ea21}" - public static let audiotrack24px = "\u{ea22}" - public static let audiotrack48px = "\u{ea23}" - public static let blurCircular24px = "\u{ea24}" - public static let blurCircular48px = "\u{ea25}" - public static let blurLinear24px = "\u{ea26}" - public static let blurLinear48px = "\u{ea27}" - public static let blurOff24px = "\u{ea28}" - public static let blurOff48px = "\u{ea29}" - public static let blurOn24px = "\u{ea2a}" - public static let blurOn48px = "\u{ea2b}" + public static let keyboardHide24px = "\u{e31a}" + public static let keyboardHide48px = "\u{e31a}" + public static let keyboardReturn24px = "\u{e31b}" + public static let keyboardReturn48px = "\u{e31b}" + public static let keyboardTab24px = "\u{e31c}" + public static let keyboardTab48px = "\u{e31c}" + public static let keyboardVoice24px = "\u{e31d}" + public static let keyboardVoice48px = "\u{e31d}" + public static let laptop24px = "\u{e31e}" + public static let laptop48px = "\u{e31e}" + public static let laptopChromebook24px = "\u{e31f}" + public static let laptopChromebook48px = "\u{e31f}" + public static let laptopMac24px = "\u{e320}" + public static let laptopMac48px = "\u{e320}" + public static let laptopWindows24px = "\u{e321}" + public static let laptopWindows48px = "\u{e321}" + public static let memory24px = "\u{e322}" + public static let memory48px = "\u{e322}" + public static let mouse24px = "\u{e323}" + public static let mouse48px = "\u{e323}" + public static let phoneAndroid24px = "\u{f2db}" + public static let phoneAndroid48px = "\u{f2db}" + public static let phoneIphone24px = "\u{f2da}" + public static let phoneIphone48px = "\u{f2da}" + public static let phonelink24px = "\u{e326}" + public static let phonelink48px = "\u{e326}" + public static let phonelinkOff24px = "\u{f7a5}" + public static let phonelinkOff48px = "\u{f7a5}" + public static let security24px = "\u{e32a}" + public static let security48px = "\u{e32a}" + public static let simCard24px = "\u{e32b}" + public static let simCard48px = "\u{e32b}" + public static let smartphone24px = "\u{e7ba}" + public static let smartphone48px = "\u{e7ba}" + public static let speaker24px = "\u{e32d}" + public static let speaker48px = "\u{e32d}" + public static let tablet24px = "\u{e32f}" + public static let tablet48px = "\u{e32f}" + public static let tabletAndroid24px = "\u{e330}" + public static let tabletAndroid48px = "\u{e330}" + public static let tabletMac24px = "\u{e331}" + public static let tabletMac48px = "\u{e331}" + public static let tv24px = "\u{e63b}" + public static let tv48px = "\u{e63b}" + public static let watch24px = "\u{e334}" + public static let watch48px = "\u{e334}" + public static let addToPhotos24px = "\u{e39d}" + public static let addToPhotos48px = "\u{e39d}" + public static let adjust24px = "\u{e39e}" + public static let adjust48px = "\u{e39e}" + public static let assistantPhoto24px = "\u{f0c6}" + public static let assistantPhoto48px = "\u{f0c6}" + public static let audiotrack24px = "\u{e405}" + public static let audiotrack48px = "\u{e405}" + public static let blurCircular24px = "\u{e3a2}" + public static let blurCircular48px = "\u{e3a2}" + public static let blurLinear24px = "\u{e3a3}" + public static let blurLinear48px = "\u{e3a3}" + public static let blurOff24px = "\u{e3a4}" + public static let blurOff48px = "\u{e3a4}" + public static let blurOn24px = "\u{e3a5}" + public static let blurOn48px = "\u{e3a5}" public static let brightness124px = "\u{ea2c}" public static let brightness148px = "\u{ea2d}" public static let brightness224px = "\u{ea2e}" @@ -296,64 +296,64 @@ extension MaterialDesignIcon { public static let brightness648px = "\u{ea37}" public static let brightness724px = "\u{ea38}" public static let brightness748px = "\u{ea39}" - public static let brush24px = "\u{ea3a}" - public static let brush48px = "\u{ea3b}" - public static let camera24px = "\u{ea3c}" - public static let camera48px = "\u{ea3d}" - public static let cameraAlt24px = "\u{ea3e}" - public static let cameraAlt48px = "\u{ea3f}" - public static let cameraFront24px = "\u{ea40}" - public static let cameraFront48px = "\u{ea41}" - public static let cameraRear24px = "\u{ea42}" - public static let cameraRear48px = "\u{ea43}" - public static let cameraRoll24px = "\u{ea44}" - public static let cameraRoll48px = "\u{ea45}" - public static let centerFocusStrong24px = "\u{ea46}" - public static let centerFocusStrong48px = "\u{ea47}" - public static let centerFocusWeak24px = "\u{ea48}" - public static let centerFocusWeak48px = "\u{ea49}" - public static let collections24px = "\u{ea4a}" - public static let collections48px = "\u{ea4b}" - public static let colorLens24px = "\u{ea4c}" - public static let colorLens48px = "\u{ea4d}" - public static let colorize24px = "\u{ea4e}" - public static let colorize48px = "\u{ea4f}" - public static let compare24px = "\u{ea50}" - public static let compare48px = "\u{ea51}" - public static let controlPoint24px = "\u{ea52}" - public static let controlPoint48px = "\u{ea53}" - public static let controlPointDuplicate24px = "\u{ea54}" - public static let controlPointDuplicate48px = "\u{ea55}" - public static let crop3224px = "\u{ea56}" - public static let crop3248px = "\u{ea57}" - public static let crop5424px = "\u{ea58}" - public static let crop5448px = "\u{ea59}" - public static let crop7524px = "\u{ea5a}" - public static let crop7548px = "\u{ea5b}" - public static let crop16924px = "\u{ea5c}" - public static let crop16948px = "\u{ea5d}" - public static let crop24px = "\u{ea5e}" - public static let crop48px = "\u{ea5f}" - public static let cropDin24px = "\u{ea60}" - public static let cropDin48px = "\u{ea61}" - public static let cropFree24px = "\u{ea62}" - public static let cropFree48px = "\u{ea63}" - public static let cropLandscape24px = "\u{ea64}" - public static let cropLandscape48px = "\u{ea65}" - public static let cropOriginal24px = "\u{ea66}" - public static let cropOriginal48px = "\u{ea67}" - public static let cropPortrait24px = "\u{ea68}" - public static let cropPortrait48px = "\u{ea69}" - public static let cropSquare24px = "\u{ea6a}" - public static let cropSquare48px = "\u{ea6b}" - public static let dehaze24px = "\u{ea6c}" - public static let dehaze48px = "\u{ea6d}" - public static let details24px = "\u{ea6e}" - public static let details48px = "\u{ea6f}" - public static let edit24px = "\u{ea70}" - public static let edit48px = "\u{ea71}" - public static let exposure24px = "\u{ea72}" - public static let exposure48px = "\u{ea73}" + public static let brush24px = "\u{e3ae}" + public static let brush48px = "\u{e3ae}" + public static let camera24px = "\u{e3af}" + public static let camera48px = "\u{e3af}" + public static let cameraAlt24px = "\u{e412}" + public static let cameraAlt48px = "\u{e412}" + public static let cameraFront24px = "\u{f2c9}" + public static let cameraFront48px = "\u{f2c9}" + public static let cameraRear24px = "\u{f2c8}" + public static let cameraRear48px = "\u{f2c8}" + public static let cameraRoll24px = "\u{e3b3}" + public static let cameraRoll48px = "\u{e3b3}" + public static let centerFocusStrong24px = "\u{e3b4}" + public static let centerFocusStrong48px = "\u{e3b4}" + public static let centerFocusWeak24px = "\u{e3b5}" + public static let centerFocusWeak48px = "\u{e3b5}" + public static let collections24px = "\u{e3d3}" + public static let collections48px = "\u{e3d3}" + public static let colorLens24px = "\u{e40a}" + public static let colorLens48px = "\u{e40a}" + public static let colorize24px = "\u{e3b8}" + public static let colorize48px = "\u{e3b8}" + public static let compare24px = "\u{e3b9}" + public static let compare48px = "\u{e3b9}" + public static let controlPoint24px = "\u{e3ba}" + public static let controlPoint48px = "\u{e3ba}" + public static let controlPointDuplicate24px = "\u{e3bb}" + public static let controlPointDuplicate48px = "\u{e3bb}" + public static let crop3224px = "\u{e3be}" + public static let crop3248px = "\u{e3be}" + public static let crop5424px = "\u{e3be}" + public static let crop5448px = "\u{e3be}" + public static let crop7524px = "\u{e3be}" + public static let crop7548px = "\u{e3be}" + public static let crop16924px = "\u{e3be}" + public static let crop16948px = "\u{e3be}" + public static let crop24px = "\u{e3be}" + public static let crop48px = "\u{e3be}" + public static let cropDin24px = "\u{e3c6}" + public static let cropDin48px = "\u{e3c6}" + public static let cropFree24px = "\u{e3c2}" + public static let cropFree48px = "\u{e3c2}" + public static let cropLandscape24px = "\u{e3c3}" + public static let cropLandscape48px = "\u{e3c3}" + public static let cropOriginal24px = "\u{e3f4}" + public static let cropOriginal48px = "\u{e3f4}" + public static let cropPortrait24px = "\u{e3c5}" + public static let cropPortrait48px = "\u{e3c5}" + public static let cropSquare24px = "\u{e3c6}" + public static let cropSquare48px = "\u{e3c6}" + public static let dehaze24px = "\u{e3c7}" + public static let dehaze48px = "\u{e3c7}" + public static let details24px = "\u{e3c8}" + public static let details48px = "\u{e3c8}" + public static let edit24px = "\u{f097}" + public static let edit48px = "\u{f097}" + public static let exposure24px = "\u{e3f6}" + public static let exposure48px = "\u{e3f6}" public static let exposureMinus124px = "\u{ea74}" public static let exposureMinus148px = "\u{ea75}" public static let exposureMinus224px = "\u{ea76}" @@ -362,54 +362,54 @@ extension MaterialDesignIcon { public static let exposurePlus148px = "\u{ea79}" public static let exposurePlus224px = "\u{ea7a}" public static let exposurePlus248px = "\u{ea7b}" - public static let exposureZero24px = "\u{ea7c}" - public static let exposureZero48px = "\u{ea7d}" - public static let filter124px = "\u{ea7e}" - public static let filter148px = "\u{ea7f}" - public static let filter224px = "\u{ea80}" - public static let filter248px = "\u{ea81}" - public static let filter324px = "\u{ea82}" - public static let filter348px = "\u{ea83}" - public static let filter424px = "\u{ea84}" - public static let filter448px = "\u{ea85}" - public static let filter524px = "\u{ea86}" - public static let filter548px = "\u{ea87}" - public static let filter624px = "\u{ea88}" - public static let filter648px = "\u{ea89}" - public static let filter724px = "\u{ea8a}" - public static let filter748px = "\u{ea8b}" - public static let filter824px = "\u{ea8c}" - public static let filter848px = "\u{ea8d}" - public static let filter924px = "\u{ea8e}" - public static let filter948px = "\u{ea8f}" + public static let exposureZero24px = "\u{e3cf}" + public static let exposureZero48px = "\u{e3cf}" + public static let filter124px = "\u{e3d3}" + public static let filter148px = "\u{e3d3}" + public static let filter224px = "\u{e3d3}" + public static let filter248px = "\u{e3d3}" + public static let filter324px = "\u{e3d3}" + public static let filter348px = "\u{e3d3}" + public static let filter424px = "\u{e3d3}" + public static let filter448px = "\u{e3d3}" + public static let filter524px = "\u{e3d3}" + public static let filter548px = "\u{e3d3}" + public static let filter624px = "\u{e3d3}" + public static let filter648px = "\u{e3d3}" + public static let filter724px = "\u{e3d3}" + public static let filter748px = "\u{e3d3}" + public static let filter824px = "\u{e3d3}" + public static let filter848px = "\u{e3d3}" + public static let filter924px = "\u{e3d3}" + public static let filter948px = "\u{e3d3}" public static let filter9Plus24px = "\u{ea90}" public static let filter9Plus48px = "\u{ea91}" - public static let filter24px = "\u{ea92}" - public static let filter48px = "\u{ea93}" - public static let filterBAndW24px = "\u{ea94}" - public static let filterBAndW48px = "\u{ea95}" - public static let filterCenterFocus24px = "\u{ea96}" - public static let filterCenterFocus48px = "\u{ea97}" - public static let filterDrama24px = "\u{ea98}" - public static let filterDrama48px = "\u{ea99}" - public static let filterFrames24px = "\u{ea9a}" - public static let filterFrames48px = "\u{ea9b}" - public static let filterHdr24px = "\u{ea9c}" - public static let filterHdr48px = "\u{ea9d}" - public static let filterNone24px = "\u{ea9e}" - public static let filterNone48px = "\u{ea9f}" - public static let filterTiltShift24px = "\u{eaa0}" - public static let filterTiltShift48px = "\u{eaa1}" - public static let filterVintage24px = "\u{eaa2}" - public static let filterVintage48px = "\u{eaa3}" - public static let flare24px = "\u{eaa4}" - public static let flare48px = "\u{eaa5}" - public static let flashAuto24px = "\u{eaa6}" - public static let flashAuto48px = "\u{eaa7}" - public static let flashOff24px = "\u{eaa8}" - public static let flashOff48px = "\u{eaa9}" - public static let flashOn24px = "\u{eaaa}" - public static let flashOn48px = "\u{eaab}" - public static let flip24px = "\u{eaac}" + public static let filter24px = "\u{e3d3}" + public static let filter48px = "\u{e3d3}" + public static let filterBAndW24px = "\u{e3db}" + public static let filterBAndW48px = "\u{e3db}" + public static let filterCenterFocus24px = "\u{e3dc}" + public static let filterCenterFocus48px = "\u{e3dc}" + public static let filterDrama24px = "\u{e3dd}" + public static let filterDrama48px = "\u{e3dd}" + public static let filterFrames24px = "\u{e3de}" + public static let filterFrames48px = "\u{e3de}" + public static let filterHdr24px = "\u{e3df}" + public static let filterHdr48px = "\u{e3df}" + public static let filterNone24px = "\u{e3e0}" + public static let filterNone48px = "\u{e3e0}" + public static let filterTiltShift24px = "\u{e3e2}" + public static let filterTiltShift48px = "\u{e3e2}" + public static let filterVintage24px = "\u{e3e3}" + public static let filterVintage48px = "\u{e3e3}" + public static let flare24px = "\u{e3e4}" + public static let flare48px = "\u{e3e4}" + public static let flashAuto24px = "\u{e3e5}" + public static let flashAuto48px = "\u{e3e5}" + public static let flashOff24px = "\u{e3e6}" + public static let flashOff48px = "\u{e3e6}" + public static let flashOn24px = "\u{e3e7}" + public static let flashOn48px = "\u{e3e7}" + public static let flip24px = "\u{e3e8}" } #endif diff --git a/Sources/MaterialDesignSymbol/MaterialDesignIcon4.swift b/Sources/MaterialDesignSymbol/MaterialDesignIcon4.swift index 4fc5a2a..97c6ebf 100644 --- a/Sources/MaterialDesignSymbol/MaterialDesignIcon4.swift +++ b/Sources/MaterialDesignSymbol/MaterialDesignIcon4.swift @@ -12,404 +12,404 @@ import UIKit * マテリアルデザインアイコンのコードを返すクラス */ extension MaterialDesignIcon { - public static let flip48px = "\u{eaad}" - public static let gradient24px = "\u{eaae}" - public static let gradient48px = "\u{eaaf}" - public static let grain24px = "\u{eab0}" - public static let grain48px = "\u{eab1}" - public static let gridOff24px = "\u{eab2}" - public static let gridOff48px = "\u{eab3}" - public static let gridOn24px = "\u{eab4}" - public static let gridOn48px = "\u{eab5}" - public static let hdrOff24px = "\u{eab6}" - public static let hdrOff48px = "\u{eab7}" - public static let hdrOn24px = "\u{eab8}" - public static let hdrOn48px = "\u{eab9}" - public static let hdrStrong24px = "\u{eaba}" - public static let hdrStrong48px = "\u{eabb}" - public static let hdrWeak24px = "\u{eabc}" - public static let hdrWeak48px = "\u{eabd}" - public static let healing24px = "\u{eabe}" - public static let healing48px = "\u{eabf}" - public static let image24px = "\u{eac0}" - public static let image48px = "\u{eac1}" - public static let imageAspectRatio24px = "\u{eac2}" - public static let imageAspectRatio48px = "\u{eac3}" - public static let iso24px = "\u{eac4}" - public static let iso48px = "\u{eac5}" - public static let landscape24px = "\u{eac6}" - public static let landscape48px = "\u{eac7}" - public static let leakAdd24px = "\u{eac8}" - public static let leakAdd48px = "\u{eac9}" - public static let leakRemove24px = "\u{eaca}" - public static let leakRemove48px = "\u{eacb}" - public static let lens24px = "\u{eacc}" - public static let lens48px = "\u{eacd}" - public static let looks324px = "\u{eace}" - public static let looks348px = "\u{eacf}" - public static let looks424px = "\u{ead0}" - public static let looks448px = "\u{ead1}" - public static let looks524px = "\u{ead2}" - public static let looks548px = "\u{ead3}" - public static let looks624px = "\u{ead4}" - public static let looks648px = "\u{ead5}" - public static let looks24px = "\u{ead6}" - public static let looks48px = "\u{ead7}" - public static let looksOne24px = "\u{ead8}" - public static let looksOne48px = "\u{ead9}" - public static let looksTwo24px = "\u{eada}" - public static let looksTwo48px = "\u{eadb}" - public static let loupe24px = "\u{eadc}" - public static let loupe48px = "\u{eadd}" - public static let movieCreation24px = "\u{eade}" - public static let movieCreation48px = "\u{eadf}" - public static let nature24px = "\u{eae0}" - public static let nature48px = "\u{eae1}" - public static let naturePeople24px = "\u{eae2}" - public static let naturePeople48px = "\u{eae3}" - public static let navigateBefore24px = "\u{eae4}" - public static let navigateBefore48px = "\u{eae5}" - public static let navigateNext24px = "\u{eae6}" - public static let navigateNext48px = "\u{eae7}" - public static let palette24px = "\u{eae8}" - public static let palette48px = "\u{eae9}" - public static let panorama24px = "\u{eaea}" - public static let panorama48px = "\u{eaeb}" + public static let flip48px = "\u{e3e8}" + public static let gradient24px = "\u{e3e9}" + public static let gradient48px = "\u{e3e9}" + public static let grain24px = "\u{e3ea}" + public static let grain48px = "\u{e3ea}" + public static let gridOff24px = "\u{e3eb}" + public static let gridOff48px = "\u{e3eb}" + public static let gridOn24px = "\u{e3ec}" + public static let gridOn48px = "\u{e3ec}" + public static let hdrOff24px = "\u{e3ed}" + public static let hdrOff48px = "\u{e3ed}" + public static let hdrOn24px = "\u{e3ee}" + public static let hdrOn48px = "\u{e3ee}" + public static let hdrStrong24px = "\u{e3f1}" + public static let hdrStrong48px = "\u{e3f1}" + public static let hdrWeak24px = "\u{e3f2}" + public static let hdrWeak48px = "\u{e3f2}" + public static let healing24px = "\u{e3f3}" + public static let healing48px = "\u{e3f3}" + public static let image24px = "\u{e3f4}" + public static let image48px = "\u{e3f4}" + public static let imageAspectRatio24px = "\u{e3f5}" + public static let imageAspectRatio48px = "\u{e3f5}" + public static let iso24px = "\u{e3f6}" + public static let iso48px = "\u{e3f6}" + public static let landscape24px = "\u{e564}" + public static let landscape48px = "\u{e564}" + public static let leakAdd24px = "\u{e3f8}" + public static let leakAdd48px = "\u{e3f8}" + public static let leakRemove24px = "\u{e3f9}" + public static let leakRemove48px = "\u{e3f9}" + public static let lens24px = "\u{e3fa}" + public static let lens48px = "\u{e3fa}" + public static let looks324px = "\u{e3fc}" + public static let looks348px = "\u{e3fc}" + public static let looks424px = "\u{e3fc}" + public static let looks448px = "\u{e3fc}" + public static let looks524px = "\u{e3fc}" + public static let looks548px = "\u{e3fc}" + public static let looks624px = "\u{e3fc}" + public static let looks648px = "\u{e3fc}" + public static let looks24px = "\u{e3fc}" + public static let looks48px = "\u{e3fc}" + public static let looksOne24px = "\u{e400}" + public static let looksOne48px = "\u{e400}" + public static let looksTwo24px = "\u{e401}" + public static let looksTwo48px = "\u{e401}" + public static let loupe24px = "\u{e402}" + public static let loupe48px = "\u{e402}" + public static let movieCreation24px = "\u{e404}" + public static let movieCreation48px = "\u{e404}" + public static let nature24px = "\u{e406}" + public static let nature48px = "\u{e406}" + public static let naturePeople24px = "\u{e407}" + public static let naturePeople48px = "\u{e407}" + public static let navigateBefore24px = "\u{e5cb}" + public static let navigateBefore48px = "\u{e5cb}" + public static let navigateNext24px = "\u{e5cc}" + public static let navigateNext48px = "\u{e5cc}" + public static let palette24px = "\u{e40a}" + public static let palette48px = "\u{e40a}" + public static let panorama24px = "\u{e40b}" + public static let panorama48px = "\u{e40b}" public static let panoramaFisheye24px = "\u{eaec}" public static let panoramaFisheye48px = "\u{eaed}" - public static let panoramaHorizontal24px = "\u{eaee}" - public static let panoramaHorizontal48px = "\u{eaef}" - public static let panoramaVertical24px = "\u{eaf0}" - public static let panoramaVertical48px = "\u{eaf1}" - public static let panoramaWideAngle24px = "\u{eaf2}" - public static let panoramaWideAngle48px = "\u{eaf3}" - public static let photo24px = "\u{eaf4}" - public static let photo48px = "\u{eaf5}" - public static let photoAlbum24px = "\u{eaf6}" - public static let photoAlbum48px = "\u{eaf7}" - public static let photoCamera24px = "\u{eaf8}" - public static let photoCamera48px = "\u{eaf9}" - public static let photoLibrary24px = "\u{eafa}" - public static let photoLibrary48px = "\u{eafb}" - public static let portrait24px = "\u{eafc}" - public static let portrait48px = "\u{eafd}" - public static let removeRedEye24px = "\u{eafe}" - public static let removeRedEye48px = "\u{eaff}" - public static let rotateLeft24px = "\u{eb00}" - public static let rotateLeft48px = "\u{eb01}" - public static let rotateRight24px = "\u{eb02}" - public static let rotateRight48px = "\u{eb03}" - public static let slideshow24px = "\u{eb04}" - public static let slideshow48px = "\u{eb05}" - public static let straighten24px = "\u{eb06}" - public static let straighten48px = "\u{eb07}" - public static let style24px = "\u{eb08}" - public static let style48px = "\u{eb09}" - public static let switchCamera24px = "\u{eb0a}" - public static let switchCamera48px = "\u{eb0b}" - public static let switchVideo24px = "\u{eb0c}" - public static let switchVideo48px = "\u{eb0d}" - public static let tagFaces24px = "\u{eb0e}" - public static let tagFaces48px = "\u{eb0f}" - public static let texture24px = "\u{eb10}" - public static let texture48px = "\u{eb11}" - public static let timelapse24px = "\u{eb12}" - public static let timelapse48px = "\u{eb13}" - public static let timer324px = "\u{eb14}" - public static let timer348px = "\u{eb15}" - public static let timer1024px = "\u{eb16}" - public static let timer1048px = "\u{eb17}" - public static let timer24px = "\u{eb18}" - public static let timer48px = "\u{eb19}" + public static let panoramaHorizontal24px = "\u{e40d}" + public static let panoramaHorizontal48px = "\u{e40d}" + public static let panoramaVertical24px = "\u{e40e}" + public static let panoramaVertical48px = "\u{e40e}" + public static let panoramaWideAngle24px = "\u{e40f}" + public static let panoramaWideAngle48px = "\u{e40f}" + public static let photo24px = "\u{e432}" + public static let photo48px = "\u{e432}" + public static let photoAlbum24px = "\u{e411}" + public static let photoAlbum48px = "\u{e411}" + public static let photoCamera24px = "\u{e412}" + public static let photoCamera48px = "\u{e412}" + public static let photoLibrary24px = "\u{e413}" + public static let photoLibrary48px = "\u{e413}" + public static let portrait24px = "\u{e851}" + public static let portrait48px = "\u{e851}" + public static let removeRedEye24px = "\u{e8f4}" + public static let removeRedEye48px = "\u{e8f4}" + public static let rotateLeft24px = "\u{e419}" + public static let rotateLeft48px = "\u{e419}" + public static let rotateRight24px = "\u{e41a}" + public static let rotateRight48px = "\u{e41a}" + public static let slideshow24px = "\u{e41b}" + public static let slideshow48px = "\u{e41b}" + public static let straighten24px = "\u{e41c}" + public static let straighten48px = "\u{e41c}" + public static let style24px = "\u{e41d}" + public static let style48px = "\u{e41d}" + public static let switchCamera24px = "\u{e41e}" + public static let switchCamera48px = "\u{e41e}" + public static let switchVideo24px = "\u{e41f}" + public static let switchVideo48px = "\u{e41f}" + public static let tagFaces24px = "\u{ea22}" + public static let tagFaces48px = "\u{ea22}" + public static let texture24px = "\u{e421}" + public static let texture48px = "\u{e421}" + public static let timelapse24px = "\u{e422}" + public static let timelapse48px = "\u{e422}" + public static let timer324px = "\u{e425}" + public static let timer348px = "\u{e425}" + public static let timer1024px = "\u{e425}" + public static let timer1048px = "\u{e425}" + public static let timer24px = "\u{e425}" + public static let timer48px = "\u{e425}" public static let timerAuto24px = "\u{eb1a}" public static let timerAuto48px = "\u{eb1b}" - public static let timerOff24px = "\u{eb1c}" - public static let timerOff48px = "\u{eb1d}" - public static let tonality24px = "\u{eb1e}" - public static let tonality48px = "\u{eb1f}" - public static let transform24px = "\u{eb20}" - public static let transform48px = "\u{eb21}" - public static let tune24px = "\u{eb22}" - public static let tune48px = "\u{eb23}" - public static let wbAuto24px = "\u{eb24}" - public static let wbAuto48px = "\u{eb25}" - public static let wbCloudy24px = "\u{eb26}" - public static let wbCloudy48px = "\u{eb27}" - public static let wbIncandescent24px = "\u{eb28}" - public static let wbIncandescent48px = "\u{eb29}" + public static let timerOff24px = "\u{e426}" + public static let timerOff48px = "\u{e426}" + public static let tonality24px = "\u{e427}" + public static let tonality48px = "\u{e427}" + public static let transform24px = "\u{e428}" + public static let transform48px = "\u{e428}" + public static let tune24px = "\u{e429}" + public static let tune48px = "\u{e429}" + public static let wbAuto24px = "\u{e42c}" + public static let wbAuto48px = "\u{e42c}" + public static let wbCloudy24px = "\u{f15c}" + public static let wbCloudy48px = "\u{f15c}" + public static let wbIncandescent24px = "\u{e42e}" + public static let wbIncandescent48px = "\u{e42e}" public static let wbIrradescent24px = "\u{eb2a}" public static let wbIrradescent48px = "\u{eb2b}" - public static let wbSunny24px = "\u{eb2c}" - public static let wbSunny48px = "\u{eb2d}" - public static let checkBox24px = "\u{eb2e}" - public static let checkBox48px = "\u{eb2f}" - public static let checkBoxOutlineBlank24px = "\u{eb30}" - public static let checkBoxOutlineBlank48px = "\u{eb31}" + public static let wbSunny24px = "\u{e430}" + public static let wbSunny48px = "\u{e430}" + public static let checkBox24px = "\u{e834}" + public static let checkBox48px = "\u{e834}" + public static let checkBoxOutlineBlank24px = "\u{e835}" + public static let checkBoxOutlineBlank48px = "\u{e835}" public static let radioButtonOff24px = "\u{eb32}" public static let radioButtonOff48px = "\u{eb33}" public static let radioButtonOn24px = "\u{eb34}" public static let radioButtonOn48px = "\u{eb35}" - public static let star24px = "\u{eb36}" - public static let starHalf24px = "\u{eb37}" - public static let starOutline24px = "\u{eb38}" - public static let beenhere24px = "\u{eb39}" - public static let beenhere48px = "\u{eb3a}" - public static let directions24px = "\u{eb3b}" - public static let directions48px = "\u{eb3c}" - public static let directionsBike24px = "\u{eb3d}" - public static let directionsBike48px = "\u{eb3e}" - public static let directionsBus24px = "\u{eb3f}" - public static let directionsBus48px = "\u{eb40}" - public static let directionsCar24px = "\u{eb41}" - public static let directionsCar48px = "\u{eb42}" + public static let star24px = "\u{f09a}" + public static let starHalf24px = "\u{e839}" + public static let starOutline24px = "\u{f09a}" + public static let beenhere24px = "\u{e52d}" + public static let beenhere48px = "\u{e52d}" + public static let directions24px = "\u{e52e}" + public static let directions48px = "\u{e52e}" + public static let directionsBike24px = "\u{e52f}" + public static let directionsBike48px = "\u{e52f}" + public static let directionsBus24px = "\u{eff6}" + public static let directionsBus48px = "\u{eff6}" + public static let directionsCar24px = "\u{eff7}" + public static let directionsCar48px = "\u{eff7}" public static let directionsFerry24px = "\u{eb43}" public static let directionsFerry48px = "\u{eb44}" - public static let directionsSubway24px = "\u{eb45}" - public static let directionsSubway48px = "\u{eb46}" + public static let directionsSubway24px = "\u{effa}" + public static let directionsSubway48px = "\u{effa}" public static let directionsTrain24px = "\u{eb47}" public static let directionsTrain48px = "\u{eb48}" - public static let directionsTransit24px = "\u{eb49}" - public static let directionsTransit48px = "\u{eb4a}" - public static let directionsWalk24px = "\u{eb4b}" - public static let directionsWalk48px = "\u{eb4c}" - public static let flight24px = "\u{eb4d}" - public static let flight48px = "\u{eb4e}" - public static let hotel24px = "\u{eb4f}" - public static let hotel48px = "\u{eb50}" - public static let layers24px = "\u{eb51}" - public static let layers48px = "\u{eb52}" - public static let layersClear24px = "\u{eb53}" - public static let layersClear48px = "\u{eb54}" - public static let localAirport24px = "\u{eb55}" - public static let localAirport48px = "\u{eb56}" - public static let localAtm24px = "\u{eb57}" - public static let localAtm48px = "\u{eb58}" + public static let directionsTransit24px = "\u{effa}" + public static let directionsTransit48px = "\u{effa}" + public static let directionsWalk24px = "\u{e536}" + public static let directionsWalk48px = "\u{e536}" + public static let flight24px = "\u{e539}" + public static let flight48px = "\u{e539}" + public static let hotel24px = "\u{e549}" + public static let hotel48px = "\u{e549}" + public static let layers24px = "\u{e53b}" + public static let layers48px = "\u{e53b}" + public static let layersClear24px = "\u{e53c}" + public static let layersClear48px = "\u{e53c}" + public static let localAirport24px = "\u{e53d}" + public static let localAirport48px = "\u{e53d}" + public static let localAtm24px = "\u{e53e}" + public static let localAtm48px = "\u{e53e}" public static let localAttraction24px = "\u{eb59}" public static let localAttraction48px = "\u{eb5a}" - public static let localBar24px = "\u{eb5b}" - public static let localBar48px = "\u{eb5c}" - public static let localCafe24px = "\u{eb5d}" - public static let localCafe48px = "\u{eb5e}" - public static let localCarWash24px = "\u{eb5f}" - public static let localCarWash48px = "\u{eb60}" - public static let localConvenienceStore24px = "\u{eb61}" - public static let localConvenienceStore48px = "\u{eb62}" - public static let localDrink24px = "\u{eb63}" - public static let localDrink48px = "\u{eb64}" - public static let localFlorist24px = "\u{eb65}" - public static let localFlorist48px = "\u{eb66}" - public static let localGasStation24px = "\u{eb67}" - public static let localGasStation48px = "\u{eb68}" - public static let localGroceryStore24px = "\u{eb69}" - public static let localGroceryStore48px = "\u{eb6a}" - public static let localHospital24px = "\u{eb6b}" - public static let localHospital48px = "\u{eb6c}" - public static let localHotel24px = "\u{eb6d}" - public static let localHotel48px = "\u{eb6e}" - public static let localLaundryService24px = "\u{eb6f}" - public static let localLaundryService48px = "\u{eb70}" - public static let localLibrary24px = "\u{eb71}" - public static let localLibrary48px = "\u{eb72}" - public static let localMall24px = "\u{eb73}" - public static let localMall48px = "\u{eb74}" - public static let localMovies24px = "\u{eb75}" - public static let localMovies48px = "\u{eb76}" - public static let localOffer24px = "\u{eb77}" - public static let localOffer48px = "\u{eb78}" - public static let localParking24px = "\u{eb79}" - public static let localParking48px = "\u{eb7a}" - public static let localPharmacy24px = "\u{eb7b}" - public static let localPharmacy48px = "\u{eb7c}" - public static let localPhone24px = "\u{eb7d}" - public static let localPhone48px = "\u{eb7e}" - public static let localPizza24px = "\u{eb7f}" - public static let localPizza48px = "\u{eb80}" - public static let localPlay24px = "\u{eb81}" - public static let localPlay48px = "\u{eb82}" - public static let localPostOffice24px = "\u{eb83}" - public static let localPostOffice48px = "\u{eb84}" + public static let localBar24px = "\u{e540}" + public static let localBar48px = "\u{e540}" + public static let localCafe24px = "\u{eb44}" + public static let localCafe48px = "\u{eb44}" + public static let localCarWash24px = "\u{e542}" + public static let localCarWash48px = "\u{e542}" + public static let localConvenienceStore24px = "\u{e543}" + public static let localConvenienceStore48px = "\u{e543}" + public static let localDrink24px = "\u{e544}" + public static let localDrink48px = "\u{e544}" + public static let localFlorist24px = "\u{e545}" + public static let localFlorist48px = "\u{e545}" + public static let localGasStation24px = "\u{e546}" + public static let localGasStation48px = "\u{e546}" + public static let localGroceryStore24px = "\u{e8cc}" + public static let localGroceryStore48px = "\u{e8cc}" + public static let localHospital24px = "\u{e548}" + public static let localHospital48px = "\u{e548}" + public static let localHotel24px = "\u{e549}" + public static let localHotel48px = "\u{e549}" + public static let localLaundryService24px = "\u{e54a}" + public static let localLaundryService48px = "\u{e54a}" + public static let localLibrary24px = "\u{e54b}" + public static let localLibrary48px = "\u{e54b}" + public static let localMall24px = "\u{e54c}" + public static let localMall48px = "\u{e54c}" + public static let localMovies24px = "\u{e8da}" + public static let localMovies48px = "\u{e8da}" + public static let localOffer24px = "\u{f05b}" + public static let localOffer48px = "\u{f05b}" + public static let localParking24px = "\u{e54f}" + public static let localParking48px = "\u{e54f}" + public static let localPharmacy24px = "\u{e550}" + public static let localPharmacy48px = "\u{e550}" + public static let localPhone24px = "\u{f0d4}" + public static let localPhone48px = "\u{f0d4}" + public static let localPizza24px = "\u{e552}" + public static let localPizza48px = "\u{e552}" + public static let localPlay24px = "\u{e553}" + public static let localPlay48px = "\u{e553}" + public static let localPostOffice24px = "\u{e554}" + public static let localPostOffice48px = "\u{e554}" public static let localPrintShop24px = "\u{eb85}" public static let localPrintShop48px = "\u{eb86}" public static let localRestaurant24px = "\u{eb87}" public static let localRestaurant48px = "\u{eb88}" - public static let localSee24px = "\u{eb89}" - public static let localSee48px = "\u{eb8a}" - public static let localShipping24px = "\u{eb8b}" - public static let localShipping48px = "\u{eb8c}" - public static let localTaxi24px = "\u{eb8d}" - public static let localTaxi48px = "\u{eb8e}" + public static let localSee24px = "\u{e557}" + public static let localSee48px = "\u{e557}" + public static let localShipping24px = "\u{e558}" + public static let localShipping48px = "\u{e558}" + public static let localTaxi24px = "\u{e559}" + public static let localTaxi48px = "\u{e559}" public static let locationHistory24px = "\u{eb8f}" public static let locationHistory48px = "\u{eb90}" - public static let map24px = "\u{eb91}" - public static let map48px = "\u{eb92}" - public static let myLocation24px = "\u{eb93}" - public static let myLocation48px = "\u{eb94}" - public static let navigation24px = "\u{eb95}" - public static let navigation48px = "\u{eb96}" - public static let pinDrop24px = "\u{eb97}" - public static let pinDrop48px = "\u{eb98}" - public static let place24px = "\u{eb99}" - public static let place48px = "\u{eb9a}" - public static let rateReview24px = "\u{eb9b}" - public static let rateReview48px = "\u{eb9c}" - public static let restaurantMenu24px = "\u{eb9d}" - public static let restaurantMenu48px = "\u{eb9e}" - public static let satellite24px = "\u{eb9f}" - public static let satellite48px = "\u{eba0}" - public static let storeMallDirectory24px = "\u{eba1}" - public static let storeMallDirectory48px = "\u{eba2}" - public static let terrain24px = "\u{eba3}" - public static let terrain48px = "\u{eba4}" - public static let traffic24px = "\u{eba5}" - public static let traffic48px = "\u{eba6}" - public static let apps18px = "\u{eba7}" - public static let apps24px = "\u{eba8}" - public static let apps36px = "\u{eba9}" - public static let apps48px = "\u{ebaa}" - public static let arrowBack18px = "\u{ebab}" - public static let arrowBack24px = "\u{ebac}" - public static let arrowBack36px = "\u{ebad}" - public static let arrowBack48px = "\u{ebae}" - public static let arrowDropDown18px = "\u{ebaf}" - public static let arrowDropDown24px = "\u{ebb0}" - public static let arrowDropDown36px = "\u{ebb1}" - public static let arrowDropDown48px = "\u{ebb2}" - public static let arrowDropDownCircle24px = "\u{ebb3}" - public static let arrowDropDownCircle48px = "\u{ebb4}" - public static let arrowDropUp18px = "\u{ebb5}" - public static let arrowDropUp24px = "\u{ebb6}" - public static let arrowDropUp36px = "\u{ebb7}" - public static let arrowDropUp48px = "\u{ebb8}" - public static let arrowForward18px = "\u{ebb9}" - public static let arrowForward24px = "\u{ebba}" - public static let arrowForward36px = "\u{ebbb}" - public static let arrowForward48px = "\u{ebbc}" - public static let cancel18px = "\u{ebbd}" - public static let cancel24px = "\u{ebbe}" - public static let cancel36px = "\u{ebbf}" - public static let cancel48px = "\u{ebc0}" - public static let check18px = "\u{ebc1}" - public static let check24px = "\u{ebc2}" - public static let check36px = "\u{ebc3}" - public static let check48px = "\u{ebc4}" - public static let chevronLeft18px = "\u{ebc5}" - public static let chevronLeft24px = "\u{ebc6}" - public static let chevronLeft36px = "\u{ebc7}" - public static let chevronLeft48px = "\u{ebc8}" - public static let chevronRight18px = "\u{ebc9}" - public static let chevronRight24px = "\u{ebca}" - public static let chevronRight36px = "\u{ebcb}" - public static let chevronRight48px = "\u{ebcc}" - public static let close18px = "\u{ebcd}" - public static let close24px = "\u{ebce}" - public static let close36px = "\u{ebcf}" - public static let close48px = "\u{ebd0}" - public static let expandLess18px = "\u{ebd1}" - public static let expandLess24px = "\u{ebd2}" - public static let expandLess36px = "\u{ebd3}" - public static let expandLess48px = "\u{ebd4}" - public static let expandMore18px = "\u{ebd5}" - public static let expandMore24px = "\u{ebd6}" - public static let expandMore36px = "\u{ebd7}" - public static let expandMore48px = "\u{ebd8}" - public static let fullscreen18px = "\u{ebd9}" - public static let fullscreen24px = "\u{ebda}" - public static let fullscreen36px = "\u{ebdb}" - public static let fullscreen48px = "\u{ebdc}" - public static let fullscreenExit18px = "\u{ebdd}" - public static let fullscreenExit24px = "\u{ebde}" - public static let fullscreenExit36px = "\u{ebdf}" - public static let fullscreenExit48px = "\u{ebe0}" - public static let menu18px = "\u{ebe1}" - public static let menu24px = "\u{ebe2}" - public static let menu36px = "\u{ebe3}" - public static let menu48px = "\u{ebe4}" - public static let moreHoriz18px = "\u{ebe5}" - public static let moreHoriz24px = "\u{ebe6}" - public static let moreHoriz36px = "\u{ebe7}" - public static let moreHoriz48px = "\u{ebe8}" - public static let moreVert18px = "\u{ebe9}" - public static let moreVert24px = "\u{ebea}" - public static let moreVert36px = "\u{ebeb}" - public static let moreVert48px = "\u{ebec}" - public static let refresh18px = "\u{ebed}" - public static let refresh24px = "\u{ebee}" - public static let refresh36px = "\u{ebef}" - public static let refresh48px = "\u{ebf0}" - public static let unfoldLess18px = "\u{ebf1}" - public static let unfoldLess24px = "\u{ebf2}" - public static let unfoldLess36px = "\u{ebf3}" - public static let unfoldLess48px = "\u{ebf4}" - public static let unfoldMore18px = "\u{ebf5}" - public static let unfoldMore24px = "\u{ebf6}" - public static let unfoldMore36px = "\u{ebf7}" - public static let unfoldMore48px = "\u{ebf8}" - public static let adb18px = "\u{ebf9}" - public static let adb24px = "\u{ebfa}" - public static let adb48px = "\u{ebfb}" - public static let bluetoothAudio24px = "\u{ebfc}" - public static let bluetoothAudio48px = "\u{ebfd}" - public static let discFull24px = "\u{ebfe}" - public static let discFull48px = "\u{ebff}" + public static let map24px = "\u{e55b}" + public static let map48px = "\u{e55b}" + public static let myLocation24px = "\u{e55c}" + public static let myLocation48px = "\u{e55c}" + public static let navigation24px = "\u{e55d}" + public static let navigation48px = "\u{e55d}" + public static let pinDrop24px = "\u{e55e}" + public static let pinDrop48px = "\u{e55e}" + public static let place24px = "\u{f1db}" + public static let place48px = "\u{f1db}" + public static let rateReview24px = "\u{e560}" + public static let rateReview48px = "\u{e560}" + public static let restaurantMenu24px = "\u{e561}" + public static let restaurantMenu48px = "\u{e561}" + public static let satellite24px = "\u{e562}" + public static let satellite48px = "\u{e562}" + public static let storeMallDirectory24px = "\u{e8d1}" + public static let storeMallDirectory48px = "\u{e8d1}" + public static let terrain24px = "\u{e564}" + public static let terrain48px = "\u{e564}" + public static let traffic24px = "\u{e565}" + public static let traffic48px = "\u{e565}" + public static let apps18px = "\u{e5c3}" + public static let apps24px = "\u{e5c3}" + public static let apps36px = "\u{e5c3}" + public static let apps48px = "\u{e5c3}" + public static let arrowBack18px = "\u{e5c4}" + public static let arrowBack24px = "\u{e5c4}" + public static let arrowBack36px = "\u{e5c4}" + public static let arrowBack48px = "\u{e5c4}" + public static let arrowDropDown18px = "\u{e5c5}" + public static let arrowDropDown24px = "\u{e5c5}" + public static let arrowDropDown36px = "\u{e5c5}" + public static let arrowDropDown48px = "\u{e5c5}" + public static let arrowDropDownCircle24px = "\u{e5c6}" + public static let arrowDropDownCircle48px = "\u{e5c6}" + public static let arrowDropUp18px = "\u{e5c7}" + public static let arrowDropUp24px = "\u{e5c7}" + public static let arrowDropUp36px = "\u{e5c7}" + public static let arrowDropUp48px = "\u{e5c7}" + public static let arrowForward18px = "\u{e5c8}" + public static let arrowForward24px = "\u{e5c8}" + public static let arrowForward36px = "\u{e5c8}" + public static let arrowForward48px = "\u{e5c8}" + public static let cancel18px = "\u{e888}" + public static let cancel24px = "\u{e888}" + public static let cancel36px = "\u{e888}" + public static let cancel48px = "\u{e888}" + public static let check18px = "\u{e5ca}" + public static let check24px = "\u{e5ca}" + public static let check36px = "\u{e5ca}" + public static let check48px = "\u{e5ca}" + public static let chevronLeft18px = "\u{e5cb}" + public static let chevronLeft24px = "\u{e5cb}" + public static let chevronLeft36px = "\u{e5cb}" + public static let chevronLeft48px = "\u{e5cb}" + public static let chevronRight18px = "\u{e5cc}" + public static let chevronRight24px = "\u{e5cc}" + public static let chevronRight36px = "\u{e5cc}" + public static let chevronRight48px = "\u{e5cc}" + public static let close18px = "\u{e5cd}" + public static let close24px = "\u{e5cd}" + public static let close36px = "\u{e5cd}" + public static let close48px = "\u{e5cd}" + public static let expandLess18px = "\u{e5ce}" + public static let expandLess24px = "\u{e5ce}" + public static let expandLess36px = "\u{e5ce}" + public static let expandLess48px = "\u{e5ce}" + public static let expandMore18px = "\u{e5cf}" + public static let expandMore24px = "\u{e5cf}" + public static let expandMore36px = "\u{e5cf}" + public static let expandMore48px = "\u{e5cf}" + public static let fullscreen18px = "\u{e5d0}" + public static let fullscreen24px = "\u{e5d0}" + public static let fullscreen36px = "\u{e5d0}" + public static let fullscreen48px = "\u{e5d0}" + public static let fullscreenExit18px = "\u{e5d1}" + public static let fullscreenExit24px = "\u{e5d1}" + public static let fullscreenExit36px = "\u{e5d1}" + public static let fullscreenExit48px = "\u{e5d1}" + public static let menu18px = "\u{e5d2}" + public static let menu24px = "\u{e5d2}" + public static let menu36px = "\u{e5d2}" + public static let menu48px = "\u{e5d2}" + public static let moreHoriz18px = "\u{e5d3}" + public static let moreHoriz24px = "\u{e5d3}" + public static let moreHoriz36px = "\u{e5d3}" + public static let moreHoriz48px = "\u{e5d3}" + public static let moreVert18px = "\u{e5d4}" + public static let moreVert24px = "\u{e5d4}" + public static let moreVert36px = "\u{e5d4}" + public static let moreVert48px = "\u{e5d4}" + public static let refresh18px = "\u{e5d5}" + public static let refresh24px = "\u{e5d5}" + public static let refresh36px = "\u{e5d5}" + public static let refresh48px = "\u{e5d5}" + public static let unfoldLess18px = "\u{e5d6}" + public static let unfoldLess24px = "\u{e5d6}" + public static let unfoldLess36px = "\u{e5d6}" + public static let unfoldLess48px = "\u{e5d6}" + public static let unfoldMore18px = "\u{e5d7}" + public static let unfoldMore24px = "\u{e5d7}" + public static let unfoldMore36px = "\u{e5d7}" + public static let unfoldMore48px = "\u{e5d7}" + public static let adb18px = "\u{e60e}" + public static let adb24px = "\u{e60e}" + public static let adb48px = "\u{e60e}" + public static let bluetoothAudio24px = "\u{e60f}" + public static let bluetoothAudio48px = "\u{e60f}" + public static let discFull24px = "\u{e610}" + public static let discFull48px = "\u{e610}" public static let dndForwardslash24px = "\u{ec00}" public static let dndForwardslash48px = "\u{ec01}" - public static let doNotDisturb24px = "\u{ec02}" - public static let doNotDisturb48px = "\u{ec03}" - public static let driveEta24px = "\u{ec04}" - public static let driveEta48px = "\u{ec05}" - public static let eventAvailable24px = "\u{ec06}" - public static let eventAvailable48px = "\u{ec07}" - public static let eventBusy24px = "\u{ec08}" - public static let eventBusy48px = "\u{ec09}" - public static let eventNote18px = "\u{ec0a}" - public static let eventNote24px = "\u{ec0b}" - public static let eventNote48px = "\u{ec0c}" - public static let folderSpecial24px = "\u{ec0d}" - public static let folderSpecial48px = "\u{ec0e}" - public static let mms24px = "\u{ec0f}" - public static let mms48px = "\u{ec10}" - public static let more24px = "\u{ec11}" - public static let more48px = "\u{ec12}" - public static let networkLocked24px = "\u{ec13}" - public static let networkLocked48px = "\u{ec14}" - public static let phoneBluetoothSpeaker24px = "\u{ec15}" - public static let phoneBluetoothSpeaker48px = "\u{ec16}" - public static let phoneForwarded24px = "\u{ec17}" - public static let phoneForwarded48px = "\u{ec18}" - public static let phoneInTalk24px = "\u{ec19}" - public static let phoneInTalk48px = "\u{ec1a}" - public static let phoneLocked24px = "\u{ec1b}" - public static let phoneLocked48px = "\u{ec1c}" - public static let phoneMissed24px = "\u{ec1d}" - public static let phoneMissed48px = "\u{ec1e}" - public static let phonePaused24px = "\u{ec1f}" - public static let phonePaused48px = "\u{ec20}" + public static let doNotDisturb24px = "\u{f08d}" + public static let doNotDisturb48px = "\u{f08d}" + public static let driveEta24px = "\u{eff7}" + public static let driveEta48px = "\u{eff7}" + public static let eventAvailable24px = "\u{e614}" + public static let eventAvailable48px = "\u{e614}" + public static let eventBusy24px = "\u{e615}" + public static let eventBusy48px = "\u{e615}" + public static let eventNote18px = "\u{e616}" + public static let eventNote24px = "\u{e616}" + public static let eventNote48px = "\u{e616}" + public static let folderSpecial24px = "\u{e617}" + public static let folderSpecial48px = "\u{e617}" + public static let mms24px = "\u{e618}" + public static let mms48px = "\u{e618}" + public static let more24px = "\u{e619}" + public static let more48px = "\u{e619}" + public static let networkLocked24px = "\u{e61a}" + public static let networkLocked48px = "\u{e61a}" + public static let phoneBluetoothSpeaker24px = "\u{e61b}" + public static let phoneBluetoothSpeaker48px = "\u{e61b}" + public static let phoneForwarded24px = "\u{e61c}" + public static let phoneForwarded48px = "\u{e61c}" + public static let phoneInTalk24px = "\u{e61d}" + public static let phoneInTalk48px = "\u{e61d}" + public static let phoneLocked24px = "\u{e61e}" + public static let phoneLocked48px = "\u{e61e}" + public static let phoneMissed24px = "\u{e61f}" + public static let phoneMissed48px = "\u{e61f}" + public static let phonePaused24px = "\u{e620}" + public static let phonePaused48px = "\u{e620}" public static let playDownload24px = "\u{ec21}" public static let playDownload48px = "\u{ec22}" public static let playInstall24px = "\u{ec23}" public static let playInstall48px = "\u{ec24}" - public static let sdCard24px = "\u{ec25}" - public static let sdCard48px = "\u{ec26}" - public static let simCardAlert24px = "\u{ec27}" - public static let simCardAlert48px = "\u{ec28}" - public static let sms24px = "\u{ec29}" - public static let sms48px = "\u{ec2a}" - public static let smsFailed24px = "\u{ec2b}" - public static let smsFailed48px = "\u{ec2c}" - public static let sync24px = "\u{ec2d}" - public static let sync48px = "\u{ec2e}" - public static let syncDisabled24px = "\u{ec2f}" - public static let syncDisabled48px = "\u{ec30}" - public static let syncProblem24px = "\u{ec31}" - public static let syncProblem48px = "\u{ec32}" - public static let systemUpdate24px = "\u{ec33}" - public static let systemUpdate48px = "\u{ec34}" - public static let tapAndPlay24px = "\u{ec35}" - public static let tapAndPlay48px = "\u{ec36}" - public static let timeToLeave24px = "\u{ec37}" - public static let timeToLeave48px = "\u{ec38}" - public static let vibration18px = "\u{ec39}" - public static let vibration24px = "\u{ec3a}" - public static let vibration48px = "\u{ec3b}" + public static let sdCard24px = "\u{e623}" + public static let sdCard48px = "\u{e623}" + public static let simCardAlert24px = "\u{f057}" + public static let simCardAlert48px = "\u{f057}" + public static let sms24px = "\u{e625}" + public static let sms48px = "\u{e625}" + public static let smsFailed24px = "\u{e87f}" + public static let smsFailed48px = "\u{e87f}" + public static let sync24px = "\u{e627}" + public static let sync48px = "\u{e627}" + public static let syncDisabled24px = "\u{e628}" + public static let syncDisabled48px = "\u{e628}" + public static let syncProblem24px = "\u{e629}" + public static let syncProblem48px = "\u{e629}" + public static let systemUpdate24px = "\u{f2cd}" + public static let systemUpdate48px = "\u{f2cd}" + public static let tapAndPlay24px = "\u{f2cc}" + public static let tapAndPlay48px = "\u{f2cc}" + public static let timeToLeave24px = "\u{eff7}" + public static let timeToLeave48px = "\u{eff7}" + public static let vibration18px = "\u{f2cb}" + public static let vibration24px = "\u{f2cb}" + public static let vibration48px = "\u{f2cb}" } #endif diff --git a/Sources/MaterialDesignSymbol/MaterialDesignIcon5.swift b/Sources/MaterialDesignSymbol/MaterialDesignIcon5.swift index 6a24594..217d017 100644 --- a/Sources/MaterialDesignSymbol/MaterialDesignIcon5.swift +++ b/Sources/MaterialDesignSymbol/MaterialDesignIcon5.swift @@ -12,70 +12,70 @@ import UIKit * マテリアルデザインアイコンのコードを返すクラス */ extension MaterialDesignIcon { - public static let voiceChat24px = "\u{ec3c}" - public static let voiceChat48px = "\u{ec3d}" - public static let vpnLock24px = "\u{ec3e}" - public static let vpnLock48px = "\u{ec3f}" - public static let cake18px = "\u{ec40}" - public static let cake24px = "\u{ec41}" - public static let cake48px = "\u{ec42}" - public static let domain18px = "\u{ec43}" - public static let domain24px = "\u{ec44}" - public static let domain48px = "\u{ec45}" - public static let group18px = "\u{ec46}" - public static let group24px = "\u{ec47}" - public static let group48px = "\u{ec48}" - public static let groupAdd18px = "\u{ec49}" - public static let groupAdd24px = "\u{ec4a}" - public static let groupAdd48px = "\u{ec4b}" - public static let locationCity18px = "\u{ec4c}" - public static let locationCity24px = "\u{ec4d}" - public static let locationCity48px = "\u{ec4e}" - public static let mood18px = "\u{ec4f}" - public static let mood24px = "\u{ec50}" - public static let mood48px = "\u{ec51}" - public static let notifications24px = "\u{ec52}" - public static let notifications48px = "\u{ec53}" - public static let notificationsNone24px = "\u{ec54}" - public static let notificationsNone48px = "\u{ec55}" - public static let notificationsOff24px = "\u{ec56}" - public static let notificationsOff48px = "\u{ec57}" + public static let voiceChat24px = "\u{e62e}" + public static let voiceChat48px = "\u{e62e}" + public static let vpnLock24px = "\u{e62f}" + public static let vpnLock48px = "\u{e62f}" + public static let cake18px = "\u{e7e9}" + public static let cake24px = "\u{e7e9}" + public static let cake48px = "\u{e7e9}" + public static let domain18px = "\u{e7ee}" + public static let domain24px = "\u{e7ee}" + public static let domain48px = "\u{e7ee}" + public static let group18px = "\u{ea21}" + public static let group24px = "\u{ea21}" + public static let group48px = "\u{ea21}" + public static let groupAdd18px = "\u{e7f0}" + public static let groupAdd24px = "\u{e7f0}" + public static let groupAdd48px = "\u{e7f0}" + public static let locationCity18px = "\u{e7f1}" + public static let locationCity24px = "\u{e7f1}" + public static let locationCity48px = "\u{e7f1}" + public static let mood18px = "\u{ea22}" + public static let mood24px = "\u{ea22}" + public static let mood48px = "\u{ea22}" + public static let notifications24px = "\u{e7f5}" + public static let notifications48px = "\u{e7f5}" + public static let notificationsNone24px = "\u{e7f5}" + public static let notificationsNone48px = "\u{e7f5}" + public static let notificationsOff24px = "\u{e7f6}" + public static let notificationsOff48px = "\u{e7f6}" public static let notificationsOn24px = "\u{ec58}" public static let notificationsOn48px = "\u{ec59}" - public static let notificationsPaused24px = "\u{ec5a}" - public static let notificationsPaused48px = "\u{ec5b}" - public static let pages18px = "\u{ec5c}" - public static let pages24px = "\u{ec5d}" - public static let pages48px = "\u{ec5e}" - public static let partyMode24px = "\u{ec5f}" - public static let partyMode48px = "\u{ec60}" - public static let people18px = "\u{ec61}" - public static let people24px = "\u{ec62}" - public static let people48px = "\u{ec63}" - public static let peopleOutline24px = "\u{ec64}" - public static let peopleOutline48px = "\u{ec65}" - public static let person18px = "\u{ec66}" - public static let person24px = "\u{ec67}" - public static let person48px = "\u{ec68}" - public static let personAdd18px = "\u{ec69}" - public static let personAdd24px = "\u{ec6a}" - public static let personAdd48px = "\u{ec6b}" - public static let personOutline18px = "\u{ec6c}" - public static let personOutline24px = "\u{ec6d}" - public static let personOutline48px = "\u{ec6e}" - public static let plusOne24px = "\u{ec6f}" - public static let plusOne48px = "\u{ec70}" - public static let poll18px = "\u{ec71}" - public static let poll24px = "\u{ec72}" - public static let poll48px = "\u{ec73}" - public static let public24px = "\u{ec74}" - public static let public48px = "\u{ec75}" - public static let school24px = "\u{ec76}" - public static let school48px = "\u{ec77}" - public static let share24px = "\u{ec78}" - public static let share48px = "\u{ec79}" - public static let whatshot18px = "\u{ec7a}" - public static let whatshot24px = "\u{ec7b}" - public static let whatshot48px = "\u{ec7c}" + public static let notificationsPaused24px = "\u{e7f8}" + public static let notificationsPaused48px = "\u{e7f8}" + public static let pages18px = "\u{e7f9}" + public static let pages24px = "\u{e7f9}" + public static let pages48px = "\u{e7f9}" + public static let partyMode24px = "\u{e7fa}" + public static let partyMode48px = "\u{e7fa}" + public static let people18px = "\u{ea21}" + public static let people24px = "\u{ea21}" + public static let people48px = "\u{ea21}" + public static let peopleOutline24px = "\u{ea21}" + public static let peopleOutline48px = "\u{ea21}" + public static let person18px = "\u{f0d3}" + public static let person24px = "\u{f0d3}" + public static let person48px = "\u{f0d3}" + public static let personAdd18px = "\u{ea4d}" + public static let personAdd24px = "\u{ea4d}" + public static let personAdd48px = "\u{ea4d}" + public static let personOutline18px = "\u{f0d3}" + public static let personOutline24px = "\u{f0d3}" + public static let personOutline48px = "\u{f0d3}" + public static let plusOne24px = "\u{e800}" + public static let plusOne48px = "\u{e800}" + public static let poll18px = "\u{f0cc}" + public static let poll24px = "\u{f0cc}" + public static let poll48px = "\u{f0cc}" + public static let public24px = "\u{e80b}" + public static let public48px = "\u{e80b}" + public static let school24px = "\u{e80c}" + public static let school48px = "\u{e80c}" + public static let share24px = "\u{e80d}" + public static let share48px = "\u{e80d}" + public static let whatshot18px = "\u{e80e}" + public static let whatshot24px = "\u{e80e}" + public static let whatshot48px = "\u{e80e}" } #endif diff --git a/Sources/MaterialDesignSymbol/MaterialDesignIconEnum.swift b/Sources/MaterialDesignSymbol/MaterialDesignIconEnum.swift index d2052a2..fe85a2a 100644 --- a/Sources/MaterialDesignSymbol/MaterialDesignIconEnum.swift +++ b/Sources/MaterialDesignSymbol/MaterialDesignIconEnum.swift @@ -1,1084 +1,100 @@ // // MaterialDesignIconEnum // +// Warning: This API is maintained for backward compatibility. +// For new code, use MaterialSymbolEnum instead. +// #if !os(macOS) import UIKit /** - * マテリアルデザインアイコンのコードを返すenum + * マテリアルデザインアイコンのコードを返すenum(後方互換用) + * 新規コードではMaterialSymbolEnumを使用してください */ -public enum MaterialDesignIconEnum: String { - case threeDRotation24px = "\u{e600}" - case threeDRotation48px = "\u{e601}" - case accessibility24px = "\u{e602}" - case accessibility48px = "\u{e603}" - case accountBalance24px = "\u{e604}" - case accountBalance48px = "\u{e605}" - case accountBalanceWallet24px = "\u{e606}" - case accountBalanceWallet48px = "\u{e607}" - case accountBox18px = "\u{e608}" - case accountBox24px = "\u{e609}" - case accountBox48px = "\u{e60a}" - case accountChild24px = "\u{e60b}" - case accountChild48px = "\u{e60c}" - case accountCircle18px = "\u{e60d}" - case accountCircle24px = "\u{e60e}" - case accountCircle48px = "\u{e60f}" - case addShoppingCart24px = "\u{e610}" - case addShoppingCart48px = "\u{e611}" - case alarm24px = "\u{e612}" - case alarm48px = "\u{e613}" - case alarmAdd24px = "\u{e614}" - case alarmAdd48px = "\u{e615}" - case alarmOff24px = "\u{e616}" - case alarmOff48px = "\u{e617}" - case alarmOn24px = "\u{e618}" - case alarmOn48px = "\u{e619}" - case android24px = "\u{e61a}" - case android48px = "\u{e61b}" - case announcement24px = "\u{e61c}" - case announcement48px = "\u{e61d}" - case aspectRatio24px = "\u{e61e}" - case aspectRatio48px = "\u{e61f}" - case assessment24px = "\u{e620}" - case assessment48px = "\u{e621}" - case assignment24px = "\u{e622}" - case assignment48px = "\u{e623}" - case assignmentInd24px = "\u{e624}" - case assignmentInd48px = "\u{e625}" - case assignmentLate24px = "\u{e626}" - case assignmentLate48px = "\u{e627}" - case assignmentReturn24px = "\u{e628}" - case assignmentReturn48px = "\u{e629}" - case assignmentReturned24px = "\u{e62a}" - case assignmentReturned48px = "\u{e62b}" - case assignmentTurnedIn24px = "\u{e62c}" - case assignmentTurnedIn48px = "\u{e62d}" - case autorenew24px = "\u{e62e}" - case autorenew48px = "\u{e62f}" - case backup24px = "\u{e630}" - case backup48px = "\u{e631}" - case book24px = "\u{e632}" - case book48px = "\u{e633}" - case bookmark24px = "\u{e634}" - case bookmark48px = "\u{e635}" - case bookmarkOutline24px = "\u{e636}" - case bookmarkOutline48px = "\u{e637}" - case bugReport24px = "\u{e638}" - case bugReport48px = "\u{e639}" - case cached24px = "\u{e63a}" - case cached48px = "\u{e63b}" - case class24px = "\u{e63c}" - case class48px = "\u{e63d}" - case creditCard24px = "\u{e63e}" - case creditCard48px = "\u{e63f}" - case dashboard24px = "\u{e640}" - case dashboard48px = "\u{e641}" - case delete24px = "\u{e642}" - case delete48px = "\u{e643}" - case description24px = "\u{e644}" - case description48px = "\u{e645}" - case dns24px = "\u{e646}" - case dns48px = "\u{e647}" - case done24px = "\u{e648}" - case done48px = "\u{e649}" - case doneAll24px = "\u{e64a}" - case doneAll48px = "\u{e64b}" - case event18px = "\u{e64c}" - case event24px = "\u{e64d}" - case event48px = "\u{e64e}" - case exitToApp24px = "\u{e64f}" - case exitToApp48px = "\u{e650}" - case explore24px = "\u{e651}" - case explore48px = "\u{e652}" - case extension24px = "\u{e653}" - case extension48px = "\u{e654}" - case faceUnlock24px = "\u{e655}" - case faceUnlock48px = "\u{e656}" - case favorite24px = "\u{e657}" - case favorite48px = "\u{e658}" - case favoriteOutline24px = "\u{e659}" - case favoriteOutline48px = "\u{e65a}" - case findInPage24px = "\u{e65b}" - case findInPage48px = "\u{e65c}" - case findReplace24px = "\u{e65d}" - case findReplace48px = "\u{e65e}" - case flipToBack24px = "\u{e65f}" - case flipToBack48px = "\u{e660}" - case flipToFront24px = "\u{e661}" - case flipToFront48px = "\u{e662}" - case getApp24px = "\u{e663}" - case getApp48px = "\u{e664}" - case grade24px = "\u{e665}" - case grade48px = "\u{e666}" - case groupWork24px = "\u{e667}" - case groupWork48px = "\u{e668}" - case help24px = "\u{e669}" - case help48px = "\u{e66a}" - case highlightRemove24px = "\u{e66b}" - case highlightRemove48px = "\u{e66c}" - case history24px = "\u{e66d}" - case history48px = "\u{e66e}" - case home24px = "\u{e66f}" - case home48px = "\u{e670}" - case https24px = "\u{e671}" - case https48px = "\u{e672}" - case info24px = "\u{e673}" - case info48px = "\u{e674}" - case infoOutline24px = "\u{e675}" - case infoOutline48px = "\u{e676}" - case input24px = "\u{e677}" - case input48px = "\u{e678}" - case invertColors24px = "\u{e679}" - case invertColors48px = "\u{e67a}" - case label24px = "\u{e67b}" - case label48px = "\u{e67c}" - case labelOutline24px = "\u{e67d}" - case labelOutline48px = "\u{e67e}" - case language24px = "\u{e67f}" - case language48px = "\u{e680}" - case launch24px = "\u{e681}" - case launch48px = "\u{e682}" - case list24px = "\u{e683}" - case list48px = "\u{e684}" - case lock24px = "\u{e685}" - case lock48px = "\u{e686}" - case lockOpen24px = "\u{e687}" - case lockOpen48px = "\u{e688}" - case lockOutline24px = "\u{e689}" - case lockOutline48px = "\u{e68a}" - case loyalty24px = "\u{e68b}" - case loyalty48px = "\u{e68c}" - case markunreadMailbox24px = "\u{e68d}" - case markunreadMailbox48px = "\u{e68e}" - case noteAdd24px = "\u{e68f}" - case noteAdd48px = "\u{e690}" - case openInBrowser24px = "\u{e691}" - case openInBrowser48px = "\u{e692}" - case openInNew24px = "\u{e693}" - case openInNew48px = "\u{e694}" - case openWith24px = "\u{e695}" - case openWith48px = "\u{e696}" - case pageview24px = "\u{e697}" - case pageview48px = "\u{e698}" - case payment24px = "\u{e699}" - case payment48px = "\u{e69a}" - case permCameraMic24px = "\u{e69b}" - case permCameraMic48px = "\u{e69c}" - case permContactCal24px = "\u{e69d}" - case permContactCal48px = "\u{e69e}" - case permDataSetting24px = "\u{e69f}" - case permDataSetting48px = "\u{e6a0}" - case permDeviceInfo24px = "\u{e6a1}" - case permDeviceInfo48px = "\u{e6a2}" - case permIdentity24px = "\u{e6a3}" - case permIdentity48px = "\u{e6a4}" - case permMedia24px = "\u{e6a5}" - case permMedia48px = "\u{e6a6}" - case permPhoneMsg24px = "\u{e6a7}" - case permPhoneMsg48px = "\u{e6a8}" - case permScanWifi24px = "\u{e6a9}" - case permScanWifi48px = "\u{e6aa}" - case pictureInPicture24px = "\u{e6ab}" - case pictureInPicture48px = "\u{e6ac}" - case polymer24px = "\u{e6ad}" - case polymer48px = "\u{e6ae}" - case print24px = "\u{e6af}" - case print48px = "\u{e6b0}" - case queryBuilder24px = "\u{e6b1}" - case queryBuilder48px = "\u{e6b2}" - case questionAnswer24px = "\u{e6b3}" - case questionAnswer48px = "\u{e6b4}" - case receipt24px = "\u{e6b5}" - case receipt48px = "\u{e6b6}" - case redeem24px = "\u{e6b7}" - case redeem48px = "\u{e6b8}" - case reorder24px = "\u{e6b9}" - case reportProblem24px = "\u{e6ba}" - case reportProblem48px = "\u{e6bb}" - case restore24px = "\u{e6bc}" - case restore48px = "\u{e6bd}" - case room24px = "\u{e6be}" - case room48px = "\u{e6bf}" - case schedule24px = "\u{e6c0}" - case schedule48px = "\u{e6c1}" - case search24px = "\u{e6c2}" - case search48px = "\u{e6c3}" - case settings24px = "\u{e6c4}" - case settings48px = "\u{e6c5}" - case settingsApplications24px = "\u{e6c6}" - case settingsApplications48px = "\u{e6c7}" - case settingsBackupRestore24px = "\u{e6c8}" - case settingsBackupRestore48px = "\u{e6c9}" - case settingsBluetooth24px = "\u{e6ca}" - case settingsBluetooth48px = "\u{e6cb}" - case settingsCell24px = "\u{e6cc}" - case settingsCell48px = "\u{e6cd}" - case settingsDisplay24px = "\u{e6ce}" - case settingsDisplay48px = "\u{e6cf}" - case settingsEthernet24px = "\u{e6d0}" - case settingsEthernet48px = "\u{e6d1}" - case settingsInputAntenna24px = "\u{e6d2}" - case settingsInputAntenna48px = "\u{e6d3}" - case settingsInputComponent24px = "\u{e6d4}" - case settingsInputComponent48px = "\u{e6d5}" - case settingsInputComposite24px = "\u{e6d6}" - case settingsInputComposite48px = "\u{e6d7}" - case settingsInputHdmi24px = "\u{e6d8}" - case settingsInputHdmi48px = "\u{e6d9}" - case settingsInputSvideo24px = "\u{e6da}" - case settingsInputSvideo48px = "\u{e6db}" - case settingsOverscan24px = "\u{e6dc}" - case settingsOverscan48px = "\u{e6dd}" - case settingsPhone24px = "\u{e6de}" - case settingsPhone48px = "\u{e6df}" - case settingsPower24px = "\u{e6e0}" - case settingsPower48px = "\u{e6e1}" - case settingsRemote24px = "\u{e6e2}" - case settingsRemote48px = "\u{e6e3}" - case settingsVoice24px = "\u{e6e4}" - case settingsVoice48px = "\u{e6e5}" - case shop24px = "\u{e6e6}" - case shop48px = "\u{e6e7}" - case shopTwo24px = "\u{e6e8}" - case shopTwo48px = "\u{e6e9}" - case shoppingBasket24px = "\u{e6ea}" - case shoppingBasket48px = "\u{e6eb}" - case shoppingCart24px = "\u{e6ec}" - case shoppingCart48px = "\u{e6ed}" - case speakerNotes24px = "\u{e6ee}" - case speakerNotes48px = "\u{e6ef}" - case spellcheck24px = "\u{e6f0}" - case spellcheck48px = "\u{e6f1}" - case starRate24px = "\u{e6f2}" - case starRate48px = "\u{e6f3}" - case stars24px = "\u{e6f4}" - case stars48px = "\u{e6f5}" - case store24px = "\u{e6f6}" - case store48px = "\u{e6f7}" - case subject24px = "\u{e6f8}" - case subject48px = "\u{e6f9}" - case supervisorAccount24px = "\u{e6fa}" - case swapHoriz24px = "\u{e6fb}" - case swapHoriz48px = "\u{e6fc}" - case swapVert24px = "\u{e6fd}" - case swapVert48px = "\u{e6fe}" - case swapVertCircle24px = "\u{e6ff}" - case swapVertCircle48px = "\u{e700}" - case systemUpdateTv24px = "\u{e701}" - case systemUpdateTv48px = "\u{e702}" - case tab24px = "\u{e703}" - case tab48px = "\u{e704}" - case tabUnselected24px = "\u{e705}" - case tabUnselected48px = "\u{e706}" - case theaters24px = "\u{e707}" - case theaters48px = "\u{e708}" - case thumbDown24px = "\u{e709}" - case thumbDown48px = "\u{e70a}" - case thumbUp24px = "\u{e70b}" - case thumbUp48px = "\u{e70c}" - case thumbsUpDown24px = "\u{e70d}" - case thumbsUpDown48px = "\u{e70e}" - case toc24px = "\u{e70f}" - case toc48px = "\u{e710}" - case today24px = "\u{e711}" - case today48px = "\u{e712}" - case trackChanges24px = "\u{e713}" - case trackChanges48px = "\u{e714}" - case translate24px = "\u{e715}" - case translate48px = "\u{e716}" - case trendingDown24px = "\u{e717}" - case trendingDown48px = "\u{e718}" - case trendingNeutral24px = "\u{e719}" - case trendingNeutral48px = "\u{e71a}" - case trendingUp24px = "\u{e71b}" - case trendingUp48px = "\u{e71c}" - case turnedIn24px = "\u{e71d}" - case turnedIn48px = "\u{e71e}" - case turnedInNot24px = "\u{e71f}" - case turnedInNot48px = "\u{e720}" - case verifiedUser24px = "\u{e721}" - case verifiedUser48px = "\u{e722}" - case viewAgenda24px = "\u{e723}" - case viewAgenda48px = "\u{e724}" - case viewArray24px = "\u{e725}" - case viewArray48px = "\u{e726}" - case viewCarousel24px = "\u{e727}" - case viewCarousel48px = "\u{e728}" - case viewColumn24px = "\u{e729}" - case viewColumn48px = "\u{e72a}" - case viewDay24px = "\u{e72b}" - case viewDay48px = "\u{e72c}" - case viewHeadline24px = "\u{e72d}" - case viewHeadline48px = "\u{e72e}" - case viewList24px = "\u{e72f}" - case viewList48px = "\u{e730}" - case viewModule24px = "\u{e731}" - case viewModule48px = "\u{e732}" - case viewQuilt24px = "\u{e733}" - case viewQuilt48px = "\u{e734}" - case viewStream24px = "\u{e735}" - case viewStream48px = "\u{e736}" - case viewWeek24px = "\u{e737}" - case viewWeek48px = "\u{e738}" - case visibility24px = "\u{e739}" - case visibility48px = "\u{e73a}" - case visibilityOff24px = "\u{e73b}" - case visibilityOff48px = "\u{e73c}" - case walletGiftcard24px = "\u{e73d}" - case walletGiftcard48px = "\u{e73e}" - case walletMembership24px = "\u{e73f}" - case walletMembership48px = "\u{e740}" - case walletTravel24px = "\u{e741}" - case walletTravel48px = "\u{e742}" - case work24px = "\u{e743}" - case work48px = "\u{e744}" - case error18px = "\u{e745}" - case error24px = "\u{e746}" - case error36px = "\u{e747}" - case error48px = "\u{e748}" - case warning18px = "\u{e749}" - case warning24px = "\u{e74a}" - case warning36px = "\u{e74b}" - case warning48px = "\u{e74c}" - case album24px = "\u{e74d}" - case album48px = "\u{e74e}" - case avTimer24px = "\u{e74f}" - case avTimer48px = "\u{e750}" - case closedCaption24px = "\u{e751}" - case closedCaption48px = "\u{e752}" - case equalizer24px = "\u{e753}" - case equalizer48px = "\u{e754}" - case explicit24px = "\u{e755}" - case explicit48px = "\u{e756}" - case fastForward24px = "\u{e757}" - case fastForward48px = "\u{e758}" - case fastRewind24px = "\u{e759}" - case fastRewind48px = "\u{e75a}" - case games24px = "\u{e75b}" - case games48px = "\u{e75c}" - case hearing24px = "\u{e75d}" - case hearing48px = "\u{e75e}" - case highQuality24px = "\u{e75f}" - case highQuality48px = "\u{e760}" - case loop24px = "\u{e761}" - case loop48px = "\u{e762}" - case mic24px = "\u{e763}" - case mic48px = "\u{e764}" - case micNone24px = "\u{e765}" - case micNone48px = "\u{e766}" - case micOff24px = "\u{e767}" - case micOff48px = "\u{e768}" - case movie24px = "\u{e769}" - case movie48px = "\u{e76a}" - case myLibraryAdd24px = "\u{e76b}" - case myLibraryAdd48px = "\u{e76c}" - case myLibraryBooks24px = "\u{e76d}" - case myLibraryBooks48px = "\u{e76e}" - case myLibraryMusic24px = "\u{e76f}" - case myLibraryMusic48px = "\u{e770}" - case newReleases24px = "\u{e771}" - case newReleases48px = "\u{e772}" - case notInterested24px = "\u{e773}" - case notInterested48px = "\u{e774}" - case pause24px = "\u{e775}" - case pause48px = "\u{e776}" - case pauseCircleFill24px = "\u{e777}" - case pauseCircleFill48px = "\u{e778}" - case pauseCircleOutline24px = "\u{e779}" - case pauseCircleOutline48px = "\u{e77a}" - case playArrow24px = "\u{e77b}" - case playArrow48px = "\u{e77c}" - case playCircleFill24px = "\u{e77d}" - case playCircleFill48px = "\u{e77e}" - case playCircleOutline24px = "\u{e77f}" - case playCircleOutline48px = "\u{e780}" - case playShoppingBag24px = "\u{e781}" - case playShoppingBag48px = "\u{e782}" - case playlistAdd24px = "\u{e783}" - case playlistAdd48px = "\u{e784}" - case queue24px = "\u{e785}" - case queue48px = "\u{e786}" - case queueMusic24px = "\u{e787}" - case queueMusic48px = "\u{e788}" - case radio24px = "\u{e789}" - case radio48px = "\u{e78a}" - case recentActors24px = "\u{e78b}" - case recentActors48px = "\u{e78c}" - case repeat24px = "\u{e78d}" - case repeat48px = "\u{e78e}" - - case repeatOne24px = "\u{e78f}" - case repeatOne48px = "\u{e790}" - case replay24px = "\u{e791}" - case replay48px = "\u{e792}" - case shuffle24px = "\u{e793}" - case shuffle48px = "\u{e794}" - case skipNext24px = "\u{e795}" - case skipNext48px = "\u{e796}" - case skipPrevious24px = "\u{e797}" - case skipPrevious48px = "\u{e798}" - case snooze24px = "\u{e799}" - case snooze48px = "\u{e79a}" - case stop24px = "\u{e79b}" - case stop48px = "\u{e79c}" - case subtitles24px = "\u{e79d}" - case subtitles48px = "\u{e79e}" - case surroundSound24px = "\u{e79f}" - case surroundSound48px = "\u{e7a0}" - case videoCollection24px = "\u{e7a1}" - case videoCollection48px = "\u{e7a2}" - case videocam24px = "\u{e7a3}" - case videocam48px = "\u{e7a4}" - case videocamOff24px = "\u{e7a5}" - case videocamOff48px = "\u{e7a6}" - case volumeDown18px = "\u{e7a7}" - case volumeDown24px = "\u{e7a8}" - case volumeDown48px = "\u{e7a9}" - case volumeMute18px = "\u{e7aa}" - case volumeMute24px = "\u{e7ab}" - case volumeMute48px = "\u{e7ac}" - case volumeOff24px = "\u{e7ad}" - case volumeOff48px = "\u{e7ae}" - case volumeUp18px = "\u{e7af}" - case volumeUp24px = "\u{e7b0}" - case volumeUp48px = "\u{e7b1}" - case web24px = "\u{e7b2}" - case web48px = "\u{e7b3}" - case business24px = "\u{e7b4}" - case business48px = "\u{e7b5}" - case call24px = "\u{e7b6}" - case call48px = "\u{e7b7}" - case callEnd24px = "\u{e7b8}" - case callEnd48px = "\u{e7b9}" - case callMade24px = "\u{e7ba}" - case callMade48px = "\u{e7bb}" - case callMerge24px = "\u{e7bc}" - case callMerge48px = "\u{e7bd}" - case callMissed24px = "\u{e7be}" - case callMissed48px = "\u{e7bf}" - case callReceived24px = "\u{e7c0}" - case callReceived48px = "\u{e7c1}" - case callSplit24px = "\u{e7c2}" - case callSplit48px = "\u{e7c3}" - case chat24px = "\u{e7c4}" - case chat48px = "\u{e7c5}" - case clearAll24px = "\u{e7c6}" - case clearAll48px = "\u{e7c7}" - case comment24px = "\u{e7c8}" - case comment48px = "\u{e7c9}" - case contacts24px = "\u{e7ca}" - case contacts48px = "\u{e7cb}" - case dialerSip24px = "\u{e7cc}" - case dialerSip48px = "\u{e7cd}" - case dialpad24px = "\u{e7ce}" - case dialpad48px = "\u{e7cf}" - case dndOn24px = "\u{e7d0}" - case dndOn48px = "\u{e7d1}" - case email24px = "\u{e7d2}" - case email48px = "\u{e7d3}" - case forum24px = "\u{e7d4}" - case forum48px = "\u{e7d5}" - case importExport24px = "\u{e7d6}" - case importExport48px = "\u{e7d7}" - case invertColorsOff24px = "\u{e7d8}" - case invertColorsOff48px = "\u{e7d9}" - case invertColorsOn24px = "\u{e7da}" - case invertColorsOn48px = "\u{e7db}" - case liveHelp24px = "\u{e7dc}" - case liveHelp48px = "\u{e7dd}" - case locationOff24px = "\u{e7de}" - case locationOff48px = "\u{e7df}" - case locationOn24px = "\u{e7e0}" - case locationOn48px = "\u{e7e1}" - case message24px = "\u{e7e2}" - case message48px = "\u{e7e3}" - case messenger24px = "\u{e7e4}" - case messenger48px = "\u{e7e5}" - case noSim24px = "\u{e7e6}" - case noSim48px = "\u{e7e7}" - case phone24px = "\u{e7e8}" - case phone48px = "\u{e7e9}" - case portableWifiOff24px = "\u{e7ea}" - case portableWifiOff48px = "\u{e7eb}" - case quickContactsDialer24px = "\u{e7ec}" - case quickContactsDialer48px = "\u{e7ed}" - case quickContactsMail24px = "\u{e7ee}" - case quickContactsMail48px = "\u{e7ef}" - case ringVolume24px = "\u{e7f0}" - case ringVolume48px = "\u{e7f1}" - case stayCurrentLandscape24px = "\u{e7f2}" - case stayCurrentLandscape48px = "\u{e7f3}" - case stayCurrentPortrait24px = "\u{e7f4}" - case stayCurrentPortrait48px = "\u{e7f5}" - case stayPrimaryLandscape24px = "\u{e7f6}" - case stayPrimaryLandscape48px = "\u{e7f7}" - case stayPrimaryPortrait24px = "\u{e7f8}" - case stayPrimaryPortrait48px = "\u{e7f9}" - case swapCalls24px = "\u{e7fa}" - case swapCalls48px = "\u{e7fb}" - case textsms24px = "\u{e7fc}" - case textsms48px = "\u{e7fd}" - case voicemail24px = "\u{e7fe}" - case voicemail48px = "\u{e7ff}" - case vpnKey24px = "\u{e800}" - case vpnKey48px = "\u{e801}" - case add24px = "\u{e802}" - case add48px = "\u{e803}" - case addBox24px = "\u{e804}" - case addBox48px = "\u{e805}" - case addCircle24px = "\u{e806}" - case addCircle48px = "\u{e807}" - case addCircleOutline24px = "\u{e808}" - case addCircleOutline48px = "\u{e809}" - case archive24px = "\u{e80a}" - case archive48px = "\u{e80b}" - case backspace24px = "\u{e80c}" - case backspace48px = "\u{e80d}" - case block24px = "\u{e80e}" - case block48px = "\u{e80f}" - case clear24px = "\u{e810}" - case clear48px = "\u{e811}" - case contentCopy24px = "\u{e812}" - case contentCopy48px = "\u{e813}" - case contentCut24px = "\u{e814}" - case contentCut48px = "\u{e815}" - case contentPaste24px = "\u{e816}" - case contentPaste48px = "\u{e817}" - case create24px = "\u{e818}" - case create48px = "\u{e819}" - case drafts24px = "\u{e81a}" - case drafts48px = "\u{e81b}" - case filterList24px = "\u{e81c}" - case filterList48px = "\u{e81d}" - case flag24px = "\u{e81e}" - case flag48px = "\u{e81f}" - case forward24px = "\u{e820}" - case forward48px = "\u{e821}" - case gesture24px = "\u{e822}" - case gesture48px = "\u{e823}" - case inbox24px = "\u{e824}" - case inbox48px = "\u{e825}" - case link24px = "\u{e826}" - case link48px = "\u{e827}" - case mail24px = "\u{e828}" - case mail48px = "\u{e829}" - case markunread24px = "\u{e82a}" - case markunread48px = "\u{e82b}" - case redo24px = "\u{e82c}" - case redo48px = "\u{e82d}" - case remove24px = "\u{e82e}" - case remove48px = "\u{e82f}" - case removeCircle24px = "\u{e830}" - case removeCircle48px = "\u{e831}" - case removeCircleOutline24px = "\u{e832}" - case removeCircleOutline48px = "\u{e833}" - case reply24px = "\u{e834}" - case reply48px = "\u{e835}" - case replyAll24px = "\u{e836}" - case replyAll48px = "\u{e837}" - case report24px = "\u{e838}" - case report48px = "\u{e839}" - case save24px = "\u{e83a}" - case save48px = "\u{e83b}" - case selectAll24px = "\u{e83c}" - case selectAll48px = "\u{e83d}" - case send24px = "\u{e83e}" - case send48px = "\u{e83f}" - case sort24px = "\u{e840}" - case sort48px = "\u{e841}" - case textFormat24px = "\u{e842}" - case textFormat48px = "\u{e843}" - case undo24px = "\u{e844}" - case undo48px = "\u{e845}" - case accessAlarm24px = "\u{e846}" - case accessAlarm48px = "\u{e847}" - case accessAlarms24px = "\u{e848}" - case accessAlarms48px = "\u{e849}" - case accessTime24px = "\u{e84a}" - case accessTime48px = "\u{e84b}" - case addAlarm24px = "\u{e84c}" - case addAlarm48px = "\u{e84d}" - case airplanemodeOff24px = "\u{e84e}" - case airplanemodeOff48px = "\u{e84f}" - case airplanemodeOn24px = "\u{e850}" - case airplanemodeOn48px = "\u{e851}" - case battery2018px = "\u{e852}" +public enum MaterialDesignIconEnum: String, CaseIterable { + case accessibility24px = "\u{e84e}" + case accountBalance24px = "\u{e84f}" + case accountBalanceWallet24px = "\u{e850}" + case accountBox18px = "\u{e851}" + case accountChild24px = "\u{e852}" + case accountCircle18px = "\u{f20b}" + case adb18px = "\u{e60e}" + case add24px = "\u{e145}" + case addBox24px = "\u{e146}" + case addCircle24px = "\u{e3ba}" + case addShoppingCart24px = "\u{e854}" + case addToPhotos24px = "\u{e39d}" + case adjust24px = "\u{e39e}" + case alarm24px = "\u{e855}" + case alarmAdd24px = "\u{e856}" + case alarmOff24px = "\u{e857}" + case alarmOn24px = "\u{e858}" + case album24px = "\u{e019}" + case android24px = "\u{e859}" + case announcement24px = "\u{e87f}" + case apps18px = "\u{e5c3}" + case archive24px = "\u{e149}" + case arrowBack18px = "\u{e5c4}" + case arrowDropDown18px = "\u{e5c5}" + case arrowDropDownCircle24px = "\u{e5c6}" + case arrowDropUp18px = "\u{e5c7}" + case arrowForward18px = "\u{e5c8}" + case aspectRatio24px = "\u{e85b}" + case assessment24px = "\u{f0cc}" + case assignment24px = "\u{e85d}" + case assignmentInd24px = "\u{e85e}" + case assignmentLate24px = "\u{e85f}" + case assignmentReturn24px = "\u{e860}" + case assignmentReturned24px = "\u{e861}" + case assignmentTurnedIn24px = "\u{e862}" + case attachFile18px = "\u{e226}" + case attachment18px = "\u{e2bc}" + case attachMoney18px = "\u{e227}" + case audiotrack24px = "\u{e405}" + case autorenew24px = "\u{e863}" + case avTimer24px = "\u{e01b}" + case backspace24px = "\u{e14a}" + case backup24px = "\u{e864}" case battery2024px = "\u{e853}" - case battery2048px = "\u{e854}" - case battery3018px = "\u{e855}" - case battery3024px = "\u{e856}" - case battery3048px = "\u{e857}" - case battery5018px = "\u{e858}" - case battery5024px = "\u{e859}" case battery5048px = "\u{e85a}" - case battery6018px = "\u{e85b}" case battery6024px = "\u{e85c}" - case battery6048px = "\u{e85d}" - case battery8018px = "\u{e85e}" - case battery8024px = "\u{e85f}" - case battery8048px = "\u{e860}" - case battery9018px = "\u{e861}" - case battery9024px = "\u{e862}" - case battery9048px = "\u{e863}" - case batteryAlert18px = "\u{e864}" - case batteryAlert24px = "\u{e865}" - case batteryAlert48px = "\u{e866}" + case batteryAlert18px = "\u{e19c}" case batteryCharging2018px = "\u{e867}" - case batteryCharging2024px = "\u{e868}" case batteryCharging2048px = "\u{e869}" - case batteryCharging3018px = "\u{e86a}" case batteryCharging3024px = "\u{e86b}" case batteryCharging3048px = "\u{e86c}" case batteryCharging5018px = "\u{e86d}" - case batteryCharging5024px = "\u{e86e}" case batteryCharging5048px = "\u{e86f}" case batteryCharging6018px = "\u{e870}" - case batteryCharging6024px = "\u{e871}" case batteryCharging6048px = "\u{e872}" - case batteryCharging8018px = "\u{e873}" case batteryCharging8024px = "\u{e874}" - case batteryCharging8048px = "\u{e875}" - case batteryCharging9018px = "\u{e876}" - case batteryCharging9024px = "\u{e877}" - case batteryCharging9048px = "\u{e878}" - case batteryChargingFull18px = "\u{e879}" - case batteryChargingFull24px = "\u{e87a}" - case batteryChargingFull48px = "\u{e87b}" - case batteryFull18px = "\u{e87c}" - case batteryFull24px = "\u{e87d}" - case batteryFull48px = "\u{e87e}" - case batteryStd18px = "\u{e87f}" - case batteryStd24px = "\u{e880}" - case batteryStd48px = "\u{e881}" - case batteryUnknown18px = "\u{e882}" - case batteryUnknown24px = "\u{e883}" - case batteryUnknown48px = "\u{e884}" - case bluetooth24px = "\u{e885}" - case bluetooth48px = "\u{e886}" - case bluetoothConnected24px = "\u{e887}" - case bluetoothConnected48px = "\u{e888}" - case bluetoothDisabled24px = "\u{e889}" - case bluetoothDisabled48px = "\u{e88a}" - case bluetoothSearching24px = "\u{e88b}" - case bluetoothSearching48px = "\u{e88c}" - case brightnessAuto24px = "\u{e88d}" - case brightnessAuto48px = "\u{e88e}" - case brightnessHigh24px = "\u{e88f}" - case brightnessHigh48px = "\u{e890}" - case brightnessLow24px = "\u{e891}" - case brightnessLow48px = "\u{e892}" - case brightnessMedium24px = "\u{e893}" - case brightnessMedium48px = "\u{e894}" - case dataUsage24px = "\u{e895}" - case dataUsage48px = "\u{e896}" - case developerMode24px = "\u{e897}" - case developerMode48px = "\u{e898}" - case devices24px = "\u{e899}" - case devices48px = "\u{e89a}" - case dvr24px = "\u{e89b}" - case dvr48px = "\u{e89c}" - case gpsFixed24px = "\u{e89d}" - case gpsFixed48px = "\u{e89e}" - case gpsNotFixed24px = "\u{e89f}" - case gpsNotFixed48px = "\u{e8a0}" - case gpsOff24px = "\u{e8a1}" - case gpsOff48px = "\u{e8a2}" - case locationDisabled24px = "\u{e8a3}" - case locationDisabled48px = "\u{e8a4}" - case locationSearching24px = "\u{e8a5}" - case locationSearching48px = "\u{e8a6}" - case multitrackAudio24px = "\u{e8a7}" - case multitrackAudio48px = "\u{e8a8}" - case networkCell18px = "\u{e8a9}" - case networkCell24px = "\u{e8aa}" - case networkCell48px = "\u{e8ab}" - case networkWifi18px = "\u{e8ac}" - case networkWifi24px = "\u{e8ad}" - case networkWifi48px = "\u{e8ae}" - case nfc24px = "\u{e8af}" - case nfc48px = "\u{e8b0}" - case nowWallpaper18px = "\u{e8b1}" - case nowWallpaper24px = "\u{e8b2}" - case nowWallpaper48px = "\u{e8b3}" - case nowWidgets18px = "\u{e8b4}" - case nowWidgets24px = "\u{e8b5}" - case nowWidgets48px = "\u{e8b6}" - case screenLockLandscape24px = "\u{e8b7}" - case screenLockLandscape48px = "\u{e8b8}" - case screenLockPortrait24px = "\u{e8b9}" - case screenLockPortrait48px = "\u{e8ba}" - case screenLockRotation24px = "\u{e8bb}" - case screenLockRotation48px = "\u{e8bc}" - case screenRotation24px = "\u{e8bd}" - case screenRotation48px = "\u{e8be}" - case sdStorage24px = "\u{e8bf}" - case sdStorage48px = "\u{e8c0}" - case settingsSystemDaydream24px = "\u{e8c1}" - case settingsSystemDaydream48px = "\u{e8c2}" - case signalCellular0Bar18px = "\u{e8c3}" - case signalCellular0Bar24px = "\u{e8c4}" - case signalCellular0Bar48px = "\u{e8c5}" - case signalCellular1Bar18px = "\u{e8c6}" - case signalCellular1Bar24px = "\u{e8c7}" - case signalCellular1Bar48px = "\u{e8c8}" - case signalCellular2Bar18px = "\u{e8c9}" - case signalCellular2Bar24px = "\u{e8ca}" - case signalCellular2Bar48px = "\u{e8cb}" - case signalCellular3Bar18px = "\u{e8cc}" - case signalCellular3Bar24px = "\u{e8cd}" - case signalCellular3Bar48px = "\u{e8ce}" - case signalCellular4Bar18px = "\u{e8cf}" - case signalCellular4Bar24px = "\u{e8d0}" - case signalCellular4Bar48px = "\u{e8d1}" - case signalCellularConnectedNoInternet0Bar18px = "\u{e8d2}" - case signalCellularConnectedNoInternet0Bar24px = "\u{e8d3}" - case signalCellularConnectedNoInternet0Bar48px = "\u{e8d4}" - case signalCellularConnectedNoInternet1Bar18px = "\u{e8d5}" - case signalCellularConnectedNoInternet1Bar24px = "\u{e8d6}" - case signalCellularConnectedNoInternet1Bar48px = "\u{e8d7}" - case signalCellularConnectedNoInternet2Bar18px = "\u{e8d8}" - case signalCellularConnectedNoInternet2Bar24px = "\u{e8d9}" - case signalCellularConnectedNoInternet2Bar48px = "\u{e8da}" - case signalCellularConnectedNoInternet3Bar18px = "\u{e8db}" - case signalCellularConnectedNoInternet3Bar24px = "\u{e8dc}" - case signalCellularConnectedNoInternet3Bar48px = "\u{e8dd}" - case signalCellularConnectedNoInternet4Bar18px = "\u{e8de}" - case signalCellularConnectedNoInternet4Bar24px = "\u{e8df}" - case signalCellularConnectedNoInternet4Bar48px = "\u{e8e0}" - case signalCellularNoSim24px = "\u{e8e1}" - case signalCellularNoSim48px = "\u{e8e2}" - case signalCellularNull18px = "\u{e8e3}" - case signalCellularNull24px = "\u{e8e4}" - case signalCellularNull48px = "\u{e8e5}" - case signalCellularOff18px = "\u{e8e6}" - case signalCellularOff24px = "\u{e8e7}" - case signalCellularOff48px = "\u{e8e8}" - case signalWifi0Bar18px = "\u{e8e9}" - case signalWifi0Bar24px = "\u{e8ea}" - case signalWifi0Bar48px = "\u{e8eb}" - case signalWifi1Bar18px = "\u{e8ec}" - case signalWifi1Bar24px = "\u{e8ed}" - case signalWifi1Bar48px = "\u{e8ee}" - case signalWifi2Bar18px = "\u{e8ef}" - case signalWifi2Bar24px = "\u{e8f0}" - case signalWifi2Bar48px = "\u{e8f1}" - case signalWifi3Bar18px = "\u{e8f2}" - case signalWifi3Bar24px = "\u{e8f3}" - case signalWifi3Bar48px = "\u{e8f4}" - case signalWifi4Bar18px = "\u{e8f5}" - case signalWifi4Bar24px = "\u{e8f6}" - case signalWifi4Bar48px = "\u{e8f7}" - case signalWifiOff18px = "\u{e8f8}" - case signalWifiOff24px = "\u{e8f9}" - case signalWifiOff48px = "\u{e8fa}" - case signalWifiStatusbar1Bar26x24px = "\u{e8fb}" - case signalWifiStatusbar2Bar26x24px = "\u{e8fc}" - case signalWifiStatusbar3Bar26x24px = "\u{e8fd}" - case signalWifiStatusbar4Bar26x24px = "\u{e8fe}" - case signalWifiStatusbarConnectedNoInternet126x24px = "\u{e8ff}" - case signalWifiStatusbarConnectedNoInternet226x24px = "\u{e900}" - case signalWifiStatusbarConnectedNoInternet326x24px = "\u{e901}" - case signalWifiStatusbarConnectedNoInternet426x24px = "\u{e902}" - case signalWifiStatusbarConnectedNoInternet26x24px = "\u{e903}" - case signalWifiStatusbarNotConnected26x24px = "\u{e904}" - case signalWifiStatusbarNull26x24px = "\u{e905}" - case storage24px = "\u{e906}" - case storage48px = "\u{e907}" - case usb18px = "\u{e908}" - case usb24px = "\u{e909}" - case usb48px = "\u{e90a}" - case wifiLock24px = "\u{e90b}" - case wifiLock48px = "\u{e90c}" - case wifiTethering24px = "\u{e90d}" - case wifiTethering48px = "\u{e90e}" - case attachFile18px = "\u{e90f}" - case attachFile24px = "\u{e910}" - case attachFile48px = "\u{e911}" - case attachMoney18px = "\u{e912}" - case attachMoney24px = "\u{e913}" - case attachMoney48px = "\u{e914}" - case borderAll18px = "\u{e915}" - case borderAll24px = "\u{e916}" - case borderAll48px = "\u{e917}" - case borderBottom18px = "\u{e918}" - case borderBottom24px = "\u{e919}" - case borderBottom48px = "\u{e91a}" - case borderClear18px = "\u{e91b}" - case borderClear24px = "\u{e91c}" - case borderClear48px = "\u{e91d}" - - case borderColor18px = "\u{e91e}" - case borderColor24px = "\u{e91f}" - case borderColor48px = "\u{e920}" - case borderHorizontal18px = "\u{e921}" - case borderHorizontal24px = "\u{e922}" - case borderHorizontal48px = "\u{e923}" - case borderInner18px = "\u{e924}" - case borderInner24px = "\u{e925}" - case borderInner48px = "\u{e926}" - case borderLeft18px = "\u{e927}" - case borderLeft24px = "\u{e928}" - case borderLeft48px = "\u{e929}" - case borderOuter18px = "\u{e92a}" - case borderOuter24px = "\u{e92b}" - case borderOuter48px = "\u{e92c}" - case borderRight18px = "\u{e92d}" - case borderRight24px = "\u{e92e}" - case borderRight48px = "\u{e92f}" - case borderStyle18px = "\u{e930}" - case borderStyle24px = "\u{e931}" - case borderStyle48px = "\u{e932}" - case borderTop18px = "\u{e933}" - case borderTop24px = "\u{e934}" - case borderTop48px = "\u{e935}" - case borderVertical18px = "\u{e936}" - case borderVertical24px = "\u{e937}" - case borderVertical48px = "\u{e938}" - case formatAlignCenter18px = "\u{e939}" - case formatAlignCenter24px = "\u{e93a}" - case formatAlignCenter48px = "\u{e93b}" - case formatAlignJustify18px = "\u{e93c}" - case formatAlignJustify24px = "\u{e93d}" - case formatAlignJustify48px = "\u{e93e}" - case formatAlignLeft18px = "\u{e93f}" - case formatAlignLeft24px = "\u{e940}" - case formatAlignLeft48px = "\u{e941}" - case formatAlignRight18px = "\u{e942}" - case formatAlignRight24px = "\u{e943}" - case formatAlignRight48px = "\u{e944}" - case formatBold18px = "\u{e945}" - case formatBold24px = "\u{e946}" - case formatBold48px = "\u{e947}" - case formatClear18px = "\u{e948}" - case formatClear24px = "\u{e949}" - case formatClear48px = "\u{e94a}" - case formatColorFill18px = "\u{e94b}" - case formatColorFill24px = "\u{e94c}" - case formatColorFill48px = "\u{e94d}" - case formatColorReset18px = "\u{e94e}" - case formatColorReset24px = "\u{e94f}" - case formatColorReset48px = "\u{e950}" - case formatColorText18px = "\u{e951}" - case formatColorText24px = "\u{e952}" - case formatColorText48px = "\u{e953}" - case formatIndentDecrease18px = "\u{e954}" - case formatIndentDecrease24px = "\u{e955}" - case formatIndentDecrease48px = "\u{e956}" - case formatIndentIncrease18px = "\u{e957}" - case formatIndentIncrease24px = "\u{e958}" - case formatIndentIncrease48px = "\u{e959}" - case formatItalic18px = "\u{e95a}" - case formatItalic24px = "\u{e95b}" - case formatItalic48px = "\u{e95c}" - case formatLineSpacing18px = "\u{e95d}" - case formatLineSpacing24px = "\u{e95e}" - case formatLineSpacing48px = "\u{e95f}" - case formatListBulleted18px = "\u{e960}" - case formatListBulleted24px = "\u{e961}" - case formatListBulleted48px = "\u{e962}" - case formatListNumbered18px = "\u{e963}" - case formatListNumbered24px = "\u{e964}" - case formatListNumbered48px = "\u{e965}" - case formatPaint18px = "\u{e966}" - case formatPaint24px = "\u{e967}" - case formatPaint48px = "\u{e968}" - case formatQuote18px = "\u{e969}" - case formatQuote24px = "\u{e96a}" - case formatQuote48px = "\u{e96b}" - case formatSize18px = "\u{e96c}" - case formatSize24px = "\u{e96d}" - case formatSize48px = "\u{e96e}" - case formatStrikethrough18px = "\u{e96f}" - case formatStrikethrough24px = "\u{e970}" - case formatStrikethrough48px = "\u{e971}" - case formatTextdirectionLToR18px = "\u{e972}" - case formatTextdirectionLToR24px = "\u{e973}" - case formatTextdirectionLToR48px = "\u{e974}" - case formatTextdirectionRToL18px = "\u{e975}" - case formatTextdirectionRToL24px = "\u{e976}" - case formatTextdirectionRToL48px = "\u{e977}" - case formatUnderline18px = "\u{e978}" - case formatUnderline24px = "\u{e979}" - case formatUnderline48px = "\u{e97a}" - case functions18px = "\u{e97b}" - case functions24px = "\u{e97c}" - case functions48px = "\u{e97d}" - case insertChart18px = "\u{e97e}" - case insertChart24px = "\u{e97f}" - case insertChart48px = "\u{e980}" - case insertComment18px = "\u{e981}" - case insertComment24px = "\u{e982}" - case insertComment48px = "\u{e983}" - case insertDriveFile18px = "\u{e984}" - case insertDriveFile24px = "\u{e985}" - case insertDriveFile48px = "\u{e986}" - case insertEmoticon18px = "\u{e987}" - case insertEmoticon24px = "\u{e988}" - case insertEmoticon48px = "\u{e989}" - case insertInvitation18px = "\u{e98a}" - case insertInvitation24px = "\u{e98b}" - case insertInvitation48px = "\u{e98c}" - case insertLink18px = "\u{e98d}" - case insertLink24px = "\u{e98e}" - case insertLink48px = "\u{e98f}" - case insertPhoto18px = "\u{e990}" - case insertPhoto24px = "\u{e991}" - case insertPhoto48px = "\u{e992}" - case mergeType18px = "\u{e993}" - case mergeType24px = "\u{e994}" - case mergeType48px = "\u{e995}" - case modeComment18px = "\u{e996}" - case modeComment24px = "\u{e997}" - case modeComment48px = "\u{e998}" - case modeEdit18px = "\u{e999}" - case modeEdit24px = "\u{e99a}" - case modeEdit48px = "\u{e99b}" - case publish18px = "\u{e99c}" - case publish24px = "\u{e99d}" - case publish48px = "\u{e99e}" - case verticalAlignBottom18px = "\u{e99f}" - case verticalAlignBottom24px = "\u{e9a0}" - case verticalAlignBottom48px = "\u{e9a1}" - case verticalAlignCenter18px = "\u{e9a2}" - case verticalAlignCenter24px = "\u{e9a3}" - case verticalAlignCenter48px = "\u{e9a4}" - case verticalAlignTop18px = "\u{e9a5}" - case verticalAlignTop24px = "\u{e9a6}" - case verticalAlignTop48px = "\u{e9a7}" - case wrapText18px = "\u{e9a8}" - case wrapText24px = "\u{e9a9}" - case wrapText48px = "\u{e9aa}" - case attachment18px = "\u{e9ab}" - case attachment24px = "\u{e9ac}" - case attachment48px = "\u{e9ad}" - case cloud24px = "\u{e9ae}" - case cloud48px = "\u{e9af}" - case cloudCircle18px = "\u{e9b0}" - case cloudCircle24px = "\u{e9b1}" - case cloudCircle48px = "\u{e9b2}" - case cloudDone24px = "\u{e9b3}" - case cloudDone48px = "\u{e9b4}" - case cloudDownload24px = "\u{e9b5}" - case cloudDownload48px = "\u{e9b6}" - case cloudOff24px = "\u{e9b7}" - case cloudOff48px = "\u{e9b8}" - case cloudQueue24px = "\u{e9b9}" - case cloudQueue48px = "\u{e9ba}" - case cloudUpload24px = "\u{e9bb}" - case cloudUpload48px = "\u{e9bc}" - case fileDownload24px = "\u{e9bd}" - case fileDownload48px = "\u{e9be}" - case fileUpload24px = "\u{e9bf}" - case fileUpload48px = "\u{e9c0}" - case folder18px = "\u{e9c1}" - case folder24px = "\u{e9c2}" - case folder48px = "\u{e9c3}" - case folderOpen18px = "\u{e9c4}" - case folderOpen24px = "\u{e9c5}" - case folderOpen48px = "\u{e9c6}" - case folderShared18px = "\u{e9c7}" - case folderShared24px = "\u{e9c8}" - case folderShared48px = "\u{e9c9}" - case cast24px = "\u{e9ca}" - case cast48px = "\u{e9cb}" - case castConnected24px = "\u{e9cc}" - case castConnected48px = "\u{e9cd}" - case computer24px = "\u{e9ce}" - case computer48px = "\u{e9cf}" - case desktopMac24px = "\u{e9d0}" - case desktopMac48px = "\u{e9d1}" - case desktopWindows24px = "\u{e9d2}" - case desktopWindows48px = "\u{e9d3}" - case dock24px = "\u{e9d4}" - case dock48px = "\u{e9d5}" - case gamepad24px = "\u{e9d6}" - case gamepad48px = "\u{e9d7}" - case headset24px = "\u{e9d8}" - case headset48px = "\u{e9d9}" - case headsetMic24px = "\u{e9da}" - case headsetMic48px = "\u{e9db}" - case keyboard24px = "\u{e9dc}" - case keyboard48px = "\u{e9dd}" - case keyboardAlt24px = "\u{e9de}" - case keyboardAlt48px = "\u{e9df}" - case keyboardArrowDown24px = "\u{e9e0}" - case keyboardArrowDown48px = "\u{e9e1}" - case keyboardArrowLeft24px = "\u{e9e2}" - case keyboardArrowLeft48px = "\u{e9e3}" - case keyboardArrowRight24px = "\u{e9e4}" - case keyboardArrowRight48px = "\u{e9e5}" - case keyboardArrowUp24px = "\u{e9e6}" - case keyboardArrowUp48px = "\u{e9e7}" - case keyboardBackspace24px = "\u{e9e8}" - case keyboardBackspace48px = "\u{e9e9}" - case keyboardCapslock24px = "\u{e9ea}" - case keyboardCapslock48px = "\u{e9eb}" - case keyboardControl24px = "\u{e9ec}" - case keyboardControl48px = "\u{e9ed}" - case keyboardHide24px = "\u{e9ee}" - case keyboardHide48px = "\u{e9ef}" - case keyboardReturn24px = "\u{e9f0}" - case keyboardReturn48px = "\u{e9f1}" - case keyboardTab24px = "\u{e9f2}" - case keyboardTab48px = "\u{e9f3}" - case keyboardVoice24px = "\u{e9f4}" - case keyboardVoice48px = "\u{e9f5}" - case laptop24px = "\u{e9f6}" - case laptop48px = "\u{e9f7}" - case laptopChromebook24px = "\u{e9f8}" - case laptopChromebook48px = "\u{e9f9}" - case laptopMac24px = "\u{e9fa}" - case laptopMac48px = "\u{e9fb}" - case laptopWindows24px = "\u{e9fc}" - case laptopWindows48px = "\u{e9fd}" - case memory24px = "\u{e9fe}" - case memory48px = "\u{e9ff}" - case mouse24px = "\u{ea00}" - case mouse48px = "\u{ea01}" - case phoneAndroid24px = "\u{ea02}" - case phoneAndroid48px = "\u{ea03}" - case phoneIphone24px = "\u{ea04}" - case phoneIphone48px = "\u{ea05}" - case phonelink24px = "\u{ea06}" - case phonelink48px = "\u{ea07}" - case phonelinkOff24px = "\u{ea08}" - case phonelinkOff48px = "\u{ea09}" - case security24px = "\u{ea0a}" - case security48px = "\u{ea0b}" - case simCard24px = "\u{ea0c}" - case simCard48px = "\u{ea0d}" - case smartphone24px = "\u{ea0e}" - case smartphone48px = "\u{ea0f}" - case speaker24px = "\u{ea10}" - case speaker48px = "\u{ea11}" - case tablet24px = "\u{ea12}" - case tablet48px = "\u{ea13}" - case tabletAndroid24px = "\u{ea14}" - case tabletAndroid48px = "\u{ea15}" - case tabletMac24px = "\u{ea16}" - case tabletMac48px = "\u{ea17}" - case tv24px = "\u{ea18}" - case tv48px = "\u{ea19}" - case watch24px = "\u{ea1a}" - case watch48px = "\u{ea1b}" - case addToPhotos24px = "\u{ea1c}" - case addToPhotos48px = "\u{ea1d}" - case adjust24px = "\u{ea1e}" - case adjust48px = "\u{ea1f}" - case assistantPhoto24px = "\u{ea20}" - case assistantPhoto48px = "\u{ea21}" - case audiotrack24px = "\u{ea22}" - case audiotrack48px = "\u{ea23}" - case blurCircular24px = "\u{ea24}" - case blurCircular48px = "\u{ea25}" - case blurLinear24px = "\u{ea26}" - case blurLinear48px = "\u{ea27}" - case blurOff24px = "\u{ea28}" - case blurOff48px = "\u{ea29}" - case blurOn24px = "\u{ea2a}" - case blurOn48px = "\u{ea2b}" + case batteryChargingFull18px = "\u{e1a3}" + case batteryFull18px = "\u{e1a5}" + case batteryUnknown18px = "\u{e1a6}" + case beenhere24px = "\u{e52d}" + case bluetooth24px = "\u{e1a7}" + case bluetoothConnected24px = "\u{e1a8}" + case bluetoothDisabled24px = "\u{e1a9}" + case bluetoothSearching24px = "\u{e60f}" + case blurCircular24px = "\u{e3a2}" + case blurLinear24px = "\u{e3a3}" + case blurOff24px = "\u{e3a4}" + case blurOn24px = "\u{e3a5}" + case book24px = "\u{e86e}" + case bookmark24px = "\u{e8e7}" + case borderAll18px = "\u{e228}" + case borderBottom18px = "\u{e229}" + case borderClear18px = "\u{e22a}" + case borderColor18px = "\u{e22b}" + case borderHorizontal18px = "\u{e22c}" + case borderInner18px = "\u{e22d}" + case borderLeft18px = "\u{e22e}" + case borderOuter18px = "\u{e22f}" + case borderRight18px = "\u{e230}" + case borderStyle18px = "\u{e231}" + case borderTop18px = "\u{e232}" + case borderVertical18px = "\u{e233}" case brightness124px = "\u{ea2c}" case brightness148px = "\u{ea2d}" case brightness224px = "\u{ea2e}" @@ -1093,64 +109,109 @@ public enum MaterialDesignIconEnum: String { case brightness648px = "\u{ea37}" case brightness724px = "\u{ea38}" case brightness748px = "\u{ea39}" - case brush24px = "\u{ea3a}" - case brush48px = "\u{ea3b}" - case camera24px = "\u{ea3c}" - case camera48px = "\u{ea3d}" - case cameraAlt24px = "\u{ea3e}" - case cameraAlt48px = "\u{ea3f}" - case cameraFront24px = "\u{ea40}" - case cameraFront48px = "\u{ea41}" - case cameraRear24px = "\u{ea42}" - case cameraRear48px = "\u{ea43}" - case cameraRoll24px = "\u{ea44}" - case cameraRoll48px = "\u{ea45}" - case centerFocusStrong24px = "\u{ea46}" - case centerFocusStrong48px = "\u{ea47}" - case centerFocusWeak24px = "\u{ea48}" - case centerFocusWeak48px = "\u{ea49}" - case collections24px = "\u{ea4a}" - case collections48px = "\u{ea4b}" - case colorLens24px = "\u{ea4c}" - case colorLens48px = "\u{ea4d}" - case colorize24px = "\u{ea4e}" - case colorize48px = "\u{ea4f}" - case compare24px = "\u{ea50}" - case compare48px = "\u{ea51}" - case controlPoint24px = "\u{ea52}" - case controlPoint48px = "\u{ea53}" - case controlPointDuplicate24px = "\u{ea54}" - case controlPointDuplicate48px = "\u{ea55}" - case crop3224px = "\u{ea56}" - case crop3248px = "\u{ea57}" - case crop5424px = "\u{ea58}" - case crop5448px = "\u{ea59}" - case crop7524px = "\u{ea5a}" - case crop7548px = "\u{ea5b}" - case crop16924px = "\u{ea5c}" - case crop16948px = "\u{ea5d}" - case crop24px = "\u{ea5e}" - case crop48px = "\u{ea5f}" - case cropDin24px = "\u{ea60}" - case cropDin48px = "\u{ea61}" - case cropFree24px = "\u{ea62}" - case cropFree48px = "\u{ea63}" - case cropLandscape24px = "\u{ea64}" - case cropLandscape48px = "\u{ea65}" - case cropOriginal24px = "\u{ea66}" - case cropOriginal48px = "\u{ea67}" - case cropPortrait24px = "\u{ea68}" - case cropPortrait48px = "\u{ea69}" - case cropSquare24px = "\u{ea6a}" - case cropSquare48px = "\u{ea6b}" - case dehaze24px = "\u{ea6c}" - case dehaze48px = "\u{ea6d}" - case details24px = "\u{ea6e}" - case details48px = "\u{ea6f}" - case edit24px = "\u{ea70}" - case edit48px = "\u{ea71}" - case exposure24px = "\u{ea72}" - case exposure48px = "\u{ea73}" + case brightnessAuto24px = "\u{e1ab}" + case brightnessHigh24px = "\u{e1ac}" + case brightnessLow24px = "\u{e1ad}" + case brightnessMedium24px = "\u{e1ae}" + case brush24px = "\u{e3ae}" + case bugReport24px = "\u{e868}" + case business24px = "\u{e7ee}" + case cached24px = "\u{e86a}" + case cake18px = "\u{e7e9}" + case call24px = "\u{f0d4}" + case callEnd24px = "\u{f0bc}" + case callMade24px = "\u{e0b2}" + case callMerge24px = "\u{e0b3}" + case callMissed24px = "\u{e0b4}" + case callReceived24px = "\u{e0b5}" + case callSplit24px = "\u{e0b6}" + case camera24px = "\u{e3af}" + case cameraAlt24px = "\u{e412}" + case cameraFront24px = "\u{f2c9}" + case cameraRear24px = "\u{f2c8}" + case cameraRoll24px = "\u{e3b3}" + case cast24px = "\u{e307}" + case castConnected24px = "\u{e308}" + case centerFocusStrong24px = "\u{e3b4}" + case centerFocusWeak24px = "\u{e3b5}" + case chat24px = "\u{e0c9}" + case check18px = "\u{e5ca}" + case checkBox24px = "\u{e834}" + case checkBoxOutlineBlank24px = "\u{e835}" + case clear24px = "\u{e5cd}" + case clearAll24px = "\u{e0b8}" + case closedCaption24px = "\u{e996}" + case cloud24px = "\u{f15c}" + case cloudCircle18px = "\u{e2be}" + case cloudDone24px = "\u{e2bf}" + case cloudDownload24px = "\u{e2c0}" + case cloudOff24px = "\u{e2c1}" + case cloudUpload24px = "\u{e2c3}" + case collections24px = "\u{e3d3}" + case colorize24px = "\u{e3b8}" + case colorLens24px = "\u{e40a}" + case comment24px = "\u{e24c}" + case compare24px = "\u{e3b9}" + case computer24px = "\u{e31e}" + case contacts24px = "\u{e0ba}" + case contentCopy24px = "\u{e14d}" + case contentCut24px = "\u{e14e}" + case contentPaste24px = "\u{e14f}" + case controlPointDuplicate24px = "\u{e3bb}" + case create24px = "\u{f097}" + case creditCard24px = "\u{e8a1}" + case crop3224px = "\u{e3be}" + case cropDin24px = "\u{e3c6}" + case cropFree24px = "\u{e3c2}" + case cropLandscape24px = "\u{e3c3}" + case cropPortrait24px = "\u{e3c5}" + case dashboard24px = "\u{e871}" + case dataUsage24px = "\u{eff2}" + case dehaze24px = "\u{e3c7}" + case delete24px = "\u{e92e}" + case description24px = "\u{e873}" + case desktopMac24px = "\u{e30b}" + case desktopWindows24px = "\u{e30c}" + case details24px = "\u{e3c8}" + case developerMode24px = "\u{f2e2}" + case devices24px = "\u{e326}" + case dialerSip24px = "\u{e0bb}" + case dialpad24px = "\u{e0bc}" + case directions24px = "\u{e52e}" + case directionsBike24px = "\u{e52f}" + case directionsBus24px = "\u{eff6}" + case directionsCar24px = "\u{eff7}" + case directionsFerry24px = "\u{eb43}" + case directionsFerry48px = "\u{eb44}" + case directionsSubway24px = "\u{effa}" + case directionsTrain24px = "\u{eb47}" + case directionsTrain48px = "\u{eb48}" + case directionsWalk24px = "\u{e536}" + case discFull24px = "\u{e610}" + case dndForwardslash24px = "\u{ec00}" + case dndForwardslash48px = "\u{ec01}" + case dndOn24px = "\u{e7d0}" + case dndOn48px = "\u{e7d1}" + case dns24px = "\u{e875}" + case dock24px = "\u{f2e0}" + case done24px = "\u{e876}" + case doneAll24px = "\u{e877}" + case doNotDisturb24px = "\u{f08d}" + case drafts24px = "\u{e151}" + case dvr24px = "\u{e1b2}" + case email24px = "\u{e159}" + case equalizer24px = "\u{e01d}" + case error18px = "\u{f8b6}" + case event18px = "\u{e878}" + case eventAvailable24px = "\u{e614}" + case eventBusy24px = "\u{e615}" + case eventNote18px = "\u{e616}" + case exitToApp24px = "\u{e879}" + case expandLess18px = "\u{e5ce}" + case expandMore18px = "\u{e5cf}" + case explicit24px = "\u{e01e}" + case explore24px = "\u{e87a}" + case exposure24px = "\u{e3f6}" case exposureMinus124px = "\u{ea74}" case exposureMinus148px = "\u{ea75}" case exposureMinus224px = "\u{ea76}" @@ -1159,520 +220,1463 @@ public enum MaterialDesignIconEnum: String { case exposurePlus148px = "\u{ea79}" case exposurePlus224px = "\u{ea7a}" case exposurePlus248px = "\u{ea7b}" - case exposureZero24px = "\u{ea7c}" - case exposureZero48px = "\u{ea7d}" - case filter124px = "\u{ea7e}" - case filter148px = "\u{ea7f}" - case filter224px = "\u{ea80}" - case filter248px = "\u{ea81}" - case filter324px = "\u{ea82}" - case filter348px = "\u{ea83}" - case filter424px = "\u{ea84}" - case filter448px = "\u{ea85}" - case filter524px = "\u{ea86}" - case filter548px = "\u{ea87}" - case filter624px = "\u{ea88}" - case filter648px = "\u{ea89}" - case filter724px = "\u{ea8a}" - case filter748px = "\u{ea8b}" - case filter824px = "\u{ea8c}" - case filter848px = "\u{ea8d}" - case filter924px = "\u{ea8e}" - case filter948px = "\u{ea8f}" + case exposureZero24px = "\u{e3cf}" + case extension24px = "\u{e87b}" + case faceUnlock24px = "\u{f008}" + case fastForward24px = "\u{e01f}" + case fastRewind24px = "\u{e020}" + case favorite24px = "\u{e87e}" + case fileUpload24px = "\u{f09b}" case filter9Plus24px = "\u{ea90}" case filter9Plus48px = "\u{ea91}" - case filter24px = "\u{ea92}" - case filter48px = "\u{ea93}" - case filterBAndW24px = "\u{ea94}" - case filterBAndW48px = "\u{ea95}" - case filterCenterFocus24px = "\u{ea96}" - case filterCenterFocus48px = "\u{ea97}" - case filterDrama24px = "\u{ea98}" - case filterDrama48px = "\u{ea99}" - case filterFrames24px = "\u{ea9a}" - case filterFrames48px = "\u{ea9b}" - case filterHdr24px = "\u{ea9c}" - case filterHdr48px = "\u{ea9d}" - case filterNone24px = "\u{ea9e}" - case filterNone48px = "\u{ea9f}" - case filterTiltShift24px = "\u{eaa0}" - case filterTiltShift48px = "\u{eaa1}" - case filterVintage24px = "\u{eaa2}" - case filterVintage48px = "\u{eaa3}" - case flare24px = "\u{eaa4}" - case flare48px = "\u{eaa5}" - case flashAuto24px = "\u{eaa6}" - case flashAuto48px = "\u{eaa7}" - case flashOff24px = "\u{eaa8}" - case flashOff48px = "\u{eaa9}" - case flashOn24px = "\u{eaaa}" - case flashOn48px = "\u{eaab}" - case flip24px = "\u{eaac}" - - case flip48px = "\u{eaad}" - case gradient24px = "\u{eaae}" - case gradient48px = "\u{eaaf}" - case grain24px = "\u{eab0}" - case grain48px = "\u{eab1}" - case gridOff24px = "\u{eab2}" - case gridOff48px = "\u{eab3}" - case gridOn24px = "\u{eab4}" - case gridOn48px = "\u{eab5}" - case hdrOff24px = "\u{eab6}" - case hdrOff48px = "\u{eab7}" - case hdrOn24px = "\u{eab8}" - case hdrOn48px = "\u{eab9}" - case hdrStrong24px = "\u{eaba}" - case hdrStrong48px = "\u{eabb}" - case hdrWeak24px = "\u{eabc}" - case hdrWeak48px = "\u{eabd}" - case healing24px = "\u{eabe}" - case healing48px = "\u{eabf}" - case image24px = "\u{eac0}" - case image48px = "\u{eac1}" - case imageAspectRatio24px = "\u{eac2}" - case imageAspectRatio48px = "\u{eac3}" - case iso24px = "\u{eac4}" - case iso48px = "\u{eac5}" - case landscape24px = "\u{eac6}" - case landscape48px = "\u{eac7}" - case leakAdd24px = "\u{eac8}" - case leakAdd48px = "\u{eac9}" - case leakRemove24px = "\u{eaca}" - case leakRemove48px = "\u{eacb}" - case lens24px = "\u{eacc}" - case lens48px = "\u{eacd}" - case looks324px = "\u{eace}" - case looks348px = "\u{eacf}" - case looks424px = "\u{ead0}" - case looks448px = "\u{ead1}" - case looks524px = "\u{ead2}" - case looks548px = "\u{ead3}" - case looks624px = "\u{ead4}" - case looks648px = "\u{ead5}" - case looks24px = "\u{ead6}" - case looks48px = "\u{ead7}" - case looksOne24px = "\u{ead8}" - case looksOne48px = "\u{ead9}" - case looksTwo24px = "\u{eada}" - case looksTwo48px = "\u{eadb}" - case loupe24px = "\u{eadc}" - case loupe48px = "\u{eadd}" - case movieCreation24px = "\u{eade}" - case movieCreation48px = "\u{eadf}" - case nature24px = "\u{eae0}" - case nature48px = "\u{eae1}" - case naturePeople24px = "\u{eae2}" - case naturePeople48px = "\u{eae3}" - case navigateBefore24px = "\u{eae4}" - case navigateBefore48px = "\u{eae5}" - case navigateNext24px = "\u{eae6}" - case navigateNext48px = "\u{eae7}" - case palette24px = "\u{eae8}" - case palette48px = "\u{eae9}" - case panorama24px = "\u{eaea}" - case panorama48px = "\u{eaeb}" - case panoramaFisheye24px = "\u{eaec}" - case panoramaFisheye48px = "\u{eaed}" - case panoramaHorizontal24px = "\u{eaee}" - case panoramaHorizontal48px = "\u{eaef}" - case panoramaVertical24px = "\u{eaf0}" - case panoramaVertical48px = "\u{eaf1}" - case panoramaWideAngle24px = "\u{eaf2}" - case panoramaWideAngle48px = "\u{eaf3}" - case photo24px = "\u{eaf4}" - case photo48px = "\u{eaf5}" - case photoAlbum24px = "\u{eaf6}" - case photoAlbum48px = "\u{eaf7}" - case photoCamera24px = "\u{eaf8}" - case photoCamera48px = "\u{eaf9}" - case photoLibrary24px = "\u{eafa}" - case photoLibrary48px = "\u{eafb}" - case portrait24px = "\u{eafc}" - case portrait48px = "\u{eafd}" - case removeRedEye24px = "\u{eafe}" - case removeRedEye48px = "\u{eaff}" - case rotateLeft24px = "\u{eb00}" - case rotateLeft48px = "\u{eb01}" - case rotateRight24px = "\u{eb02}" - case rotateRight48px = "\u{eb03}" - case slideshow24px = "\u{eb04}" - case slideshow48px = "\u{eb05}" - case straighten24px = "\u{eb06}" - case straighten48px = "\u{eb07}" - case style24px = "\u{eb08}" - case style48px = "\u{eb09}" - case switchCamera24px = "\u{eb0a}" - case switchCamera48px = "\u{eb0b}" - case switchVideo24px = "\u{eb0c}" - case switchVideo48px = "\u{eb0d}" - case tagFaces24px = "\u{eb0e}" - case tagFaces48px = "\u{eb0f}" - case texture24px = "\u{eb10}" - case texture48px = "\u{eb11}" - case timelapse24px = "\u{eb12}" - case timelapse48px = "\u{eb13}" - case timer324px = "\u{eb14}" - case timer348px = "\u{eb15}" - case timer1024px = "\u{eb16}" - case timer1048px = "\u{eb17}" - case timer24px = "\u{eb18}" - case timer48px = "\u{eb19}" - case timerAuto24px = "\u{eb1a}" - case timerAuto48px = "\u{eb1b}" - case timerOff24px = "\u{eb1c}" - case timerOff48px = "\u{eb1d}" - case tonality24px = "\u{eb1e}" - case tonality48px = "\u{eb1f}" - case transform24px = "\u{eb20}" - case transform48px = "\u{eb21}" - case tune24px = "\u{eb22}" - case tune48px = "\u{eb23}" - case wbAuto24px = "\u{eb24}" - case wbAuto48px = "\u{eb25}" - case wbCloudy24px = "\u{eb26}" - case wbCloudy48px = "\u{eb27}" - case wbIncandescent24px = "\u{eb28}" - case wbIncandescent48px = "\u{eb29}" - case wbIrradescent24px = "\u{eb2a}" - case wbIrradescent48px = "\u{eb2b}" - case wbSunny24px = "\u{eb2c}" - case wbSunny48px = "\u{eb2d}" - case checkBox24px = "\u{eb2e}" - case checkBox48px = "\u{eb2f}" - case checkBoxOutlineBlank24px = "\u{eb30}" - case checkBoxOutlineBlank48px = "\u{eb31}" - case radioButtonOff24px = "\u{eb32}" - case radioButtonOff48px = "\u{eb33}" - case radioButtonOn24px = "\u{eb34}" - case radioButtonOn48px = "\u{eb35}" - case star24px = "\u{eb36}" - case starHalf24px = "\u{eb37}" - case starOutline24px = "\u{eb38}" - case beenhere24px = "\u{eb39}" - case beenhere48px = "\u{eb3a}" - case directions24px = "\u{eb3b}" - case directions48px = "\u{eb3c}" - case directionsBike24px = "\u{eb3d}" - case directionsBike48px = "\u{eb3e}" - case directionsBus24px = "\u{eb3f}" - case directionsBus48px = "\u{eb40}" - case directionsCar24px = "\u{eb41}" - case directionsCar48px = "\u{eb42}" - case directionsFerry24px = "\u{eb43}" - case directionsFerry48px = "\u{eb44}" - case directionsSubway24px = "\u{eb45}" - case directionsSubway48px = "\u{eb46}" - case directionsTrain24px = "\u{eb47}" - case directionsTrain48px = "\u{eb48}" - case directionsTransit24px = "\u{eb49}" - case directionsTransit48px = "\u{eb4a}" - case directionsWalk24px = "\u{eb4b}" - case directionsWalk48px = "\u{eb4c}" - case flight24px = "\u{eb4d}" - case flight48px = "\u{eb4e}" - case hotel24px = "\u{eb4f}" - case hotel48px = "\u{eb50}" - case layers24px = "\u{eb51}" - case layers48px = "\u{eb52}" - case layersClear24px = "\u{eb53}" - case layersClear48px = "\u{eb54}" - case localAirport24px = "\u{eb55}" - case localAirport48px = "\u{eb56}" - case localAtm24px = "\u{eb57}" - case localAtm48px = "\u{eb58}" + case filterBAndW24px = "\u{e3db}" + case filterCenterFocus24px = "\u{e3dc}" + case filterDrama24px = "\u{e3dd}" + case filterFrames24px = "\u{e3de}" + case filterHdr24px = "\u{e3df}" + case filterList24px = "\u{e152}" + case filterNone24px = "\u{e3e0}" + case filterTiltShift24px = "\u{e3e2}" + case filterVintage24px = "\u{e3e3}" + case findInPage24px = "\u{e880}" + case findReplace24px = "\u{e881}" + case flag24px = "\u{f0c6}" + case flare24px = "\u{e3e4}" + case flashAuto24px = "\u{e3e5}" + case flashOff24px = "\u{e3e6}" + case flashOn24px = "\u{e3e7}" + case flight24px = "\u{e539}" + case flip24px = "\u{e3e8}" + case flipToBack24px = "\u{e882}" + case flipToFront24px = "\u{e883}" + case folder18px = "\u{e2c7}" + case folderOpen18px = "\u{e2c8}" + case folderShared18px = "\u{e2c9}" + case folderSpecial24px = "\u{e617}" + case formatAlignCenter18px = "\u{e234}" + case formatAlignJustify18px = "\u{e235}" + case formatAlignLeft18px = "\u{e236}" + case formatAlignRight18px = "\u{e237}" + case formatBold18px = "\u{e238}" + case formatClear18px = "\u{e239}" + case formatColorFill18px = "\u{e23a}" + case formatColorReset18px = "\u{e23b}" + case formatColorText18px = "\u{e23c}" + case formatIndentDecrease18px = "\u{e23d}" + case formatIndentIncrease18px = "\u{e23e}" + case formatItalic18px = "\u{e23f}" + case formatLineSpacing18px = "\u{e240}" + case formatListBulleted18px = "\u{e241}" + case formatListNumbered18px = "\u{e242}" + case formatPaint18px = "\u{e243}" + case formatQuote18px = "\u{e244}" + case formatSize18px = "\u{e245}" + case formatStrikethrough18px = "\u{e246}" + case formatTextdirectionLToR18px = "\u{e247}" + case formatTextdirectionRToL18px = "\u{e248}" + case formatUnderline18px = "\u{e978}" + case formatUnderline24px = "\u{e979}" + case formatUnderline48px = "\u{e97a}" + case forward24px = "\u{f57a}" + case fullscreen18px = "\u{e5d0}" + case fullscreenExit18px = "\u{e5d1}" + case functions18px = "\u{e24a}" + case games24px = "\u{e30f}" + case gesture24px = "\u{e155}" + case getApp24px = "\u{f090}" + case gpsFixed24px = "\u{e55c}" + case gpsNotFixed24px = "\u{e1b7}" + case gpsOff24px = "\u{e1b6}" + case grade24px = "\u{f09a}" + case gradient24px = "\u{e3e9}" + case grain24px = "\u{e3ea}" + case gridOff24px = "\u{e3eb}" + case gridOn24px = "\u{e3ec}" + case group18px = "\u{ea21}" + case groupAdd18px = "\u{e7f0}" + case groupWork24px = "\u{e886}" + case hdrOff24px = "\u{e3ed}" + case hdrOn24px = "\u{e3ee}" + case hdrStrong24px = "\u{e3f1}" + case hdrWeak24px = "\u{e3f2}" + case headset24px = "\u{f01f}" + case headsetMic24px = "\u{e311}" + case healing24px = "\u{e3f3}" + case hearing24px = "\u{e023}" + case help24px = "\u{e8fd}" + case highlightRemove24px = "\u{e888}" + case highQuality24px = "\u{e024}" + case history24px = "\u{e8b3}" + case home24px = "\u{e9b2}" + case hotel24px = "\u{e549}" + case https24px = "\u{e899}" + case imageAspectRatio24px = "\u{e3f5}" + case inbox24px = "\u{e156}" + case info24px = "\u{e88e}" + case input24px = "\u{e890}" + case insertDriveFile18px = "\u{e66d}" + case insertEmoticon18px = "\u{ea22}" + case insertPhoto18px = "\u{e3f4}" + case invertColors24px = "\u{e891}" + case invertColorsOff24px = "\u{e0c4}" + case invertColorsOn24px = "\u{e7da}" + case invertColorsOn48px = "\u{e7db}" + case keyboard24px = "\u{e312}" + case keyboardAlt24px = "\u{f028}" + case keyboardArrowDown24px = "\u{e313}" + case keyboardArrowLeft24px = "\u{e314}" + case keyboardArrowRight24px = "\u{e315}" + case keyboardArrowUp24px = "\u{e316}" + case keyboardBackspace24px = "\u{e317}" + case keyboardCapslock24px = "\u{e318}" + case keyboardControl24px = "\u{e9ec}" + case keyboardControl48px = "\u{e9ed}" + case keyboardHide24px = "\u{e31a}" + case keyboardReturn24px = "\u{e31b}" + case keyboardTab24px = "\u{e31c}" + case label24px = "\u{e893}" + case landscape24px = "\u{e564}" + case language24px = "\u{e894}" + case laptopChromebook24px = "\u{e31f}" + case laptopMac24px = "\u{e320}" + case laptopWindows24px = "\u{e321}" + case launch24px = "\u{e89e}" + case layers24px = "\u{e53b}" + case layersClear24px = "\u{e53c}" + case leakAdd24px = "\u{e3f8}" + case leakRemove24px = "\u{e3f9}" + case lens24px = "\u{e3fa}" + case link24px = "\u{e250}" + case list24px = "\u{e896}" + case liveHelp24px = "\u{e0c6}" + case localAirport24px = "\u{e53d}" + case localAtm24px = "\u{e53e}" case localAttraction24px = "\u{eb59}" case localAttraction48px = "\u{eb5a}" - case localBar24px = "\u{eb5b}" - case localBar48px = "\u{eb5c}" - case localCafe24px = "\u{eb5d}" - case localCafe48px = "\u{eb5e}" - case localCarWash24px = "\u{eb5f}" - case localCarWash48px = "\u{eb60}" - case localConvenienceStore24px = "\u{eb61}" - case localConvenienceStore48px = "\u{eb62}" - case localDrink24px = "\u{eb63}" - case localDrink48px = "\u{eb64}" - case localFlorist24px = "\u{eb65}" - case localFlorist48px = "\u{eb66}" - case localGasStation24px = "\u{eb67}" - case localGasStation48px = "\u{eb68}" - case localGroceryStore24px = "\u{eb69}" - case localGroceryStore48px = "\u{eb6a}" - case localHospital24px = "\u{eb6b}" - case localHospital48px = "\u{eb6c}" - case localHotel24px = "\u{eb6d}" - case localHotel48px = "\u{eb6e}" - case localLaundryService24px = "\u{eb6f}" - case localLaundryService48px = "\u{eb70}" - case localLibrary24px = "\u{eb71}" - case localLibrary48px = "\u{eb72}" - case localMall24px = "\u{eb73}" - case localMall48px = "\u{eb74}" - case localMovies24px = "\u{eb75}" - case localMovies48px = "\u{eb76}" - case localOffer24px = "\u{eb77}" - case localOffer48px = "\u{eb78}" - case localParking24px = "\u{eb79}" - case localParking48px = "\u{eb7a}" - case localPharmacy24px = "\u{eb7b}" - case localPharmacy48px = "\u{eb7c}" - case localPhone24px = "\u{eb7d}" - case localPhone48px = "\u{eb7e}" - case localPizza24px = "\u{eb7f}" - case localPizza48px = "\u{eb80}" - case localPlay24px = "\u{eb81}" - case localPlay48px = "\u{eb82}" - case localPostOffice24px = "\u{eb83}" - case localPostOffice48px = "\u{eb84}" + case localBar24px = "\u{e540}" + case localCarWash24px = "\u{e542}" + case localConvenienceStore24px = "\u{e543}" + case localDrink24px = "\u{e544}" + case localFlorist24px = "\u{e545}" + case localGasStation24px = "\u{e546}" + case localHospital24px = "\u{e548}" + case localLaundryService24px = "\u{e54a}" + case localLibrary24px = "\u{e54b}" + case localMall24px = "\u{e54c}" + case localOffer24px = "\u{f05b}" + case localParking24px = "\u{e54f}" + case localPharmacy24px = "\u{e550}" + case localPizza24px = "\u{e552}" + case localPlay24px = "\u{e553}" + case localPostOffice24px = "\u{e554}" case localPrintShop24px = "\u{eb85}" case localPrintShop48px = "\u{eb86}" case localRestaurant24px = "\u{eb87}" case localRestaurant48px = "\u{eb88}" - case localSee24px = "\u{eb89}" - case localSee48px = "\u{eb8a}" - case localShipping24px = "\u{eb8b}" - case localShipping48px = "\u{eb8c}" - case localTaxi24px = "\u{eb8d}" - case localTaxi48px = "\u{eb8e}" + case localSee24px = "\u{e557}" + case localShipping24px = "\u{e558}" + case localTaxi24px = "\u{e559}" + case locationCity18px = "\u{e7f1}" case locationHistory24px = "\u{eb8f}" case locationHistory48px = "\u{eb90}" - case map24px = "\u{eb91}" - case map48px = "\u{eb92}" - case myLocation24px = "\u{eb93}" - case myLocation48px = "\u{eb94}" - case navigation24px = "\u{eb95}" - case navigation48px = "\u{eb96}" - case pinDrop24px = "\u{eb97}" - case pinDrop48px = "\u{eb98}" - case place24px = "\u{eb99}" - case place48px = "\u{eb9a}" - case rateReview24px = "\u{eb9b}" - case rateReview48px = "\u{eb9c}" - case restaurantMenu24px = "\u{eb9d}" - case restaurantMenu48px = "\u{eb9e}" - case satellite24px = "\u{eb9f}" - case satellite48px = "\u{eba0}" - case storeMallDirectory24px = "\u{eba1}" - case storeMallDirectory48px = "\u{eba2}" - case terrain24px = "\u{eba3}" - case terrain48px = "\u{eba4}" - case traffic24px = "\u{eba5}" - case traffic48px = "\u{eba6}" - case apps18px = "\u{eba7}" - case apps24px = "\u{eba8}" - case apps36px = "\u{eba9}" - case apps48px = "\u{ebaa}" - case arrowBack18px = "\u{ebab}" - case arrowBack24px = "\u{ebac}" - case arrowBack36px = "\u{ebad}" - case arrowBack48px = "\u{ebae}" - case arrowDropDown18px = "\u{ebaf}" - case arrowDropDown24px = "\u{ebb0}" - case arrowDropDown36px = "\u{ebb1}" - case arrowDropDown48px = "\u{ebb2}" - case arrowDropDownCircle24px = "\u{ebb3}" - case arrowDropDownCircle48px = "\u{ebb4}" - case arrowDropUp18px = "\u{ebb5}" - case arrowDropUp24px = "\u{ebb6}" - case arrowDropUp36px = "\u{ebb7}" - case arrowDropUp48px = "\u{ebb8}" - case arrowForward18px = "\u{ebb9}" - case arrowForward24px = "\u{ebba}" - case arrowForward36px = "\u{ebbb}" - case arrowForward48px = "\u{ebbc}" - case cancel18px = "\u{ebbd}" - case cancel24px = "\u{ebbe}" - case cancel36px = "\u{ebbf}" - case cancel48px = "\u{ebc0}" - case check18px = "\u{ebc1}" - case check24px = "\u{ebc2}" - case check36px = "\u{ebc3}" - case check48px = "\u{ebc4}" - case chevronLeft18px = "\u{ebc5}" - case chevronLeft24px = "\u{ebc6}" - case chevronLeft36px = "\u{ebc7}" - case chevronLeft48px = "\u{ebc8}" - case chevronRight18px = "\u{ebc9}" - case chevronRight24px = "\u{ebca}" - case chevronRight36px = "\u{ebcb}" - case chevronRight48px = "\u{ebcc}" - case close18px = "\u{ebcd}" - case close24px = "\u{ebce}" - case close36px = "\u{ebcf}" - case close48px = "\u{ebd0}" - case expandLess18px = "\u{ebd1}" - case expandLess24px = "\u{ebd2}" - case expandLess36px = "\u{ebd3}" - case expandLess48px = "\u{ebd4}" - case expandMore18px = "\u{ebd5}" - case expandMore24px = "\u{ebd6}" - case expandMore36px = "\u{ebd7}" - case expandMore48px = "\u{ebd8}" - case fullscreen18px = "\u{ebd9}" - case fullscreen24px = "\u{ebda}" - case fullscreen36px = "\u{ebdb}" - case fullscreen48px = "\u{ebdc}" - case fullscreenExit18px = "\u{ebdd}" - case fullscreenExit24px = "\u{ebde}" - case fullscreenExit36px = "\u{ebdf}" - case fullscreenExit48px = "\u{ebe0}" - case menu18px = "\u{ebe1}" - case menu24px = "\u{ebe2}" - case menu36px = "\u{ebe3}" - case menu48px = "\u{ebe4}" - case moreHoriz18px = "\u{ebe5}" - case moreHoriz24px = "\u{ebe6}" - case moreHoriz36px = "\u{ebe7}" - case moreHoriz48px = "\u{ebe8}" - case moreVert18px = "\u{ebe9}" - case moreVert24px = "\u{ebea}" - case moreVert36px = "\u{ebeb}" - case moreVert48px = "\u{ebec}" - case refresh18px = "\u{ebed}" - case refresh24px = "\u{ebee}" - case refresh36px = "\u{ebef}" - case refresh48px = "\u{ebf0}" - case unfoldLess18px = "\u{ebf1}" - case unfoldLess24px = "\u{ebf2}" - case unfoldLess36px = "\u{ebf3}" - case unfoldLess48px = "\u{ebf4}" - case unfoldMore18px = "\u{ebf5}" - case unfoldMore24px = "\u{ebf6}" - case unfoldMore36px = "\u{ebf7}" - case unfoldMore48px = "\u{ebf8}" - case adb18px = "\u{ebf9}" - case adb24px = "\u{ebfa}" - case adb48px = "\u{ebfb}" - case bluetoothAudio24px = "\u{ebfc}" - case bluetoothAudio48px = "\u{ebfd}" - case discFull24px = "\u{ebfe}" - case discFull48px = "\u{ebff}" - case dndForwardslash24px = "\u{ec00}" - case dndForwardslash48px = "\u{ec01}" - case doNotDisturb24px = "\u{ec02}" - case doNotDisturb48px = "\u{ec03}" - case driveEta24px = "\u{ec04}" - case driveEta48px = "\u{ec05}" - case eventAvailable24px = "\u{ec06}" - case eventAvailable48px = "\u{ec07}" - case eventBusy24px = "\u{ec08}" - case eventBusy48px = "\u{ec09}" - case eventNote18px = "\u{ec0a}" - case eventNote24px = "\u{ec0b}" - case eventNote48px = "\u{ec0c}" - case folderSpecial24px = "\u{ec0d}" - case folderSpecial48px = "\u{ec0e}" - case mms24px = "\u{ec0f}" - case mms48px = "\u{ec10}" - case more24px = "\u{ec11}" - case more48px = "\u{ec12}" - case networkLocked24px = "\u{ec13}" - case networkLocked48px = "\u{ec14}" - case phoneBluetoothSpeaker24px = "\u{ec15}" - case phoneBluetoothSpeaker48px = "\u{ec16}" - case phoneForwarded24px = "\u{ec17}" - case phoneForwarded48px = "\u{ec18}" - case phoneInTalk24px = "\u{ec19}" - case phoneInTalk48px = "\u{ec1a}" - case phoneLocked24px = "\u{ec1b}" - case phoneLocked48px = "\u{ec1c}" - case phoneMissed24px = "\u{ec1d}" - case phoneMissed48px = "\u{ec1e}" - case phonePaused24px = "\u{ec1f}" - case phonePaused48px = "\u{ec20}" + case locationOff24px = "\u{e0c7}" + case lockOpen24px = "\u{e898}" + case looks324px = "\u{e3fc}" + case looksOne24px = "\u{e400}" + case looksTwo24px = "\u{e401}" + case loupe24px = "\u{e402}" + case loyalty24px = "\u{e89a}" + case map24px = "\u{e55b}" + case markunreadMailbox24px = "\u{e89b}" + case memory24px = "\u{e322}" + case menu18px = "\u{e5d2}" + case mergeType18px = "\u{e252}" + case messenger24px = "\u{e7e4}" + case messenger48px = "\u{e7e5}" + case mic24px = "\u{e31d}" + case micOff24px = "\u{e02b}" + case mms24px = "\u{e618}" + case modeComment18px = "\u{e253}" + case more24px = "\u{e619}" + case moreHoriz18px = "\u{e5d3}" + case moreVert18px = "\u{e5d4}" + case mouse24px = "\u{e323}" + case movie24px = "\u{e404}" + case myLibraryAdd24px = "\u{e76b}" + case myLibraryAdd48px = "\u{e76c}" + case myLibraryBooks24px = "\u{e76d}" + case myLibraryBooks48px = "\u{e76e}" + case myLibraryMusic24px = "\u{e76f}" + case myLibraryMusic48px = "\u{e770}" + case nature24px = "\u{e406}" + case naturePeople24px = "\u{e407}" + case navigateBefore24px = "\u{e5cb}" + case navigateNext24px = "\u{e5cc}" + case navigation24px = "\u{e55d}" + case networkCell18px = "\u{e1b9}" + case networkLocked24px = "\u{e61a}" + case networkWifi18px = "\u{e1ba}" + case newReleases24px = "\u{ef76}" + case nfc24px = "\u{e1bb}" + case noSim24px = "\u{e1ce}" + case noteAdd24px = "\u{e89c}" + case notifications24px = "\u{e7f5}" + case notificationsOff24px = "\u{e7f6}" + case notificationsOn24px = "\u{ec58}" + case notificationsOn48px = "\u{ec59}" + case notificationsPaused24px = "\u{e7f8}" + case notInterested24px = "\u{f08c}" + case nowWallpaper18px = "\u{e8b1}" + case nowWallpaper24px = "\u{e8b2}" + case nowWidgets18px = "\u{e8b4}" + case nowWidgets24px = "\u{e8b5}" + case openInBrowser24px = "\u{e89d}" + case openWith24px = "\u{e89f}" + case pages18px = "\u{e7f9}" + case pageview24px = "\u{e8a0}" + case panorama24px = "\u{e40b}" + case panoramaFisheye24px = "\u{eaec}" + case panoramaFisheye48px = "\u{eaed}" + case panoramaHorizontal24px = "\u{e40d}" + case panoramaVertical24px = "\u{e40e}" + case panoramaWideAngle24px = "\u{e40f}" + case partyMode24px = "\u{e7fa}" + case pause24px = "\u{e034}" + case pauseCircleFill24px = "\u{e777}" + case pauseCircleFill48px = "\u{e778}" + case pauseCircleOutline24px = "\u{e1a2}" + case permCameraMic24px = "\u{e8a2}" + case permContactCal24px = "\u{e8a3}" + case permDataSetting24px = "\u{e8a4}" + case permDeviceInfo24px = "\u{f2dc}" + case permIdentity24px = "\u{f0d3}" + case permMedia24px = "\u{e8a7}" + case permPhoneMsg24px = "\u{e8a8}" + case permScanWifi24px = "\u{e8a9}" + case personAdd18px = "\u{ea4d}" + case phoneAndroid24px = "\u{f2db}" + case phoneBluetoothSpeaker24px = "\u{e61b}" + case phoneForwarded24px = "\u{e61c}" + case phoneInTalk24px = "\u{e61d}" + case phoneIphone24px = "\u{f2da}" + case phonelinkOff24px = "\u{f7a5}" + case phoneLocked24px = "\u{e61e}" + case phoneMissed24px = "\u{e61f}" + case phonePaused24px = "\u{e620}" + case photo24px = "\u{e432}" + case photoAlbum24px = "\u{e411}" + case photoLibrary24px = "\u{e413}" + case pictureInPicture24px = "\u{e8aa}" + case pinDrop24px = "\u{e55e}" + case playArrow24px = "\u{e037}" + case playCircleFill24px = "\u{e77d}" + case playCircleFill48px = "\u{e77e}" + case playCircleOutline24px = "\u{e77f}" + case playCircleOutline48px = "\u{e780}" case playDownload24px = "\u{ec21}" case playDownload48px = "\u{ec22}" case playInstall24px = "\u{ec23}" case playInstall48px = "\u{ec24}" - case sdCard24px = "\u{ec25}" - case sdCard48px = "\u{ec26}" - case simCardAlert24px = "\u{ec27}" - case simCardAlert48px = "\u{ec28}" - case sms24px = "\u{ec29}" - case sms48px = "\u{ec2a}" - case smsFailed24px = "\u{ec2b}" - case smsFailed48px = "\u{ec2c}" - case sync24px = "\u{ec2d}" - case sync48px = "\u{ec2e}" - case syncDisabled24px = "\u{ec2f}" - case syncDisabled48px = "\u{ec30}" - case syncProblem24px = "\u{ec31}" - case syncProblem48px = "\u{ec32}" - case systemUpdate24px = "\u{ec33}" - case systemUpdate48px = "\u{ec34}" - case tapAndPlay24px = "\u{ec35}" - case tapAndPlay48px = "\u{ec36}" - case timeToLeave24px = "\u{ec37}" - case timeToLeave48px = "\u{ec38}" - case vibration18px = "\u{ec39}" - case vibration24px = "\u{ec3a}" - case vibration48px = "\u{ec3b}" - - case voiceChat24px = "\u{ec3c}" - case voiceChat48px = "\u{ec3d}" - case vpnLock24px = "\u{ec3e}" - case vpnLock48px = "\u{ec3f}" - case cake18px = "\u{ec40}" - case cake24px = "\u{ec41}" - case cake48px = "\u{ec42}" - case domain18px = "\u{ec43}" - case domain24px = "\u{ec44}" - case domain48px = "\u{ec45}" - case group18px = "\u{ec46}" - case group24px = "\u{ec47}" - case group48px = "\u{ec48}" - case groupAdd18px = "\u{ec49}" - case groupAdd24px = "\u{ec4a}" - case groupAdd48px = "\u{ec4b}" - case locationCity18px = "\u{ec4c}" - case locationCity24px = "\u{ec4d}" - case locationCity48px = "\u{ec4e}" - case mood18px = "\u{ec4f}" - case mood24px = "\u{ec50}" - case mood48px = "\u{ec51}" - case notifications24px = "\u{ec52}" - case notifications48px = "\u{ec53}" - case notificationsNone24px = "\u{ec54}" - case notificationsNone48px = "\u{ec55}" - case notificationsOff24px = "\u{ec56}" - case notificationsOff48px = "\u{ec57}" - case notificationsOn24px = "\u{ec58}" - case notificationsOn48px = "\u{ec59}" - case notificationsPaused24px = "\u{ec5a}" - case notificationsPaused48px = "\u{ec5b}" - case pages18px = "\u{ec5c}" - case pages24px = "\u{ec5d}" - case pages48px = "\u{ec5e}" - case partyMode24px = "\u{ec5f}" - case partyMode48px = "\u{ec60}" - case people18px = "\u{ec61}" - case people24px = "\u{ec62}" - case people48px = "\u{ec63}" - case peopleOutline24px = "\u{ec64}" - case peopleOutline48px = "\u{ec65}" - case person18px = "\u{ec66}" - case person24px = "\u{ec67}" - case person48px = "\u{ec68}" - case personAdd18px = "\u{ec69}" - case personAdd24px = "\u{ec6a}" - case personAdd48px = "\u{ec6b}" - case personOutline18px = "\u{ec6c}" - case personOutline24px = "\u{ec6d}" - case personOutline48px = "\u{ec6e}" - case plusOne24px = "\u{ec6f}" - case plusOne48px = "\u{ec70}" - case poll18px = "\u{ec71}" - case poll24px = "\u{ec72}" - case poll48px = "\u{ec73}" - case public24px = "\u{ec74}" - case public48px = "\u{ec75}" - case school24px = "\u{ec76}" - case school48px = "\u{ec77}" - case share24px = "\u{ec78}" - case share48px = "\u{ec79}" - case whatshot18px = "\u{ec7a}" - case whatshot24px = "\u{ec7b}" - case whatshot48px = "\u{ec7c}" + case playlistAdd24px = "\u{e03b}" + case playShoppingBag24px = "\u{e781}" + case playShoppingBag48px = "\u{e782}" + case plusOne24px = "\u{e800}" + case polymer24px = "\u{e8ab}" + case portableWifiOff24px = "\u{f087}" + case print24px = "\u{e8ad}" + case public24px = "\u{e80b}" + case publish18px = "\u{e255}" + case queryBuilder24px = "\u{efd6}" + case questionAnswer24px = "\u{e8af}" + case queue24px = "\u{e03c}" + case queueMusic24px = "\u{e03d}" + case quickContactsDialer24px = "\u{e7ec}" + case quickContactsDialer48px = "\u{e7ed}" + case quickContactsMail48px = "\u{e7ef}" + case radio24px = "\u{e03e}" + case radioButtonOff24px = "\u{eb32}" + case radioButtonOff48px = "\u{eb33}" + case radioButtonOn24px = "\u{eb34}" + case radioButtonOn48px = "\u{eb35}" + case rateReview24px = "\u{e560}" + case receipt24px = "\u{e8b0}" + case recentActors24px = "\u{e03f}" + case redeem24px = "\u{e8f6}" + case redo24px = "\u{e15a}" + case refresh18px = "\u{e5d5}" + case remove24px = "\u{e15b}" + case removeCircle24px = "\u{f08f}" + case reorder24px = "\u{e8fe}" + case repeat24px = "\u{e040}" + case repeatOne24px = "\u{e041}" + case replay24px = "\u{e042}" + case reply24px = "\u{e15e}" + case replyAll24px = "\u{e15f}" + case report24px = "\u{f052}" + case reportProblem24px = "\u{f083}" + case restaurantMenu24px = "\u{e561}" + case ringVolume24px = "\u{f0dd}" + case room24px = "\u{f1db}" + case rotateLeft24px = "\u{e419}" + case rotateRight24px = "\u{e41a}" + case satellite24px = "\u{e562}" + case save24px = "\u{e161}" + case school24px = "\u{e80c}" + case screenLockLandscape24px = "\u{f2d8}" + case screenLockPortrait24px = "\u{f2be}" + case screenLockRotation24px = "\u{f2d6}" + case screenRotation24px = "\u{f2d5}" + case sdStorage24px = "\u{e623}" + case search24px = "\u{e8b6}" + case security24px = "\u{e32a}" + case selectAll24px = "\u{e162}" + case send24px = "\u{e163}" + case settings24px = "\u{e8b8}" + case settingsApplications24px = "\u{e8b9}" + case settingsBackupRestore24px = "\u{e8ba}" + case settingsBluetooth24px = "\u{e8bb}" + case settingsCell24px = "\u{f2d1}" + case settingsDisplay24px = "\u{e8bd}" + case settingsEthernet24px = "\u{e8be}" + case settingsInputAntenna24px = "\u{e8bf}" + case settingsInputComponent24px = "\u{e8c1}" + case settingsInputHdmi24px = "\u{e8c2}" + case settingsInputSvideo24px = "\u{e8c3}" + case settingsOverscan24px = "\u{e8c4}" + case settingsPhone24px = "\u{e8c5}" + case settingsPower24px = "\u{e8c6}" + case settingsRemote24px = "\u{e8c7}" + case settingsSystemDaydream24px = "\u{e1c3}" + case settingsVoice24px = "\u{e8c8}" + case share24px = "\u{e80d}" + case shop24px = "\u{e8c9}" + case shoppingBasket24px = "\u{e8cb}" + case shoppingCart24px = "\u{e8cc}" + case shopTwo24px = "\u{e8ca}" + case shuffle24px = "\u{e043}" + case signalCellular4Bar18px = "\u{e8cf}" + case signalCellularConnectedNoInternet3Bar18px = "\u{e8db}" + case signalCellularConnectedNoInternet3Bar24px = "\u{e8dc}" + case signalCellularConnectedNoInternet4Bar48px = "\u{e8e0}" + case signalCellularNull18px = "\u{e1cf}" + case signalCellularOff18px = "\u{e1d0}" + case signalWifi4Bar48px = "\u{e8f7}" + case signalWifiOff18px = "\u{e1da}" + case signalWifiStatusbar1Bar26x24px = "\u{e8fb}" + case signalWifiStatusbar2Bar26x24px = "\u{e8fc}" + case signalWifiStatusbarConnectedNoInternet126x24px = "\u{e8ff}" + case signalWifiStatusbarConnectedNoInternet226x24px = "\u{e900}" + case signalWifiStatusbarConnectedNoInternet26x24px = "\u{e903}" + case signalWifiStatusbarConnectedNoInternet326x24px = "\u{e901}" + case signalWifiStatusbarConnectedNoInternet426x24px = "\u{e902}" + case signalWifiStatusbarNotConnected26x24px = "\u{e904}" + case signalWifiStatusbarNull26x24px = "\u{e905}" + case simCard24px = "\u{e32b}" + case simCardAlert24px = "\u{f057}" + case skipNext24px = "\u{e044}" + case skipPrevious24px = "\u{e045}" + case slideshow24px = "\u{e41b}" + case snooze24px = "\u{e046}" + case sort24px = "\u{e164}" + case speaker24px = "\u{e32d}" + case speakerNotes24px = "\u{e8cd}" + case spellcheck24px = "\u{e8ce}" + case starHalf24px = "\u{e839}" + case starRate24px = "\u{f0ec}" + case stars24px = "\u{e8d0}" + case stayCurrentLandscape24px = "\u{ed3e}" + case stayCurrentPortrait24px = "\u{e7ba}" + case stayPrimaryPortrait24px = "\u{f2d3}" + case stop24px = "\u{e047}" + case storage24px = "\u{e1db}" + case store24px = "\u{e8d1}" + case straighten24px = "\u{e41c}" + case style24px = "\u{e41d}" + case subject24px = "\u{e8d2}" + case subtitles24px = "\u{e048}" + case supervisorAccount24px = "\u{e8d3}" + case surroundSound24px = "\u{e049}" + case swapCalls24px = "\u{e0d7}" + case swapHoriz24px = "\u{e8d4}" + case swapVert24px = "\u{e8d5}" + case swapVertCircle24px = "\u{e8d6}" + case switchCamera24px = "\u{e41e}" + case switchVideo24px = "\u{e41f}" + case sync24px = "\u{e627}" + case syncDisabled24px = "\u{e628}" + case syncProblem24px = "\u{e629}" + case systemUpdate24px = "\u{f2cd}" + case systemUpdateTv24px = "\u{e8d7}" + case tab24px = "\u{e8d8}" + case tablet24px = "\u{e32f}" + case tabletAndroid24px = "\u{e330}" + case tabletMac24px = "\u{e331}" + case tabUnselected24px = "\u{e8d9}" + case tapAndPlay24px = "\u{f2cc}" + case textFormat24px = "\u{e165}" + case textsms24px = "\u{e625}" + case texture24px = "\u{e421}" + case theaters24px = "\u{e8da}" + case threeDRotation24px = "\u{e84d}" + case thumbDown24px = "\u{f578}" + case thumbsUpDown24px = "\u{e8dd}" + case thumbUp24px = "\u{f577}" + case timelapse24px = "\u{e422}" + case timer324px = "\u{e425}" + case timerAuto24px = "\u{eb1a}" + case timerAuto48px = "\u{eb1b}" + case timerOff24px = "\u{e426}" + case toc24px = "\u{e8de}" + case today24px = "\u{e8df}" + case tonality24px = "\u{e427}" + case trackChanges24px = "\u{e8e1}" + case traffic24px = "\u{e565}" + case transform24px = "\u{e428}" + case translate24px = "\u{e8e2}" + case trendingDown24px = "\u{e8e3}" + case trendingNeutral24px = "\u{e8e4}" + case trendingUp24px = "\u{e8e5}" + case tune24px = "\u{e429}" + case tv24px = "\u{e63b}" + case undo24px = "\u{e166}" + case unfoldLess18px = "\u{e5d6}" + case unfoldMore18px = "\u{e5d7}" + case usb18px = "\u{e1e0}" + case verifiedUser24px = "\u{f013}" + case verticalAlignBottom18px = "\u{e258}" + case verticalAlignCenter18px = "\u{e259}" + case verticalAlignTop18px = "\u{e25a}" + case vibration18px = "\u{f2cb}" + case videocam24px = "\u{e04b}" + case videocamOff24px = "\u{e04c}" + case videoCollection24px = "\u{e7a1}" + case videoCollection48px = "\u{e7a2}" + case viewAgenda24px = "\u{e8e9}" + case viewArray24px = "\u{e8ea}" + case viewCarousel24px = "\u{e8eb}" + case viewColumn24px = "\u{e8ec}" + case viewDay24px = "\u{e8ed}" + case viewHeadline24px = "\u{e8ee}" + case viewList24px = "\u{e8ef}" + case viewModule24px = "\u{e8f0}" + case viewQuilt24px = "\u{e8f1}" + case viewStream24px = "\u{e8f2}" + case viewWeek24px = "\u{e8f3}" + case visibility24px = "\u{e8f4}" + case visibilityOff24px = "\u{e8f5}" + case voiceChat24px = "\u{e62e}" + case voicemail24px = "\u{e0d9}" + case volumeDown18px = "\u{e04d}" + case volumeMute18px = "\u{e04e}" + case volumeOff24px = "\u{e04f}" + case volumeUp18px = "\u{e050}" + case vpnKey24px = "\u{e0da}" + case vpnLock24px = "\u{e62f}" + case walletGiftcard24px = "\u{e73d}" + case walletGiftcard48px = "\u{e73e}" + case walletMembership24px = "\u{e73f}" + case walletMembership48px = "\u{e740}" + case walletTravel24px = "\u{e741}" + case walletTravel48px = "\u{e742}" + case watch24px = "\u{e334}" + case wbAuto24px = "\u{e42c}" + case wbIncandescent24px = "\u{e42e}" + case wbIrradescent24px = "\u{eb2a}" + case wbIrradescent48px = "\u{eb2b}" + case wbSunny24px = "\u{e430}" + case web24px = "\u{e051}" + case whatshot18px = "\u{e80e}" + case wifiLock24px = "\u{e1e1}" + case wifiTethering24px = "\u{e1e2}" + case work24px = "\u{e943}" + case wrapText18px = "\u{e25b}" +} + +// MARK: - Backward compatible aliases +public extension MaterialDesignIconEnum { + static var accessAlarm24px: MaterialDesignIconEnum { .alarm24px } + static var accessAlarm48px: MaterialDesignIconEnum { .alarm24px } + static var accessAlarms24px: MaterialDesignIconEnum { .alarm24px } + static var accessAlarms48px: MaterialDesignIconEnum { .alarm24px } + static var accessibility48px: MaterialDesignIconEnum { .accessibility24px } + static var accessTime24px: MaterialDesignIconEnum { .queryBuilder24px } + static var accessTime48px: MaterialDesignIconEnum { .queryBuilder24px } + static var accountBalance48px: MaterialDesignIconEnum { .accountBalance24px } + static var accountBalanceWallet48px: MaterialDesignIconEnum { .accountBalanceWallet24px } + static var accountBox24px: MaterialDesignIconEnum { .accountBox18px } + static var accountBox48px: MaterialDesignIconEnum { .accountBox18px } + static var accountChild48px: MaterialDesignIconEnum { .accountChild24px } + static var accountCircle24px: MaterialDesignIconEnum { .accountCircle18px } + static var accountCircle48px: MaterialDesignIconEnum { .accountCircle18px } + static var adb24px: MaterialDesignIconEnum { .adb18px } + static var adb48px: MaterialDesignIconEnum { .adb18px } + static var add48px: MaterialDesignIconEnum { .add24px } + static var addAlarm24px: MaterialDesignIconEnum { .alarmAdd24px } + static var addAlarm48px: MaterialDesignIconEnum { .alarmAdd24px } + static var addBox48px: MaterialDesignIconEnum { .addBox24px } + static var addCircle48px: MaterialDesignIconEnum { .addCircle24px } + static var addCircleOutline24px: MaterialDesignIconEnum { .addCircle24px } + static var addCircleOutline48px: MaterialDesignIconEnum { .addCircle24px } + static var addShoppingCart48px: MaterialDesignIconEnum { .addShoppingCart24px } + static var addToPhotos48px: MaterialDesignIconEnum { .addToPhotos24px } + static var adjust48px: MaterialDesignIconEnum { .adjust24px } + static var airplanemodeOff24px: MaterialDesignIconEnum { .accessibility24px } + static var airplanemodeOff48px: MaterialDesignIconEnum { .accountBalance24px } + static var airplanemodeOn24px: MaterialDesignIconEnum { .accountBalanceWallet24px } + static var airplanemodeOn48px: MaterialDesignIconEnum { .accountBox18px } + static var alarm48px: MaterialDesignIconEnum { .alarm24px } + static var alarmAdd48px: MaterialDesignIconEnum { .alarmAdd24px } + static var alarmOff48px: MaterialDesignIconEnum { .alarmOff24px } + static var alarmOn48px: MaterialDesignIconEnum { .alarmOn24px } + static var album48px: MaterialDesignIconEnum { .album24px } + static var android48px: MaterialDesignIconEnum { .android24px } + static var announcement48px: MaterialDesignIconEnum { .announcement24px } + static var apps24px: MaterialDesignIconEnum { .apps18px } + static var apps36px: MaterialDesignIconEnum { .apps18px } + static var apps48px: MaterialDesignIconEnum { .apps18px } + static var archive48px: MaterialDesignIconEnum { .archive24px } + static var arrowBack24px: MaterialDesignIconEnum { .arrowBack18px } + static var arrowBack36px: MaterialDesignIconEnum { .arrowBack18px } + static var arrowBack48px: MaterialDesignIconEnum { .arrowBack18px } + static var arrowDropDown24px: MaterialDesignIconEnum { .arrowDropDown18px } + static var arrowDropDown36px: MaterialDesignIconEnum { .arrowDropDown18px } + static var arrowDropDown48px: MaterialDesignIconEnum { .arrowDropDown18px } + static var arrowDropDownCircle48px: MaterialDesignIconEnum { .arrowDropDownCircle24px } + static var arrowDropUp24px: MaterialDesignIconEnum { .arrowDropUp18px } + static var arrowDropUp36px: MaterialDesignIconEnum { .arrowDropUp18px } + static var arrowDropUp48px: MaterialDesignIconEnum { .arrowDropUp18px } + static var arrowForward24px: MaterialDesignIconEnum { .arrowForward18px } + static var arrowForward36px: MaterialDesignIconEnum { .arrowForward18px } + static var arrowForward48px: MaterialDesignIconEnum { .arrowForward18px } + static var aspectRatio48px: MaterialDesignIconEnum { .aspectRatio24px } + static var assessment48px: MaterialDesignIconEnum { .assessment24px } + static var assignment48px: MaterialDesignIconEnum { .assignment24px } + static var assignmentInd48px: MaterialDesignIconEnum { .assignmentInd24px } + static var assignmentLate48px: MaterialDesignIconEnum { .assignmentLate24px } + static var assignmentReturn48px: MaterialDesignIconEnum { .assignmentReturn24px } + static var assignmentReturned48px: MaterialDesignIconEnum { .assignmentReturned24px } + static var assignmentTurnedIn48px: MaterialDesignIconEnum { .assignmentTurnedIn24px } + static var assistantPhoto24px: MaterialDesignIconEnum { .flag24px } + static var assistantPhoto48px: MaterialDesignIconEnum { .flag24px } + static var attachFile24px: MaterialDesignIconEnum { .attachFile18px } + static var attachFile48px: MaterialDesignIconEnum { .attachFile18px } + static var attachment24px: MaterialDesignIconEnum { .attachment18px } + static var attachment48px: MaterialDesignIconEnum { .attachment18px } + static var attachMoney24px: MaterialDesignIconEnum { .attachMoney18px } + static var attachMoney48px: MaterialDesignIconEnum { .attachMoney18px } + static var audiotrack48px: MaterialDesignIconEnum { .audiotrack24px } + static var autorenew48px: MaterialDesignIconEnum { .autorenew24px } + static var avTimer48px: MaterialDesignIconEnum { .avTimer24px } + static var backspace48px: MaterialDesignIconEnum { .backspace24px } + static var backup48px: MaterialDesignIconEnum { .backup24px } + static var battery2018px: MaterialDesignIconEnum { .accountChild24px } + static var battery2048px: MaterialDesignIconEnum { .addShoppingCart24px } + static var battery3018px: MaterialDesignIconEnum { .alarm24px } + static var battery3024px: MaterialDesignIconEnum { .alarmAdd24px } + static var battery3048px: MaterialDesignIconEnum { .alarmOff24px } + static var battery5018px: MaterialDesignIconEnum { .alarmOn24px } + static var battery5024px: MaterialDesignIconEnum { .android24px } + static var battery6018px: MaterialDesignIconEnum { .aspectRatio24px } + static var battery6048px: MaterialDesignIconEnum { .assignment24px } + static var battery8018px: MaterialDesignIconEnum { .assignmentInd24px } + static var battery8024px: MaterialDesignIconEnum { .assignmentLate24px } + static var battery8048px: MaterialDesignIconEnum { .assignmentReturn24px } + static var battery9018px: MaterialDesignIconEnum { .assignmentReturned24px } + static var battery9024px: MaterialDesignIconEnum { .assignmentTurnedIn24px } + static var battery9048px: MaterialDesignIconEnum { .autorenew24px } + static var batteryAlert24px: MaterialDesignIconEnum { .batteryAlert18px } + static var batteryAlert48px: MaterialDesignIconEnum { .batteryAlert18px } + static var batteryCharging2024px: MaterialDesignIconEnum { .bugReport24px } + static var batteryCharging3018px: MaterialDesignIconEnum { .cached24px } + static var batteryCharging5024px: MaterialDesignIconEnum { .book24px } + static var batteryCharging6024px: MaterialDesignIconEnum { .dashboard24px } + static var batteryCharging8018px: MaterialDesignIconEnum { .description24px } + static var batteryCharging8048px: MaterialDesignIconEnum { .dns24px } + static var batteryCharging9018px: MaterialDesignIconEnum { .done24px } + static var batteryCharging9024px: MaterialDesignIconEnum { .doneAll24px } + static var batteryCharging9048px: MaterialDesignIconEnum { .event18px } + static var batteryChargingFull24px: MaterialDesignIconEnum { .batteryChargingFull18px } + static var batteryChargingFull48px: MaterialDesignIconEnum { .batteryChargingFull18px } + static var batteryFull24px: MaterialDesignIconEnum { .batteryFull18px } + static var batteryFull48px: MaterialDesignIconEnum { .batteryFull18px } + static var batteryStd18px: MaterialDesignIconEnum { .batteryFull18px } + static var batteryStd24px: MaterialDesignIconEnum { .batteryFull18px } + static var batteryStd48px: MaterialDesignIconEnum { .batteryFull18px } + static var batteryUnknown24px: MaterialDesignIconEnum { .batteryUnknown18px } + static var batteryUnknown48px: MaterialDesignIconEnum { .batteryUnknown18px } + static var beenhere48px: MaterialDesignIconEnum { .beenhere24px } + static var block24px: MaterialDesignIconEnum { .notInterested24px } + static var block48px: MaterialDesignIconEnum { .notInterested24px } + static var bluetooth48px: MaterialDesignIconEnum { .bluetooth24px } + static var bluetoothAudio24px: MaterialDesignIconEnum { .bluetoothSearching24px } + static var bluetoothAudio48px: MaterialDesignIconEnum { .bluetoothSearching24px } + static var bluetoothConnected48px: MaterialDesignIconEnum { .bluetoothConnected24px } + static var bluetoothDisabled48px: MaterialDesignIconEnum { .bluetoothDisabled24px } + static var bluetoothSearching48px: MaterialDesignIconEnum { .bluetoothSearching24px } + static var blurCircular48px: MaterialDesignIconEnum { .blurCircular24px } + static var blurLinear48px: MaterialDesignIconEnum { .blurLinear24px } + static var blurOff48px: MaterialDesignIconEnum { .blurOff24px } + static var blurOn48px: MaterialDesignIconEnum { .blurOn24px } + static var book48px: MaterialDesignIconEnum { .book24px } + static var bookmark48px: MaterialDesignIconEnum { .bookmark24px } + static var bookmarkOutline24px: MaterialDesignIconEnum { .bookmark24px } + static var bookmarkOutline48px: MaterialDesignIconEnum { .bookmark24px } + static var borderAll24px: MaterialDesignIconEnum { .borderAll18px } + static var borderAll48px: MaterialDesignIconEnum { .borderAll18px } + static var borderBottom24px: MaterialDesignIconEnum { .borderBottom18px } + static var borderBottom48px: MaterialDesignIconEnum { .borderBottom18px } + static var borderClear24px: MaterialDesignIconEnum { .borderClear18px } + static var borderClear48px: MaterialDesignIconEnum { .borderClear18px } + static var borderColor24px: MaterialDesignIconEnum { .borderColor18px } + static var borderColor48px: MaterialDesignIconEnum { .borderColor18px } + static var borderHorizontal24px: MaterialDesignIconEnum { .borderHorizontal18px } + static var borderHorizontal48px: MaterialDesignIconEnum { .borderHorizontal18px } + static var borderInner24px: MaterialDesignIconEnum { .borderInner18px } + static var borderInner48px: MaterialDesignIconEnum { .borderInner18px } + static var borderLeft24px: MaterialDesignIconEnum { .borderLeft18px } + static var borderLeft48px: MaterialDesignIconEnum { .borderLeft18px } + static var borderOuter24px: MaterialDesignIconEnum { .borderOuter18px } + static var borderOuter48px: MaterialDesignIconEnum { .borderOuter18px } + static var borderRight24px: MaterialDesignIconEnum { .borderRight18px } + static var borderRight48px: MaterialDesignIconEnum { .borderRight18px } + static var borderStyle24px: MaterialDesignIconEnum { .borderStyle18px } + static var borderStyle48px: MaterialDesignIconEnum { .borderStyle18px } + static var borderTop24px: MaterialDesignIconEnum { .borderTop18px } + static var borderTop48px: MaterialDesignIconEnum { .borderTop18px } + static var borderVertical24px: MaterialDesignIconEnum { .borderVertical18px } + static var borderVertical48px: MaterialDesignIconEnum { .borderVertical18px } + static var brightnessAuto48px: MaterialDesignIconEnum { .brightnessAuto24px } + static var brightnessHigh48px: MaterialDesignIconEnum { .brightnessHigh24px } + static var brightnessLow48px: MaterialDesignIconEnum { .brightnessLow24px } + static var brightnessMedium48px: MaterialDesignIconEnum { .brightnessMedium24px } + static var brush48px: MaterialDesignIconEnum { .brush24px } + static var bugReport48px: MaterialDesignIconEnum { .bugReport24px } + static var business48px: MaterialDesignIconEnum { .business24px } + static var cached48px: MaterialDesignIconEnum { .cached24px } + static var cake24px: MaterialDesignIconEnum { .cake18px } + static var cake48px: MaterialDesignIconEnum { .cake18px } + static var call48px: MaterialDesignIconEnum { .call24px } + static var callEnd48px: MaterialDesignIconEnum { .callEnd24px } + static var callMade48px: MaterialDesignIconEnum { .callMade24px } + static var callMerge48px: MaterialDesignIconEnum { .callMerge24px } + static var callMissed48px: MaterialDesignIconEnum { .callMissed24px } + static var callReceived48px: MaterialDesignIconEnum { .callReceived24px } + static var callSplit48px: MaterialDesignIconEnum { .callSplit24px } + static var camera48px: MaterialDesignIconEnum { .camera24px } + static var cameraAlt48px: MaterialDesignIconEnum { .cameraAlt24px } + static var cameraFront48px: MaterialDesignIconEnum { .cameraFront24px } + static var cameraRear48px: MaterialDesignIconEnum { .cameraRear24px } + static var cameraRoll48px: MaterialDesignIconEnum { .cameraRoll24px } + static var cancel18px: MaterialDesignIconEnum { .highlightRemove24px } + static var cancel24px: MaterialDesignIconEnum { .highlightRemove24px } + static var cancel36px: MaterialDesignIconEnum { .highlightRemove24px } + static var cancel48px: MaterialDesignIconEnum { .highlightRemove24px } + static var cast48px: MaterialDesignIconEnum { .cast24px } + static var castConnected48px: MaterialDesignIconEnum { .castConnected24px } + static var centerFocusStrong48px: MaterialDesignIconEnum { .centerFocusStrong24px } + static var centerFocusWeak48px: MaterialDesignIconEnum { .centerFocusWeak24px } + static var chat48px: MaterialDesignIconEnum { .chat24px } + static var check24px: MaterialDesignIconEnum { .check18px } + static var check36px: MaterialDesignIconEnum { .check18px } + static var check48px: MaterialDesignIconEnum { .check18px } + static var checkBox48px: MaterialDesignIconEnum { .checkBox24px } + static var checkBoxOutlineBlank48px: MaterialDesignIconEnum { .checkBoxOutlineBlank24px } + static var chevronLeft18px: MaterialDesignIconEnum { .navigateBefore24px } + static var chevronLeft24px: MaterialDesignIconEnum { .navigateBefore24px } + static var chevronLeft36px: MaterialDesignIconEnum { .navigateBefore24px } + static var chevronLeft48px: MaterialDesignIconEnum { .navigateBefore24px } + static var chevronRight18px: MaterialDesignIconEnum { .navigateNext24px } + static var chevronRight24px: MaterialDesignIconEnum { .navigateNext24px } + static var chevronRight36px: MaterialDesignIconEnum { .navigateNext24px } + static var chevronRight48px: MaterialDesignIconEnum { .navigateNext24px } + static var class24px: MaterialDesignIconEnum { .book24px } + static var class48px: MaterialDesignIconEnum { .book24px } + static var clear48px: MaterialDesignIconEnum { .clear24px } + static var clearAll48px: MaterialDesignIconEnum { .clearAll24px } + static var close18px: MaterialDesignIconEnum { .clear24px } + static var close24px: MaterialDesignIconEnum { .clear24px } + static var close36px: MaterialDesignIconEnum { .clear24px } + static var close48px: MaterialDesignIconEnum { .clear24px } + static var closedCaption48px: MaterialDesignIconEnum { .closedCaption24px } + static var cloud48px: MaterialDesignIconEnum { .cloud24px } + static var cloudCircle24px: MaterialDesignIconEnum { .cloudCircle18px } + static var cloudCircle48px: MaterialDesignIconEnum { .cloudCircle18px } + static var cloudDone48px: MaterialDesignIconEnum { .cloudDone24px } + static var cloudDownload48px: MaterialDesignIconEnum { .cloudDownload24px } + static var cloudOff48px: MaterialDesignIconEnum { .cloudOff24px } + static var cloudQueue24px: MaterialDesignIconEnum { .cloud24px } + static var cloudQueue48px: MaterialDesignIconEnum { .cloud24px } + static var cloudUpload48px: MaterialDesignIconEnum { .cloudUpload24px } + static var collections48px: MaterialDesignIconEnum { .collections24px } + static var colorize48px: MaterialDesignIconEnum { .colorize24px } + static var colorLens48px: MaterialDesignIconEnum { .colorLens24px } + static var comment48px: MaterialDesignIconEnum { .comment24px } + static var compare48px: MaterialDesignIconEnum { .compare24px } + static var computer48px: MaterialDesignIconEnum { .computer24px } + static var contacts48px: MaterialDesignIconEnum { .contacts24px } + static var contentCopy48px: MaterialDesignIconEnum { .contentCopy24px } + static var contentCut48px: MaterialDesignIconEnum { .contentCut24px } + static var contentPaste48px: MaterialDesignIconEnum { .contentPaste24px } + static var controlPoint24px: MaterialDesignIconEnum { .addCircle24px } + static var controlPoint48px: MaterialDesignIconEnum { .addCircle24px } + static var controlPointDuplicate48px: MaterialDesignIconEnum { .controlPointDuplicate24px } + static var create48px: MaterialDesignIconEnum { .create24px } + static var creditCard48px: MaterialDesignIconEnum { .creditCard24px } + static var crop16924px: MaterialDesignIconEnum { .crop3224px } + static var crop16948px: MaterialDesignIconEnum { .crop3224px } + static var crop24px: MaterialDesignIconEnum { .crop3224px } + static var crop3248px: MaterialDesignIconEnum { .crop3224px } + static var crop48px: MaterialDesignIconEnum { .crop3224px } + static var crop5424px: MaterialDesignIconEnum { .crop3224px } + static var crop5448px: MaterialDesignIconEnum { .crop3224px } + static var crop7524px: MaterialDesignIconEnum { .crop3224px } + static var crop7548px: MaterialDesignIconEnum { .crop3224px } + static var cropDin48px: MaterialDesignIconEnum { .cropDin24px } + static var cropFree48px: MaterialDesignIconEnum { .cropFree24px } + static var cropLandscape48px: MaterialDesignIconEnum { .cropLandscape24px } + static var cropOriginal24px: MaterialDesignIconEnum { .insertPhoto18px } + static var cropOriginal48px: MaterialDesignIconEnum { .insertPhoto18px } + static var cropPortrait48px: MaterialDesignIconEnum { .cropPortrait24px } + static var cropSquare24px: MaterialDesignIconEnum { .cropDin24px } + static var cropSquare48px: MaterialDesignIconEnum { .cropDin24px } + static var dashboard48px: MaterialDesignIconEnum { .dashboard24px } + static var dataUsage48px: MaterialDesignIconEnum { .dataUsage24px } + static var dehaze48px: MaterialDesignIconEnum { .dehaze24px } + static var delete48px: MaterialDesignIconEnum { .delete24px } + static var description48px: MaterialDesignIconEnum { .description24px } + static var desktopMac48px: MaterialDesignIconEnum { .desktopMac24px } + static var desktopWindows48px: MaterialDesignIconEnum { .desktopWindows24px } + static var details48px: MaterialDesignIconEnum { .details24px } + static var developerMode48px: MaterialDesignIconEnum { .developerMode24px } + static var devices48px: MaterialDesignIconEnum { .devices24px } + static var dialerSip48px: MaterialDesignIconEnum { .dialerSip24px } + static var dialpad48px: MaterialDesignIconEnum { .dialpad24px } + static var directions48px: MaterialDesignIconEnum { .directions24px } + static var directionsBike48px: MaterialDesignIconEnum { .directionsBike24px } + static var directionsBus48px: MaterialDesignIconEnum { .directionsBus24px } + static var directionsCar48px: MaterialDesignIconEnum { .directionsCar24px } + static var directionsSubway48px: MaterialDesignIconEnum { .directionsSubway24px } + static var directionsTransit24px: MaterialDesignIconEnum { .directionsSubway24px } + static var directionsTransit48px: MaterialDesignIconEnum { .directionsSubway24px } + static var directionsWalk48px: MaterialDesignIconEnum { .directionsWalk24px } + static var discFull48px: MaterialDesignIconEnum { .discFull24px } + static var dns48px: MaterialDesignIconEnum { .dns24px } + static var dock48px: MaterialDesignIconEnum { .dock24px } + static var domain18px: MaterialDesignIconEnum { .business24px } + static var domain24px: MaterialDesignIconEnum { .business24px } + static var domain48px: MaterialDesignIconEnum { .business24px } + static var done48px: MaterialDesignIconEnum { .done24px } + static var doneAll48px: MaterialDesignIconEnum { .doneAll24px } + static var doNotDisturb48px: MaterialDesignIconEnum { .doNotDisturb24px } + static var drafts48px: MaterialDesignIconEnum { .drafts24px } + static var driveEta24px: MaterialDesignIconEnum { .directionsCar24px } + static var driveEta48px: MaterialDesignIconEnum { .directionsCar24px } + static var dvr48px: MaterialDesignIconEnum { .dvr24px } + static var edit24px: MaterialDesignIconEnum { .create24px } + static var edit48px: MaterialDesignIconEnum { .create24px } + static var email48px: MaterialDesignIconEnum { .email24px } + static var equalizer48px: MaterialDesignIconEnum { .equalizer24px } + static var error24px: MaterialDesignIconEnum { .error18px } + static var error36px: MaterialDesignIconEnum { .error18px } + static var error48px: MaterialDesignIconEnum { .error18px } + static var event24px: MaterialDesignIconEnum { .event18px } + static var event48px: MaterialDesignIconEnum { .event18px } + static var eventAvailable48px: MaterialDesignIconEnum { .eventAvailable24px } + static var eventBusy48px: MaterialDesignIconEnum { .eventBusy24px } + static var eventNote24px: MaterialDesignIconEnum { .eventNote18px } + static var eventNote48px: MaterialDesignIconEnum { .eventNote18px } + static var exitToApp48px: MaterialDesignIconEnum { .exitToApp24px } + static var expandLess24px: MaterialDesignIconEnum { .expandLess18px } + static var expandLess36px: MaterialDesignIconEnum { .expandLess18px } + static var expandLess48px: MaterialDesignIconEnum { .expandLess18px } + static var expandMore24px: MaterialDesignIconEnum { .expandMore18px } + static var expandMore36px: MaterialDesignIconEnum { .expandMore18px } + static var expandMore48px: MaterialDesignIconEnum { .expandMore18px } + static var explicit48px: MaterialDesignIconEnum { .explicit24px } + static var explore48px: MaterialDesignIconEnum { .explore24px } + static var exposure48px: MaterialDesignIconEnum { .exposure24px } + static var exposureZero48px: MaterialDesignIconEnum { .exposureZero24px } + static var extension48px: MaterialDesignIconEnum { .extension24px } + static var faceUnlock48px: MaterialDesignIconEnum { .faceUnlock24px } + static var fastForward48px: MaterialDesignIconEnum { .fastForward24px } + static var fastRewind48px: MaterialDesignIconEnum { .fastRewind24px } + static var favorite48px: MaterialDesignIconEnum { .favorite24px } + static var favoriteOutline24px: MaterialDesignIconEnum { .favorite24px } + static var favoriteOutline48px: MaterialDesignIconEnum { .favorite24px } + static var fileDownload24px: MaterialDesignIconEnum { .getApp24px } + static var fileDownload48px: MaterialDesignIconEnum { .getApp24px } + static var fileUpload48px: MaterialDesignIconEnum { .fileUpload24px } + static var filter124px: MaterialDesignIconEnum { .collections24px } + static var filter148px: MaterialDesignIconEnum { .collections24px } + static var filter224px: MaterialDesignIconEnum { .collections24px } + static var filter248px: MaterialDesignIconEnum { .collections24px } + static var filter24px: MaterialDesignIconEnum { .collections24px } + static var filter324px: MaterialDesignIconEnum { .collections24px } + static var filter348px: MaterialDesignIconEnum { .collections24px } + static var filter424px: MaterialDesignIconEnum { .collections24px } + static var filter448px: MaterialDesignIconEnum { .collections24px } + static var filter48px: MaterialDesignIconEnum { .collections24px } + static var filter524px: MaterialDesignIconEnum { .collections24px } + static var filter548px: MaterialDesignIconEnum { .collections24px } + static var filter624px: MaterialDesignIconEnum { .collections24px } + static var filter648px: MaterialDesignIconEnum { .collections24px } + static var filter724px: MaterialDesignIconEnum { .collections24px } + static var filter748px: MaterialDesignIconEnum { .collections24px } + static var filter824px: MaterialDesignIconEnum { .collections24px } + static var filter848px: MaterialDesignIconEnum { .collections24px } + static var filter924px: MaterialDesignIconEnum { .collections24px } + static var filter948px: MaterialDesignIconEnum { .collections24px } + static var filterBAndW48px: MaterialDesignIconEnum { .filterBAndW24px } + static var filterCenterFocus48px: MaterialDesignIconEnum { .filterCenterFocus24px } + static var filterDrama48px: MaterialDesignIconEnum { .filterDrama24px } + static var filterFrames48px: MaterialDesignIconEnum { .filterFrames24px } + static var filterHdr48px: MaterialDesignIconEnum { .filterHdr24px } + static var filterList48px: MaterialDesignIconEnum { .filterList24px } + static var filterNone48px: MaterialDesignIconEnum { .filterNone24px } + static var filterTiltShift48px: MaterialDesignIconEnum { .filterTiltShift24px } + static var filterVintage48px: MaterialDesignIconEnum { .filterVintage24px } + static var findInPage48px: MaterialDesignIconEnum { .findInPage24px } + static var findReplace48px: MaterialDesignIconEnum { .findReplace24px } + static var flag48px: MaterialDesignIconEnum { .flag24px } + static var flare48px: MaterialDesignIconEnum { .flare24px } + static var flashAuto48px: MaterialDesignIconEnum { .flashAuto24px } + static var flashOff48px: MaterialDesignIconEnum { .flashOff24px } + static var flashOn48px: MaterialDesignIconEnum { .flashOn24px } + static var flight48px: MaterialDesignIconEnum { .flight24px } + static var flip48px: MaterialDesignIconEnum { .flip24px } + static var flipToBack48px: MaterialDesignIconEnum { .flipToBack24px } + static var flipToFront48px: MaterialDesignIconEnum { .flipToFront24px } + static var folder24px: MaterialDesignIconEnum { .folder18px } + static var folder48px: MaterialDesignIconEnum { .folder18px } + static var folderOpen24px: MaterialDesignIconEnum { .folderOpen18px } + static var folderOpen48px: MaterialDesignIconEnum { .folderOpen18px } + static var folderShared24px: MaterialDesignIconEnum { .folderShared18px } + static var folderShared48px: MaterialDesignIconEnum { .folderShared18px } + static var folderSpecial48px: MaterialDesignIconEnum { .folderSpecial24px } + static var formatAlignCenter24px: MaterialDesignIconEnum { .formatAlignCenter18px } + static var formatAlignCenter48px: MaterialDesignIconEnum { .formatAlignCenter18px } + static var formatAlignJustify24px: MaterialDesignIconEnum { .formatAlignJustify18px } + static var formatAlignJustify48px: MaterialDesignIconEnum { .formatAlignJustify18px } + static var formatAlignLeft24px: MaterialDesignIconEnum { .formatAlignLeft18px } + static var formatAlignLeft48px: MaterialDesignIconEnum { .formatAlignLeft18px } + static var formatAlignRight24px: MaterialDesignIconEnum { .formatAlignRight18px } + static var formatAlignRight48px: MaterialDesignIconEnum { .formatAlignRight18px } + static var formatBold24px: MaterialDesignIconEnum { .formatBold18px } + static var formatBold48px: MaterialDesignIconEnum { .formatBold18px } + static var formatClear24px: MaterialDesignIconEnum { .formatClear18px } + static var formatClear48px: MaterialDesignIconEnum { .formatClear18px } + static var formatColorFill24px: MaterialDesignIconEnum { .formatColorFill18px } + static var formatColorFill48px: MaterialDesignIconEnum { .formatColorFill18px } + static var formatColorReset24px: MaterialDesignIconEnum { .formatColorReset18px } + static var formatColorReset48px: MaterialDesignIconEnum { .formatColorReset18px } + static var formatColorText24px: MaterialDesignIconEnum { .formatColorText18px } + static var formatColorText48px: MaterialDesignIconEnum { .formatColorText18px } + static var formatIndentDecrease24px: MaterialDesignIconEnum { .formatIndentDecrease18px } + static var formatIndentDecrease48px: MaterialDesignIconEnum { .formatIndentDecrease18px } + static var formatIndentIncrease24px: MaterialDesignIconEnum { .formatIndentIncrease18px } + static var formatIndentIncrease48px: MaterialDesignIconEnum { .formatIndentIncrease18px } + static var formatItalic24px: MaterialDesignIconEnum { .formatItalic18px } + static var formatItalic48px: MaterialDesignIconEnum { .formatItalic18px } + static var formatLineSpacing24px: MaterialDesignIconEnum { .formatLineSpacing18px } + static var formatLineSpacing48px: MaterialDesignIconEnum { .formatLineSpacing18px } + static var formatListBulleted24px: MaterialDesignIconEnum { .formatListBulleted18px } + static var formatListBulleted48px: MaterialDesignIconEnum { .formatListBulleted18px } + static var formatListNumbered24px: MaterialDesignIconEnum { .formatListNumbered18px } + static var formatListNumbered48px: MaterialDesignIconEnum { .formatListNumbered18px } + static var formatPaint24px: MaterialDesignIconEnum { .formatPaint18px } + static var formatPaint48px: MaterialDesignIconEnum { .formatPaint18px } + static var formatQuote24px: MaterialDesignIconEnum { .formatQuote18px } + static var formatQuote48px: MaterialDesignIconEnum { .formatQuote18px } + static var formatSize24px: MaterialDesignIconEnum { .formatSize18px } + static var formatSize48px: MaterialDesignIconEnum { .formatSize18px } + static var formatStrikethrough24px: MaterialDesignIconEnum { .formatStrikethrough18px } + static var formatStrikethrough48px: MaterialDesignIconEnum { .formatStrikethrough18px } + static var formatTextdirectionLToR24px: MaterialDesignIconEnum { .formatTextdirectionLToR18px } + static var formatTextdirectionLToR48px: MaterialDesignIconEnum { .formatTextdirectionLToR18px } + static var formatTextdirectionRToL24px: MaterialDesignIconEnum { .formatTextdirectionRToL18px } + static var formatTextdirectionRToL48px: MaterialDesignIconEnum { .formatTextdirectionRToL18px } + static var forum24px: MaterialDesignIconEnum { .questionAnswer24px } + static var forum48px: MaterialDesignIconEnum { .questionAnswer24px } + static var forward48px: MaterialDesignIconEnum { .forward24px } + static var fullscreen24px: MaterialDesignIconEnum { .fullscreen18px } + static var fullscreen36px: MaterialDesignIconEnum { .fullscreen18px } + static var fullscreen48px: MaterialDesignIconEnum { .fullscreen18px } + static var fullscreenExit24px: MaterialDesignIconEnum { .fullscreenExit18px } + static var fullscreenExit36px: MaterialDesignIconEnum { .fullscreenExit18px } + static var fullscreenExit48px: MaterialDesignIconEnum { .fullscreenExit18px } + static var functions24px: MaterialDesignIconEnum { .functions18px } + static var functions48px: MaterialDesignIconEnum { .functions18px } + static var gamepad24px: MaterialDesignIconEnum { .games24px } + static var gamepad48px: MaterialDesignIconEnum { .games24px } + static var games48px: MaterialDesignIconEnum { .games24px } + static var gesture48px: MaterialDesignIconEnum { .gesture24px } + static var getApp48px: MaterialDesignIconEnum { .getApp24px } + static var gpsFixed48px: MaterialDesignIconEnum { .gpsFixed24px } + static var gpsNotFixed48px: MaterialDesignIconEnum { .gpsNotFixed24px } + static var gpsOff48px: MaterialDesignIconEnum { .gpsOff24px } + static var grade48px: MaterialDesignIconEnum { .grade24px } + static var gradient48px: MaterialDesignIconEnum { .gradient24px } + static var grain48px: MaterialDesignIconEnum { .grain24px } + static var gridOff48px: MaterialDesignIconEnum { .gridOff24px } + static var gridOn48px: MaterialDesignIconEnum { .gridOn24px } + static var group24px: MaterialDesignIconEnum { .group18px } + static var group48px: MaterialDesignIconEnum { .group18px } + static var groupAdd24px: MaterialDesignIconEnum { .groupAdd18px } + static var groupAdd48px: MaterialDesignIconEnum { .groupAdd18px } + static var groupWork48px: MaterialDesignIconEnum { .groupWork24px } + static var hdrOff48px: MaterialDesignIconEnum { .hdrOff24px } + static var hdrOn48px: MaterialDesignIconEnum { .hdrOn24px } + static var hdrStrong48px: MaterialDesignIconEnum { .hdrStrong24px } + static var hdrWeak48px: MaterialDesignIconEnum { .hdrWeak24px } + static var headset48px: MaterialDesignIconEnum { .headset24px } + static var headsetMic48px: MaterialDesignIconEnum { .headsetMic24px } + static var healing48px: MaterialDesignIconEnum { .healing24px } + static var hearing48px: MaterialDesignIconEnum { .hearing24px } + static var help48px: MaterialDesignIconEnum { .help24px } + static var highlightRemove48px: MaterialDesignIconEnum { .highlightRemove24px } + static var highQuality48px: MaterialDesignIconEnum { .highQuality24px } + static var history48px: MaterialDesignIconEnum { .history24px } + static var home48px: MaterialDesignIconEnum { .home24px } + static var hotel48px: MaterialDesignIconEnum { .hotel24px } + static var https48px: MaterialDesignIconEnum { .https24px } + static var image24px: MaterialDesignIconEnum { .insertPhoto18px } + static var image48px: MaterialDesignIconEnum { .insertPhoto18px } + static var imageAspectRatio48px: MaterialDesignIconEnum { .imageAspectRatio24px } + static var importExport24px: MaterialDesignIconEnum { .swapVert24px } + static var importExport48px: MaterialDesignIconEnum { .swapVert24px } + static var inbox48px: MaterialDesignIconEnum { .inbox24px } + static var info48px: MaterialDesignIconEnum { .info24px } + static var infoOutline24px: MaterialDesignIconEnum { .info24px } + static var infoOutline48px: MaterialDesignIconEnum { .info24px } + static var input48px: MaterialDesignIconEnum { .input24px } + static var insertChart18px: MaterialDesignIconEnum { .assessment24px } + static var insertChart24px: MaterialDesignIconEnum { .assessment24px } + static var insertChart48px: MaterialDesignIconEnum { .assessment24px } + static var insertComment18px: MaterialDesignIconEnum { .comment24px } + static var insertComment24px: MaterialDesignIconEnum { .comment24px } + static var insertComment48px: MaterialDesignIconEnum { .comment24px } + static var insertDriveFile24px: MaterialDesignIconEnum { .insertDriveFile18px } + static var insertDriveFile48px: MaterialDesignIconEnum { .insertDriveFile18px } + static var insertEmoticon24px: MaterialDesignIconEnum { .insertEmoticon18px } + static var insertEmoticon48px: MaterialDesignIconEnum { .insertEmoticon18px } + static var insertInvitation18px: MaterialDesignIconEnum { .event18px } + static var insertInvitation24px: MaterialDesignIconEnum { .event18px } + static var insertInvitation48px: MaterialDesignIconEnum { .event18px } + static var insertLink18px: MaterialDesignIconEnum { .link24px } + static var insertLink24px: MaterialDesignIconEnum { .link24px } + static var insertLink48px: MaterialDesignIconEnum { .link24px } + static var insertPhoto24px: MaterialDesignIconEnum { .insertPhoto18px } + static var insertPhoto48px: MaterialDesignIconEnum { .insertPhoto18px } + static var invertColors48px: MaterialDesignIconEnum { .invertColors24px } + static var invertColorsOff48px: MaterialDesignIconEnum { .invertColorsOff24px } + static var iso24px: MaterialDesignIconEnum { .exposure24px } + static var iso48px: MaterialDesignIconEnum { .exposure24px } + static var keyboard48px: MaterialDesignIconEnum { .keyboard24px } + static var keyboardAlt48px: MaterialDesignIconEnum { .keyboardAlt24px } + static var keyboardArrowDown48px: MaterialDesignIconEnum { .keyboardArrowDown24px } + static var keyboardArrowLeft48px: MaterialDesignIconEnum { .keyboardArrowLeft24px } + static var keyboardArrowRight48px: MaterialDesignIconEnum { .keyboardArrowRight24px } + static var keyboardArrowUp48px: MaterialDesignIconEnum { .keyboardArrowUp24px } + static var keyboardBackspace48px: MaterialDesignIconEnum { .keyboardBackspace24px } + static var keyboardCapslock48px: MaterialDesignIconEnum { .keyboardCapslock24px } + static var keyboardHide48px: MaterialDesignIconEnum { .keyboardHide24px } + static var keyboardReturn48px: MaterialDesignIconEnum { .keyboardReturn24px } + static var keyboardTab48px: MaterialDesignIconEnum { .keyboardTab24px } + static var keyboardVoice24px: MaterialDesignIconEnum { .mic24px } + static var keyboardVoice48px: MaterialDesignIconEnum { .mic24px } + static var label48px: MaterialDesignIconEnum { .label24px } + static var labelOutline24px: MaterialDesignIconEnum { .label24px } + static var labelOutline48px: MaterialDesignIconEnum { .label24px } + static var landscape48px: MaterialDesignIconEnum { .landscape24px } + static var language48px: MaterialDesignIconEnum { .language24px } + static var laptop24px: MaterialDesignIconEnum { .computer24px } + static var laptop48px: MaterialDesignIconEnum { .computer24px } + static var laptopChromebook48px: MaterialDesignIconEnum { .laptopChromebook24px } + static var laptopMac48px: MaterialDesignIconEnum { .laptopMac24px } + static var laptopWindows48px: MaterialDesignIconEnum { .laptopWindows24px } + static var launch48px: MaterialDesignIconEnum { .launch24px } + static var layers48px: MaterialDesignIconEnum { .layers24px } + static var layersClear48px: MaterialDesignIconEnum { .layersClear24px } + static var leakAdd48px: MaterialDesignIconEnum { .leakAdd24px } + static var leakRemove48px: MaterialDesignIconEnum { .leakRemove24px } + static var lens48px: MaterialDesignIconEnum { .lens24px } + static var link48px: MaterialDesignIconEnum { .link24px } + static var list48px: MaterialDesignIconEnum { .list24px } + static var liveHelp48px: MaterialDesignIconEnum { .liveHelp24px } + static var localAirport48px: MaterialDesignIconEnum { .localAirport24px } + static var localAtm48px: MaterialDesignIconEnum { .localAtm24px } + static var localBar48px: MaterialDesignIconEnum { .localBar24px } + static var localCafe24px: MaterialDesignIconEnum { .directionsFerry48px } + static var localCafe48px: MaterialDesignIconEnum { .directionsFerry48px } + static var localCarWash48px: MaterialDesignIconEnum { .localCarWash24px } + static var localConvenienceStore48px: MaterialDesignIconEnum { .localConvenienceStore24px } + static var localDrink48px: MaterialDesignIconEnum { .localDrink24px } + static var localFlorist48px: MaterialDesignIconEnum { .localFlorist24px } + static var localGasStation48px: MaterialDesignIconEnum { .localGasStation24px } + static var localGroceryStore24px: MaterialDesignIconEnum { .shoppingCart24px } + static var localGroceryStore48px: MaterialDesignIconEnum { .shoppingCart24px } + static var localHospital48px: MaterialDesignIconEnum { .localHospital24px } + static var localHotel24px: MaterialDesignIconEnum { .hotel24px } + static var localHotel48px: MaterialDesignIconEnum { .hotel24px } + static var localLaundryService48px: MaterialDesignIconEnum { .localLaundryService24px } + static var localLibrary48px: MaterialDesignIconEnum { .localLibrary24px } + static var localMall48px: MaterialDesignIconEnum { .localMall24px } + static var localMovies24px: MaterialDesignIconEnum { .theaters24px } + static var localMovies48px: MaterialDesignIconEnum { .theaters24px } + static var localOffer48px: MaterialDesignIconEnum { .localOffer24px } + static var localParking48px: MaterialDesignIconEnum { .localParking24px } + static var localPharmacy48px: MaterialDesignIconEnum { .localPharmacy24px } + static var localPhone24px: MaterialDesignIconEnum { .call24px } + static var localPhone48px: MaterialDesignIconEnum { .call24px } + static var localPizza48px: MaterialDesignIconEnum { .localPizza24px } + static var localPlay48px: MaterialDesignIconEnum { .localPlay24px } + static var localPostOffice48px: MaterialDesignIconEnum { .localPostOffice24px } + static var localSee48px: MaterialDesignIconEnum { .localSee24px } + static var localShipping48px: MaterialDesignIconEnum { .localShipping24px } + static var localTaxi48px: MaterialDesignIconEnum { .localTaxi24px } + static var locationCity24px: MaterialDesignIconEnum { .locationCity18px } + static var locationCity48px: MaterialDesignIconEnum { .locationCity18px } + static var locationDisabled24px: MaterialDesignIconEnum { .gpsOff24px } + static var locationDisabled48px: MaterialDesignIconEnum { .gpsOff24px } + static var locationOff48px: MaterialDesignIconEnum { .locationOff24px } + static var locationOn24px: MaterialDesignIconEnum { .room24px } + static var locationOn48px: MaterialDesignIconEnum { .room24px } + static var locationSearching24px: MaterialDesignIconEnum { .gpsNotFixed24px } + static var locationSearching48px: MaterialDesignIconEnum { .gpsNotFixed24px } + static var lock24px: MaterialDesignIconEnum { .https24px } + static var lock48px: MaterialDesignIconEnum { .https24px } + static var lockOpen48px: MaterialDesignIconEnum { .lockOpen24px } + static var lockOutline24px: MaterialDesignIconEnum { .https24px } + static var lockOutline48px: MaterialDesignIconEnum { .https24px } + static var looks24px: MaterialDesignIconEnum { .looks324px } + static var looks348px: MaterialDesignIconEnum { .looks324px } + static var looks424px: MaterialDesignIconEnum { .looks324px } + static var looks448px: MaterialDesignIconEnum { .looks324px } + static var looks48px: MaterialDesignIconEnum { .looks324px } + static var looks524px: MaterialDesignIconEnum { .looks324px } + static var looks548px: MaterialDesignIconEnum { .looks324px } + static var looks624px: MaterialDesignIconEnum { .looks324px } + static var looks648px: MaterialDesignIconEnum { .looks324px } + static var looksOne48px: MaterialDesignIconEnum { .looksOne24px } + static var looksTwo48px: MaterialDesignIconEnum { .looksTwo24px } + static var loop24px: MaterialDesignIconEnum { .autorenew24px } + static var loop48px: MaterialDesignIconEnum { .autorenew24px } + static var loupe48px: MaterialDesignIconEnum { .loupe24px } + static var loyalty48px: MaterialDesignIconEnum { .loyalty24px } + static var mail24px: MaterialDesignIconEnum { .email24px } + static var mail48px: MaterialDesignIconEnum { .email24px } + static var map48px: MaterialDesignIconEnum { .map24px } + static var markunread24px: MaterialDesignIconEnum { .email24px } + static var markunread48px: MaterialDesignIconEnum { .email24px } + static var markunreadMailbox48px: MaterialDesignIconEnum { .markunreadMailbox24px } + static var memory48px: MaterialDesignIconEnum { .memory24px } + static var menu24px: MaterialDesignIconEnum { .menu18px } + static var menu36px: MaterialDesignIconEnum { .menu18px } + static var menu48px: MaterialDesignIconEnum { .menu18px } + static var mergeType24px: MaterialDesignIconEnum { .mergeType18px } + static var mergeType48px: MaterialDesignIconEnum { .mergeType18px } + static var message24px: MaterialDesignIconEnum { .chat24px } + static var message48px: MaterialDesignIconEnum { .chat24px } + static var mic48px: MaterialDesignIconEnum { .mic24px } + static var micNone24px: MaterialDesignIconEnum { .mic24px } + static var micNone48px: MaterialDesignIconEnum { .mic24px } + static var micOff48px: MaterialDesignIconEnum { .micOff24px } + static var mms48px: MaterialDesignIconEnum { .mms24px } + static var modeComment24px: MaterialDesignIconEnum { .modeComment18px } + static var modeComment48px: MaterialDesignIconEnum { .modeComment18px } + static var modeEdit18px: MaterialDesignIconEnum { .create24px } + static var modeEdit24px: MaterialDesignIconEnum { .create24px } + static var modeEdit48px: MaterialDesignIconEnum { .create24px } + static var mood18px: MaterialDesignIconEnum { .insertEmoticon18px } + static var mood24px: MaterialDesignIconEnum { .insertEmoticon18px } + static var mood48px: MaterialDesignIconEnum { .insertEmoticon18px } + static var more48px: MaterialDesignIconEnum { .more24px } + static var moreHoriz24px: MaterialDesignIconEnum { .moreHoriz18px } + static var moreHoriz36px: MaterialDesignIconEnum { .moreHoriz18px } + static var moreHoriz48px: MaterialDesignIconEnum { .moreHoriz18px } + static var moreVert24px: MaterialDesignIconEnum { .moreVert18px } + static var moreVert36px: MaterialDesignIconEnum { .moreVert18px } + static var moreVert48px: MaterialDesignIconEnum { .moreVert18px } + static var mouse48px: MaterialDesignIconEnum { .mouse24px } + static var movie48px: MaterialDesignIconEnum { .movie24px } + static var movieCreation24px: MaterialDesignIconEnum { .movie24px } + static var movieCreation48px: MaterialDesignIconEnum { .movie24px } + static var multitrackAudio24px: MaterialDesignIconEnum { .permMedia24px } + static var multitrackAudio48px: MaterialDesignIconEnum { .permPhoneMsg24px } + static var myLocation24px: MaterialDesignIconEnum { .gpsFixed24px } + static var myLocation48px: MaterialDesignIconEnum { .gpsFixed24px } + static var nature48px: MaterialDesignIconEnum { .nature24px } + static var naturePeople48px: MaterialDesignIconEnum { .naturePeople24px } + static var navigateBefore48px: MaterialDesignIconEnum { .navigateBefore24px } + static var navigateNext48px: MaterialDesignIconEnum { .navigateNext24px } + static var navigation48px: MaterialDesignIconEnum { .navigation24px } + static var networkCell24px: MaterialDesignIconEnum { .networkCell18px } + static var networkCell48px: MaterialDesignIconEnum { .networkCell18px } + static var networkLocked48px: MaterialDesignIconEnum { .networkLocked24px } + static var networkWifi24px: MaterialDesignIconEnum { .networkWifi18px } + static var networkWifi48px: MaterialDesignIconEnum { .networkWifi18px } + static var newReleases48px: MaterialDesignIconEnum { .newReleases24px } + static var nfc48px: MaterialDesignIconEnum { .nfc24px } + static var noSim48px: MaterialDesignIconEnum { .noSim24px } + static var noteAdd48px: MaterialDesignIconEnum { .noteAdd24px } + static var notifications48px: MaterialDesignIconEnum { .notifications24px } + static var notificationsNone24px: MaterialDesignIconEnum { .notifications24px } + static var notificationsNone48px: MaterialDesignIconEnum { .notifications24px } + static var notificationsOff48px: MaterialDesignIconEnum { .notificationsOff24px } + static var notificationsPaused48px: MaterialDesignIconEnum { .notificationsPaused24px } + static var notInterested48px: MaterialDesignIconEnum { .notInterested24px } + static var nowWallpaper48px: MaterialDesignIconEnum { .history24px } + static var nowWidgets48px: MaterialDesignIconEnum { .search24px } + static var openInBrowser48px: MaterialDesignIconEnum { .openInBrowser24px } + static var openInNew24px: MaterialDesignIconEnum { .launch24px } + static var openInNew48px: MaterialDesignIconEnum { .launch24px } + static var openWith48px: MaterialDesignIconEnum { .openWith24px } + static var pages24px: MaterialDesignIconEnum { .pages18px } + static var pages48px: MaterialDesignIconEnum { .pages18px } + static var pageview48px: MaterialDesignIconEnum { .pageview24px } + static var palette24px: MaterialDesignIconEnum { .colorLens24px } + static var palette48px: MaterialDesignIconEnum { .colorLens24px } + static var panorama48px: MaterialDesignIconEnum { .panorama24px } + static var panoramaHorizontal48px: MaterialDesignIconEnum { .panoramaHorizontal24px } + static var panoramaVertical48px: MaterialDesignIconEnum { .panoramaVertical24px } + static var panoramaWideAngle48px: MaterialDesignIconEnum { .panoramaWideAngle24px } + static var partyMode48px: MaterialDesignIconEnum { .partyMode24px } + static var pause48px: MaterialDesignIconEnum { .pause24px } + static var pauseCircleOutline48px: MaterialDesignIconEnum { .pauseCircleOutline24px } + static var payment24px: MaterialDesignIconEnum { .creditCard24px } + static var payment48px: MaterialDesignIconEnum { .creditCard24px } + static var people18px: MaterialDesignIconEnum { .group18px } + static var people24px: MaterialDesignIconEnum { .group18px } + static var people48px: MaterialDesignIconEnum { .group18px } + static var peopleOutline24px: MaterialDesignIconEnum { .group18px } + static var peopleOutline48px: MaterialDesignIconEnum { .group18px } + static var permCameraMic48px: MaterialDesignIconEnum { .permCameraMic24px } + static var permContactCal48px: MaterialDesignIconEnum { .permContactCal24px } + static var permDataSetting48px: MaterialDesignIconEnum { .permDataSetting24px } + static var permDeviceInfo48px: MaterialDesignIconEnum { .permDeviceInfo24px } + static var permIdentity48px: MaterialDesignIconEnum { .permIdentity24px } + static var permMedia48px: MaterialDesignIconEnum { .permMedia24px } + static var permPhoneMsg48px: MaterialDesignIconEnum { .permPhoneMsg24px } + static var permScanWifi48px: MaterialDesignIconEnum { .permScanWifi24px } + static var person18px: MaterialDesignIconEnum { .permIdentity24px } + static var person24px: MaterialDesignIconEnum { .permIdentity24px } + static var person48px: MaterialDesignIconEnum { .permIdentity24px } + static var personAdd24px: MaterialDesignIconEnum { .personAdd18px } + static var personAdd48px: MaterialDesignIconEnum { .personAdd18px } + static var personOutline18px: MaterialDesignIconEnum { .permIdentity24px } + static var personOutline24px: MaterialDesignIconEnum { .permIdentity24px } + static var personOutline48px: MaterialDesignIconEnum { .permIdentity24px } + static var phone24px: MaterialDesignIconEnum { .call24px } + static var phone48px: MaterialDesignIconEnum { .call24px } + static var phoneAndroid48px: MaterialDesignIconEnum { .phoneAndroid24px } + static var phoneBluetoothSpeaker48px: MaterialDesignIconEnum { .phoneBluetoothSpeaker24px } + static var phoneForwarded48px: MaterialDesignIconEnum { .phoneForwarded24px } + static var phoneInTalk48px: MaterialDesignIconEnum { .phoneInTalk24px } + static var phoneIphone48px: MaterialDesignIconEnum { .phoneIphone24px } + static var phonelink24px: MaterialDesignIconEnum { .devices24px } + static var phonelink48px: MaterialDesignIconEnum { .devices24px } + static var phonelinkOff48px: MaterialDesignIconEnum { .phonelinkOff24px } + static var phoneLocked48px: MaterialDesignIconEnum { .phoneLocked24px } + static var phoneMissed48px: MaterialDesignIconEnum { .phoneMissed24px } + static var phonePaused48px: MaterialDesignIconEnum { .phonePaused24px } + static var photo48px: MaterialDesignIconEnum { .photo24px } + static var photoAlbum48px: MaterialDesignIconEnum { .photoAlbum24px } + static var photoCamera24px: MaterialDesignIconEnum { .cameraAlt24px } + static var photoCamera48px: MaterialDesignIconEnum { .cameraAlt24px } + static var photoLibrary48px: MaterialDesignIconEnum { .photoLibrary24px } + static var pictureInPicture48px: MaterialDesignIconEnum { .pictureInPicture24px } + static var pinDrop48px: MaterialDesignIconEnum { .pinDrop24px } + static var place24px: MaterialDesignIconEnum { .room24px } + static var place48px: MaterialDesignIconEnum { .room24px } + static var playArrow48px: MaterialDesignIconEnum { .playArrow24px } + static var playlistAdd48px: MaterialDesignIconEnum { .playlistAdd24px } + static var plusOne48px: MaterialDesignIconEnum { .plusOne24px } + static var poll18px: MaterialDesignIconEnum { .assessment24px } + static var poll24px: MaterialDesignIconEnum { .assessment24px } + static var poll48px: MaterialDesignIconEnum { .assessment24px } + static var polymer48px: MaterialDesignIconEnum { .polymer24px } + static var portableWifiOff48px: MaterialDesignIconEnum { .portableWifiOff24px } + static var portrait24px: MaterialDesignIconEnum { .accountBox18px } + static var portrait48px: MaterialDesignIconEnum { .accountBox18px } + static var print48px: MaterialDesignIconEnum { .print24px } + static var public48px: MaterialDesignIconEnum { .public24px } + static var publish24px: MaterialDesignIconEnum { .publish18px } + static var publish48px: MaterialDesignIconEnum { .publish18px } + static var queryBuilder48px: MaterialDesignIconEnum { .queryBuilder24px } + static var questionAnswer48px: MaterialDesignIconEnum { .questionAnswer24px } + static var queue48px: MaterialDesignIconEnum { .queue24px } + static var queueMusic48px: MaterialDesignIconEnum { .queueMusic24px } + static var quickContactsMail24px: MaterialDesignIconEnum { .business24px } + static var radio48px: MaterialDesignIconEnum { .radio24px } + static var rateReview48px: MaterialDesignIconEnum { .rateReview24px } + static var receipt48px: MaterialDesignIconEnum { .receipt24px } + static var recentActors48px: MaterialDesignIconEnum { .recentActors24px } + static var redeem48px: MaterialDesignIconEnum { .redeem24px } + static var redo48px: MaterialDesignIconEnum { .redo24px } + static var refresh24px: MaterialDesignIconEnum { .refresh18px } + static var refresh36px: MaterialDesignIconEnum { .refresh18px } + static var refresh48px: MaterialDesignIconEnum { .refresh18px } + static var remove48px: MaterialDesignIconEnum { .remove24px } + static var removeCircle48px: MaterialDesignIconEnum { .removeCircle24px } + static var removeCircleOutline24px: MaterialDesignIconEnum { .removeCircle24px } + static var removeCircleOutline48px: MaterialDesignIconEnum { .removeCircle24px } + static var removeRedEye24px: MaterialDesignIconEnum { .visibility24px } + static var removeRedEye48px: MaterialDesignIconEnum { .visibility24px } + static var repeat48px: MaterialDesignIconEnum { .repeat24px } + static var repeatOne48px: MaterialDesignIconEnum { .repeatOne24px } + static var replay48px: MaterialDesignIconEnum { .replay24px } + static var reply48px: MaterialDesignIconEnum { .reply24px } + static var replyAll48px: MaterialDesignIconEnum { .replyAll24px } + static var report48px: MaterialDesignIconEnum { .report24px } + static var reportProblem48px: MaterialDesignIconEnum { .reportProblem24px } + static var restaurantMenu48px: MaterialDesignIconEnum { .restaurantMenu24px } + static var restore24px: MaterialDesignIconEnum { .history24px } + static var restore48px: MaterialDesignIconEnum { .history24px } + static var ringVolume48px: MaterialDesignIconEnum { .ringVolume24px } + static var room48px: MaterialDesignIconEnum { .room24px } + static var rotateLeft48px: MaterialDesignIconEnum { .rotateLeft24px } + static var rotateRight48px: MaterialDesignIconEnum { .rotateRight24px } + static var satellite48px: MaterialDesignIconEnum { .satellite24px } + static var save48px: MaterialDesignIconEnum { .save24px } + static var schedule24px: MaterialDesignIconEnum { .queryBuilder24px } + static var schedule48px: MaterialDesignIconEnum { .queryBuilder24px } + static var school48px: MaterialDesignIconEnum { .school24px } + static var screenLockLandscape48px: MaterialDesignIconEnum { .screenLockLandscape24px } + static var screenLockPortrait48px: MaterialDesignIconEnum { .screenLockPortrait24px } + static var screenLockRotation48px: MaterialDesignIconEnum { .screenLockRotation24px } + static var screenRotation48px: MaterialDesignIconEnum { .screenRotation24px } + static var sdCard24px: MaterialDesignIconEnum { .sdStorage24px } + static var sdCard48px: MaterialDesignIconEnum { .sdStorage24px } + static var sdStorage48px: MaterialDesignIconEnum { .sdStorage24px } + static var search48px: MaterialDesignIconEnum { .search24px } + static var security48px: MaterialDesignIconEnum { .security24px } + static var selectAll48px: MaterialDesignIconEnum { .selectAll24px } + static var send48px: MaterialDesignIconEnum { .send24px } + static var settings48px: MaterialDesignIconEnum { .settings24px } + static var settingsApplications48px: MaterialDesignIconEnum { .settingsApplications24px } + static var settingsBackupRestore48px: MaterialDesignIconEnum { .settingsBackupRestore24px } + static var settingsBluetooth48px: MaterialDesignIconEnum { .settingsBluetooth24px } + static var settingsCell48px: MaterialDesignIconEnum { .settingsCell24px } + static var settingsDisplay48px: MaterialDesignIconEnum { .settingsDisplay24px } + static var settingsEthernet48px: MaterialDesignIconEnum { .settingsEthernet24px } + static var settingsInputAntenna48px: MaterialDesignIconEnum { .settingsInputAntenna24px } + static var settingsInputComponent48px: MaterialDesignIconEnum { .settingsInputComponent24px } + static var settingsInputComposite24px: MaterialDesignIconEnum { .settingsInputComponent24px } + static var settingsInputComposite48px: MaterialDesignIconEnum { .settingsInputComponent24px } + static var settingsInputHdmi48px: MaterialDesignIconEnum { .settingsInputHdmi24px } + static var settingsInputSvideo48px: MaterialDesignIconEnum { .settingsInputSvideo24px } + static var settingsOverscan48px: MaterialDesignIconEnum { .settingsOverscan24px } + static var settingsPhone48px: MaterialDesignIconEnum { .settingsPhone24px } + static var settingsPower48px: MaterialDesignIconEnum { .settingsPower24px } + static var settingsRemote48px: MaterialDesignIconEnum { .settingsRemote24px } + static var settingsSystemDaydream48px: MaterialDesignIconEnum { .settingsSystemDaydream24px } + static var settingsVoice48px: MaterialDesignIconEnum { .settingsVoice24px } + static var share48px: MaterialDesignIconEnum { .share24px } + static var shop48px: MaterialDesignIconEnum { .shop24px } + static var shoppingBasket48px: MaterialDesignIconEnum { .shoppingBasket24px } + static var shoppingCart48px: MaterialDesignIconEnum { .shoppingCart24px } + static var shopTwo48px: MaterialDesignIconEnum { .shopTwo24px } + static var shuffle48px: MaterialDesignIconEnum { .shuffle24px } + static var signalCellular0Bar18px: MaterialDesignIconEnum { .settingsInputSvideo24px } + static var signalCellular0Bar24px: MaterialDesignIconEnum { .settingsOverscan24px } + static var signalCellular0Bar48px: MaterialDesignIconEnum { .settingsPhone24px } + static var signalCellular1Bar18px: MaterialDesignIconEnum { .settingsPower24px } + static var signalCellular1Bar24px: MaterialDesignIconEnum { .settingsRemote24px } + static var signalCellular1Bar48px: MaterialDesignIconEnum { .settingsVoice24px } + static var signalCellular2Bar18px: MaterialDesignIconEnum { .shop24px } + static var signalCellular2Bar24px: MaterialDesignIconEnum { .shopTwo24px } + static var signalCellular2Bar48px: MaterialDesignIconEnum { .shoppingBasket24px } + static var signalCellular3Bar18px: MaterialDesignIconEnum { .shoppingCart24px } + static var signalCellular3Bar24px: MaterialDesignIconEnum { .speakerNotes24px } + static var signalCellular3Bar48px: MaterialDesignIconEnum { .spellcheck24px } + static var signalCellular4Bar24px: MaterialDesignIconEnum { .stars24px } + static var signalCellular4Bar48px: MaterialDesignIconEnum { .store24px } + static var signalCellularConnectedNoInternet0Bar18px: MaterialDesignIconEnum { .subject24px } + static var signalCellularConnectedNoInternet0Bar24px: MaterialDesignIconEnum { .supervisorAccount24px } + static var signalCellularConnectedNoInternet0Bar48px: MaterialDesignIconEnum { .swapHoriz24px } + static var signalCellularConnectedNoInternet1Bar18px: MaterialDesignIconEnum { .swapVert24px } + static var signalCellularConnectedNoInternet1Bar24px: MaterialDesignIconEnum { .swapVertCircle24px } + static var signalCellularConnectedNoInternet1Bar48px: MaterialDesignIconEnum { .systemUpdateTv24px } + static var signalCellularConnectedNoInternet2Bar18px: MaterialDesignIconEnum { .tab24px } + static var signalCellularConnectedNoInternet2Bar24px: MaterialDesignIconEnum { .tabUnselected24px } + static var signalCellularConnectedNoInternet2Bar48px: MaterialDesignIconEnum { .theaters24px } + static var signalCellularConnectedNoInternet3Bar48px: MaterialDesignIconEnum { .thumbsUpDown24px } + static var signalCellularConnectedNoInternet4Bar18px: MaterialDesignIconEnum { .toc24px } + static var signalCellularConnectedNoInternet4Bar24px: MaterialDesignIconEnum { .today24px } + static var signalCellularNoSim24px: MaterialDesignIconEnum { .noSim24px } + static var signalCellularNoSim48px: MaterialDesignIconEnum { .noSim24px } + static var signalCellularNull24px: MaterialDesignIconEnum { .signalCellularNull18px } + static var signalCellularNull48px: MaterialDesignIconEnum { .signalCellularNull18px } + static var signalCellularOff24px: MaterialDesignIconEnum { .signalCellularOff18px } + static var signalCellularOff48px: MaterialDesignIconEnum { .signalCellularOff18px } + static var signalWifi0Bar18px: MaterialDesignIconEnum { .viewAgenda24px } + static var signalWifi0Bar24px: MaterialDesignIconEnum { .viewArray24px } + static var signalWifi0Bar48px: MaterialDesignIconEnum { .viewCarousel24px } + static var signalWifi1Bar18px: MaterialDesignIconEnum { .viewColumn24px } + static var signalWifi1Bar24px: MaterialDesignIconEnum { .viewDay24px } + static var signalWifi1Bar48px: MaterialDesignIconEnum { .viewHeadline24px } + static var signalWifi2Bar18px: MaterialDesignIconEnum { .viewList24px } + static var signalWifi2Bar24px: MaterialDesignIconEnum { .viewModule24px } + static var signalWifi2Bar48px: MaterialDesignIconEnum { .viewQuilt24px } + static var signalWifi3Bar18px: MaterialDesignIconEnum { .viewStream24px } + static var signalWifi3Bar24px: MaterialDesignIconEnum { .viewWeek24px } + static var signalWifi3Bar48px: MaterialDesignIconEnum { .visibility24px } + static var signalWifi4Bar18px: MaterialDesignIconEnum { .visibilityOff24px } + static var signalWifi4Bar24px: MaterialDesignIconEnum { .redeem24px } + static var signalWifiOff24px: MaterialDesignIconEnum { .signalWifiOff18px } + static var signalWifiOff48px: MaterialDesignIconEnum { .signalWifiOff18px } + static var signalWifiStatusbar3Bar26x24px: MaterialDesignIconEnum { .help24px } + static var signalWifiStatusbar4Bar26x24px: MaterialDesignIconEnum { .reorder24px } + static var simCard48px: MaterialDesignIconEnum { .simCard24px } + static var simCardAlert48px: MaterialDesignIconEnum { .simCardAlert24px } + static var skipNext48px: MaterialDesignIconEnum { .skipNext24px } + static var skipPrevious48px: MaterialDesignIconEnum { .skipPrevious24px } + static var slideshow48px: MaterialDesignIconEnum { .slideshow24px } + static var smartphone24px: MaterialDesignIconEnum { .stayCurrentPortrait24px } + static var smartphone48px: MaterialDesignIconEnum { .stayCurrentPortrait24px } + static var sms24px: MaterialDesignIconEnum { .textsms24px } + static var sms48px: MaterialDesignIconEnum { .textsms24px } + static var smsFailed24px: MaterialDesignIconEnum { .announcement24px } + static var smsFailed48px: MaterialDesignIconEnum { .announcement24px } + static var snooze48px: MaterialDesignIconEnum { .snooze24px } + static var sort48px: MaterialDesignIconEnum { .sort24px } + static var speaker48px: MaterialDesignIconEnum { .speaker24px } + static var speakerNotes48px: MaterialDesignIconEnum { .speakerNotes24px } + static var spellcheck48px: MaterialDesignIconEnum { .spellcheck24px } + static var star24px: MaterialDesignIconEnum { .grade24px } + static var starOutline24px: MaterialDesignIconEnum { .grade24px } + static var starRate48px: MaterialDesignIconEnum { .starRate24px } + static var stars48px: MaterialDesignIconEnum { .stars24px } + static var stayCurrentLandscape48px: MaterialDesignIconEnum { .stayCurrentLandscape24px } + static var stayCurrentPortrait48px: MaterialDesignIconEnum { .stayCurrentPortrait24px } + static var stayPrimaryLandscape24px: MaterialDesignIconEnum { .stayCurrentLandscape24px } + static var stayPrimaryLandscape48px: MaterialDesignIconEnum { .stayCurrentLandscape24px } + static var stayPrimaryPortrait48px: MaterialDesignIconEnum { .stayPrimaryPortrait24px } + static var stop48px: MaterialDesignIconEnum { .stop24px } + static var storage48px: MaterialDesignIconEnum { .storage24px } + static var store48px: MaterialDesignIconEnum { .store24px } + static var storeMallDirectory24px: MaterialDesignIconEnum { .store24px } + static var storeMallDirectory48px: MaterialDesignIconEnum { .store24px } + static var straighten48px: MaterialDesignIconEnum { .straighten24px } + static var style48px: MaterialDesignIconEnum { .style24px } + static var subject48px: MaterialDesignIconEnum { .subject24px } + static var subtitles48px: MaterialDesignIconEnum { .subtitles24px } + static var surroundSound48px: MaterialDesignIconEnum { .surroundSound24px } + static var swapCalls48px: MaterialDesignIconEnum { .swapCalls24px } + static var swapHoriz48px: MaterialDesignIconEnum { .swapHoriz24px } + static var swapVert48px: MaterialDesignIconEnum { .swapVert24px } + static var swapVertCircle48px: MaterialDesignIconEnum { .swapVertCircle24px } + static var switchCamera48px: MaterialDesignIconEnum { .switchCamera24px } + static var switchVideo48px: MaterialDesignIconEnum { .switchVideo24px } + static var sync48px: MaterialDesignIconEnum { .sync24px } + static var syncDisabled48px: MaterialDesignIconEnum { .syncDisabled24px } + static var syncProblem48px: MaterialDesignIconEnum { .syncProblem24px } + static var systemUpdate48px: MaterialDesignIconEnum { .systemUpdate24px } + static var systemUpdateTv48px: MaterialDesignIconEnum { .systemUpdateTv24px } + static var tab48px: MaterialDesignIconEnum { .tab24px } + static var tablet48px: MaterialDesignIconEnum { .tablet24px } + static var tabletAndroid48px: MaterialDesignIconEnum { .tabletAndroid24px } + static var tabletMac48px: MaterialDesignIconEnum { .tabletMac24px } + static var tabUnselected48px: MaterialDesignIconEnum { .tabUnselected24px } + static var tagFaces24px: MaterialDesignIconEnum { .insertEmoticon18px } + static var tagFaces48px: MaterialDesignIconEnum { .insertEmoticon18px } + static var tapAndPlay48px: MaterialDesignIconEnum { .tapAndPlay24px } + static var terrain24px: MaterialDesignIconEnum { .landscape24px } + static var terrain48px: MaterialDesignIconEnum { .landscape24px } + static var textFormat48px: MaterialDesignIconEnum { .textFormat24px } + static var textsms48px: MaterialDesignIconEnum { .textsms24px } + static var texture48px: MaterialDesignIconEnum { .texture24px } + static var theaters48px: MaterialDesignIconEnum { .theaters24px } + static var threeDRotation48px: MaterialDesignIconEnum { .threeDRotation24px } + static var thumbDown48px: MaterialDesignIconEnum { .thumbDown24px } + static var thumbsUpDown48px: MaterialDesignIconEnum { .thumbsUpDown24px } + static var thumbUp48px: MaterialDesignIconEnum { .thumbUp24px } + static var timelapse48px: MaterialDesignIconEnum { .timelapse24px } + static var timer1024px: MaterialDesignIconEnum { .timer324px } + static var timer1048px: MaterialDesignIconEnum { .timer324px } + static var timer24px: MaterialDesignIconEnum { .timer324px } + static var timer348px: MaterialDesignIconEnum { .timer324px } + static var timer48px: MaterialDesignIconEnum { .timer324px } + static var timerOff48px: MaterialDesignIconEnum { .timerOff24px } + static var timeToLeave24px: MaterialDesignIconEnum { .directionsCar24px } + static var timeToLeave48px: MaterialDesignIconEnum { .directionsCar24px } + static var toc48px: MaterialDesignIconEnum { .toc24px } + static var today48px: MaterialDesignIconEnum { .today24px } + static var tonality48px: MaterialDesignIconEnum { .tonality24px } + static var trackChanges48px: MaterialDesignIconEnum { .trackChanges24px } + static var traffic48px: MaterialDesignIconEnum { .traffic24px } + static var transform48px: MaterialDesignIconEnum { .transform24px } + static var translate48px: MaterialDesignIconEnum { .translate24px } + static var trendingDown48px: MaterialDesignIconEnum { .trendingDown24px } + static var trendingNeutral48px: MaterialDesignIconEnum { .trendingNeutral24px } + static var trendingUp48px: MaterialDesignIconEnum { .trendingUp24px } + static var tune48px: MaterialDesignIconEnum { .tune24px } + static var turnedIn24px: MaterialDesignIconEnum { .bookmark24px } + static var turnedIn48px: MaterialDesignIconEnum { .bookmark24px } + static var turnedInNot24px: MaterialDesignIconEnum { .bookmark24px } + static var turnedInNot48px: MaterialDesignIconEnum { .bookmark24px } + static var tv48px: MaterialDesignIconEnum { .tv24px } + static var undo48px: MaterialDesignIconEnum { .undo24px } + static var unfoldLess24px: MaterialDesignIconEnum { .unfoldLess18px } + static var unfoldLess36px: MaterialDesignIconEnum { .unfoldLess18px } + static var unfoldLess48px: MaterialDesignIconEnum { .unfoldLess18px } + static var unfoldMore24px: MaterialDesignIconEnum { .unfoldMore18px } + static var unfoldMore36px: MaterialDesignIconEnum { .unfoldMore18px } + static var unfoldMore48px: MaterialDesignIconEnum { .unfoldMore18px } + static var usb24px: MaterialDesignIconEnum { .usb18px } + static var usb48px: MaterialDesignIconEnum { .usb18px } + static var verifiedUser48px: MaterialDesignIconEnum { .verifiedUser24px } + static var verticalAlignBottom24px: MaterialDesignIconEnum { .verticalAlignBottom18px } + static var verticalAlignBottom48px: MaterialDesignIconEnum { .verticalAlignBottom18px } + static var verticalAlignCenter24px: MaterialDesignIconEnum { .verticalAlignCenter18px } + static var verticalAlignCenter48px: MaterialDesignIconEnum { .verticalAlignCenter18px } + static var verticalAlignTop24px: MaterialDesignIconEnum { .verticalAlignTop18px } + static var verticalAlignTop48px: MaterialDesignIconEnum { .verticalAlignTop18px } + static var vibration24px: MaterialDesignIconEnum { .vibration18px } + static var vibration48px: MaterialDesignIconEnum { .vibration18px } + static var videocam48px: MaterialDesignIconEnum { .videocam24px } + static var videocamOff48px: MaterialDesignIconEnum { .videocamOff24px } + static var viewAgenda48px: MaterialDesignIconEnum { .viewAgenda24px } + static var viewArray48px: MaterialDesignIconEnum { .viewArray24px } + static var viewCarousel48px: MaterialDesignIconEnum { .viewCarousel24px } + static var viewColumn48px: MaterialDesignIconEnum { .viewColumn24px } + static var viewDay48px: MaterialDesignIconEnum { .viewDay24px } + static var viewHeadline48px: MaterialDesignIconEnum { .viewHeadline24px } + static var viewList48px: MaterialDesignIconEnum { .viewList24px } + static var viewModule48px: MaterialDesignIconEnum { .viewModule24px } + static var viewQuilt48px: MaterialDesignIconEnum { .viewQuilt24px } + static var viewStream48px: MaterialDesignIconEnum { .viewStream24px } + static var viewWeek48px: MaterialDesignIconEnum { .viewWeek24px } + static var visibility48px: MaterialDesignIconEnum { .visibility24px } + static var visibilityOff48px: MaterialDesignIconEnum { .visibilityOff24px } + static var voiceChat48px: MaterialDesignIconEnum { .voiceChat24px } + static var voicemail48px: MaterialDesignIconEnum { .voicemail24px } + static var volumeDown24px: MaterialDesignIconEnum { .volumeDown18px } + static var volumeDown48px: MaterialDesignIconEnum { .volumeDown18px } + static var volumeMute24px: MaterialDesignIconEnum { .volumeMute18px } + static var volumeMute48px: MaterialDesignIconEnum { .volumeMute18px } + static var volumeOff48px: MaterialDesignIconEnum { .volumeOff24px } + static var volumeUp24px: MaterialDesignIconEnum { .volumeUp18px } + static var volumeUp48px: MaterialDesignIconEnum { .volumeUp18px } + static var vpnKey48px: MaterialDesignIconEnum { .vpnKey24px } + static var vpnLock48px: MaterialDesignIconEnum { .vpnLock24px } + static var warning18px: MaterialDesignIconEnum { .reportProblem24px } + static var warning24px: MaterialDesignIconEnum { .reportProblem24px } + static var warning36px: MaterialDesignIconEnum { .reportProblem24px } + static var warning48px: MaterialDesignIconEnum { .reportProblem24px } + static var watch48px: MaterialDesignIconEnum { .watch24px } + static var wbAuto48px: MaterialDesignIconEnum { .wbAuto24px } + static var wbCloudy24px: MaterialDesignIconEnum { .cloud24px } + static var wbCloudy48px: MaterialDesignIconEnum { .cloud24px } + static var wbIncandescent48px: MaterialDesignIconEnum { .wbIncandescent24px } + static var wbSunny48px: MaterialDesignIconEnum { .wbSunny24px } + static var web48px: MaterialDesignIconEnum { .web24px } + static var whatshot24px: MaterialDesignIconEnum { .whatshot18px } + static var whatshot48px: MaterialDesignIconEnum { .whatshot18px } + static var wifiLock48px: MaterialDesignIconEnum { .wifiLock24px } + static var wifiTethering48px: MaterialDesignIconEnum { .wifiTethering24px } + static var work48px: MaterialDesignIconEnum { .work24px } + static var wrapText24px: MaterialDesignIconEnum { .wrapText18px } + static var wrapText48px: MaterialDesignIconEnum { .wrapText18px } } #endif diff --git a/Sources/MaterialDesignSymbol/MaterialSymbolEnum.swift b/Sources/MaterialDesignSymbol/MaterialSymbolEnum.swift new file mode 100644 index 0000000..4005e78 --- /dev/null +++ b/Sources/MaterialDesignSymbol/MaterialSymbolEnum.swift @@ -0,0 +1,4122 @@ +// +// MaterialSymbolEnum +// +// Auto-generated from Material Symbols Outlined codepoints +// + +#if !os(macOS) +import UIKit + +/** + * Material Symbols Outlined のアイコンコードを返すenum + * アイコン数: 3802 unique + 300 aliases + */ +public enum MaterialSymbolEnum: String, CaseIterable { + case abc = "\u{eb94}" + case accessAlarm = "\u{e855}" + case accessibility = "\u{e84e}" + case accessibilityNew = "\u{e92c}" + case accessible = "\u{e914}" + case accessibleForward = "\u{e934}" + case accessibleMenu = "\u{f34e}" + case accessTime = "\u{efd6}" + case accountBalance = "\u{e84f}" + case accountBalanceWallet = "\u{e850}" + case accountBox = "\u{e851}" + case accountChild = "\u{e852}" + case accountChildInvert = "\u{e659}" + case accountCircle = "\u{f20b}" + case accountCircleOff = "\u{f7b3}" + case accountTree = "\u{e97a}" + case actionKey = "\u{f502}" + case activityZone = "\u{e1e6}" + case acUnit = "\u{eb3b}" + case acupuncture = "\u{f2c4}" + case acute = "\u{e4cb}" + case ad = "\u{e65a}" + case adaptiveAudioMic = "\u{f4cc}" + case adaptiveAudioMicOff = "\u{f4cb}" + case adb = "\u{e60e}" + case add = "\u{e145}" + case add2 = "\u{f3dd}" + case addAd = "\u{e72a}" + case addAlarm = "\u{e856}" + case addAlert = "\u{e003}" + case addAPhoto = "\u{e439}" + case addBox = "\u{e146}" + case addBusiness = "\u{e729}" + case addCall = "\u{f0b7}" + case addCard = "\u{eb86}" + case addChart = "\u{ef3c}" + case addCircle = "\u{e3ba}" + case addColumnLeft = "\u{f425}" + case addColumnRight = "\u{f424}" + case addComment = "\u{e266}" + case addDiamond = "\u{f49c}" + case addHome = "\u{f8eb}" + case addHomeWork = "\u{f8ed}" + case addLink = "\u{e178}" + case addLocation = "\u{e567}" + case addLocationAlt = "\u{ef3a}" + case addModerator = "\u{e97d}" + case addNotes = "\u{e091}" + case addPhotoAlternate = "\u{e43e}" + case addReaction = "\u{e1d3}" + case addRoad = "\u{ef3b}" + case addRowAbove = "\u{f423}" + case addRowBelow = "\u{f422}" + case addShoppingCart = "\u{e854}" + case addTask = "\u{f23a}" + case addToDrive = "\u{e65c}" + case addToHomeScreen = "\u{f2b9}" + case addToPhotos = "\u{e39d}" + case addToQueue = "\u{e05c}" + case addTriangle = "\u{f48e}" + case adfScanner = "\u{eada}" + case adGroup = "\u{e65b}" + case adGroupOff = "\u{eae5}" + case adjust = "\u{e39e}" + case adminMeds = "\u{e48d}" + case adminPanelSettings = "\u{ef3d}" + case adOff = "\u{f7b2}" + case adsClick = "\u{e762}" + case adUnits = "\u{f2eb}" + case agender = "\u{f888}" + case agriculture = "\u{ea79}" + case air = "\u{efd8}" + case airFreshener = "\u{e2ca}" + case airlines = "\u{e7ca}" + case airlineSeatFlat = "\u{e630}" + case airlineSeatFlatAngled = "\u{e631}" + case airlineSeatIndividualSuite = "\u{e632}" + case airlineSeatLegroomExtra = "\u{e633}" + case airlineSeatLegroomNormal = "\u{e634}" + case airlineSeatLegroomReduced = "\u{e635}" + case airlineSeatReclineExtra = "\u{e636}" + case airlineSeatReclineNormal = "\u{e637}" + case airlineStops = "\u{e7d0}" + case airplanemodeActive = "\u{e53d}" + case airplanemodeInactive = "\u{e194}" + case airplaneTicket = "\u{efd9}" + case airplay = "\u{e055}" + case airportShuttle = "\u{eb3c}" + case airPurifier = "\u{e97e}" + case airPurifierGen = "\u{e829}" + case airware = "\u{f154}" + case alarmOff = "\u{e857}" + case alarmOn = "\u{e858}" + case alarmPause = "\u{f35b}" + case alarmSmartWake = "\u{f6b0}" + case album = "\u{e019}" + case alignCenter = "\u{e356}" + case alignEnd = "\u{f797}" + case alignFlexCenter = "\u{f796}" + case alignFlexEnd = "\u{f795}" + case alignFlexStart = "\u{f794}" + case alignHorizontalCenter = "\u{e00f}" + case alignHorizontalLeft = "\u{e00d}" + case alignHorizontalRight = "\u{e010}" + case alignItemsStretch = "\u{f793}" + case alignJustifyCenter = "\u{f792}" + case alignJustifyFlexEnd = "\u{f791}" + case alignJustifyFlexStart = "\u{f790}" + case alignJustifySpaceAround = "\u{f78f}" + case alignJustifySpaceBetween = "\u{f78e}" + case alignJustifySpaceEven = "\u{f78d}" + case alignJustifyStretch = "\u{f78c}" + case alignSelfStretch = "\u{f78b}" + case alignSpaceAround = "\u{f78a}" + case alignSpaceBetween = "\u{f789}" + case alignSpaceEven = "\u{f788}" + case alignStart = "\u{f787}" + case alignStretch = "\u{f786}" + case alignVerticalBottom = "\u{e015}" + case alignVerticalCenter = "\u{e011}" + case alignVerticalTop = "\u{e00c}" + case allergies = "\u{e094}" + case allergy = "\u{e64e}" + case allInbox = "\u{e97f}" + case allInclusive = "\u{eb3d}" + case allMatch = "\u{e093}" + case allOut = "\u{e90b}" + case alternateEmail = "\u{e0e6}" + case altitude = "\u{f873}" + case altRoute = "\u{f184}" + case ambientScreen = "\u{f6c4}" + case ambulance = "\u{f803}" + case amend = "\u{f802}" + case ampStories = "\u{ea13}" + case analytics = "\u{ef3e}" + case anchor = "\u{f1cd}" + case android = "\u{e859}" + case androidCell4Bar = "\u{ef06}" + case androidCell4BarAlert = "\u{ef09}" + case androidCell4BarOff = "\u{ef08}" + case androidCell4BarPlus = "\u{ef07}" + case androidCell5Bar = "\u{ef02}" + case androidCell5BarAlert = "\u{ef05}" + case androidCell5BarOff = "\u{ef04}" + case androidCell5BarPlus = "\u{ef03}" + case androidCellDual4Bar = "\u{ef0d}" + case androidCellDual4BarAlert = "\u{ef0f}" + case androidCellDual4BarPlus = "\u{ef0e}" + case androidCellDual5Bar = "\u{ef0a}" + case androidCellDual5BarAlert = "\u{ef0c}" + case androidCellDual5BarPlus = "\u{ef0b}" + case androidWifi3Bar = "\u{ef16}" + case androidWifi3BarAlert = "\u{ef1b}" + case androidWifi3BarLock = "\u{ef1a}" + case androidWifi3BarOff = "\u{ef19}" + case androidWifi3BarPlus = "\u{ef18}" + case androidWifi3BarQuestion = "\u{ef17}" + case androidWifi4Bar = "\u{ef10}" + case androidWifi4BarAlert = "\u{ef15}" + case androidWifi4BarLock = "\u{ef14}" + case androidWifi4BarOff = "\u{ef13}" + case androidWifi4BarPlus = "\u{ef12}" + case androidWifi4BarQuestion = "\u{ef11}" + case animatedImages = "\u{f49a}" + case animation = "\u{e71c}" + case announcement = "\u{e87f}" + case aod = "\u{f2e6}" + case aodTablet = "\u{f89f}" + case aodWatch = "\u{f6ac}" + case apartment = "\u{ea40}" + case api = "\u{f1b7}" + case apkDocument = "\u{f88e}" + case apkInstall = "\u{f88f}" + case apparel = "\u{ef7b}" + case appBadging = "\u{f72f}" + case appBlocking = "\u{f2e5}" + case appPromo = "\u{f2cd}" + case appRegistration = "\u{ef40}" + case approval = "\u{e982}" + case approvalDelegation = "\u{f84a}" + case approvalDelegationOff = "\u{f2c5}" + case apps = "\u{e5c3}" + case appSettingsAlt = "\u{f2d9}" + case appShortcut = "\u{f2df}" + case appsOutage = "\u{e7cc}" + case aq = "\u{f55a}" + case aqIndoor = "\u{f55b}" + case architecture = "\u{ea3b}" + case archive = "\u{e149}" + case areaChart = "\u{e770}" + case armingCountdown = "\u{e78a}" + case arOnYou = "\u{ef7c}" + case arrowAndEdge = "\u{f5d7}" + case arrowBack = "\u{e5c4}" + case arrowBack2 = "\u{f43a}" + case arrowBackIos = "\u{e5e0}" + case arrowBackIosNew = "\u{e2ea}" + case arrowCircleDown = "\u{f181}" + case arrowCircleLeft = "\u{eaa7}" + case arrowCircleRight = "\u{eaaa}" + case arrowCircleUp = "\u{f182}" + case arrowCoolDown = "\u{f4b6}" + case arrowDownward = "\u{e5db}" + case arrowDownwardAlt = "\u{e984}" + case arrowDropDown = "\u{e5c5}" + case arrowDropDownCircle = "\u{e5c6}" + case arrowDropUp = "\u{e5c7}" + case arrowForward = "\u{e5c8}" + case arrowForwardIos = "\u{e5e1}" + case arrowInsert = "\u{f837}" + case arrowLeft = "\u{e5de}" + case arrowLeftAlt = "\u{ef7d}" + case arrowMenuClose = "\u{f3d3}" + case arrowMenuOpen = "\u{f3d2}" + case arrowOrEdge = "\u{f5d6}" + case arrowOutward = "\u{f8ce}" + case arrowRange = "\u{f69b}" + case arrowRight = "\u{e5df}" + case arrowRightAlt = "\u{e941}" + case arrowSelectorTool = "\u{f82f}" + case arrowShapeUp = "\u{eef6}" + case arrowShapeUpStack = "\u{eef7}" + case arrowShapeUpStack2 = "\u{eef8}" + case arrowsInput = "\u{f394}" + case arrowsMoreDown = "\u{f8ab}" + case arrowsMoreUp = "\u{f8ac}" + case arrowsOutput = "\u{f393}" + case arrowsOutward = "\u{f72c}" + case arrowSplit = "\u{ea04}" + case arrowTopLeft = "\u{f72e}" + case arrowTopRight = "\u{f72d}" + case arrowUploadProgress = "\u{f3f4}" + case arrowUploadReady = "\u{f3f5}" + case arrowUpward = "\u{e5d8}" + case arrowUpwardAlt = "\u{e986}" + case arrowWarmUp = "\u{f4b5}" + case arStickers = "\u{e983}" + case article = "\u{ef42}" + case articlePerson = "\u{f368}" + case articleShortcut = "\u{f587}" + case artist = "\u{e01a}" + case artTrack = "\u{e060}" + case aspectRatio = "\u{e85b}" + case assessment = "\u{f0cc}" + case assignment = "\u{e85d}" + case assignmentAdd = "\u{f848}" + case assignmentGlobe = "\u{eeec}" + case assignmentInd = "\u{e85e}" + case assignmentLate = "\u{e85f}" + case assignmentReturn = "\u{e860}" + case assignmentReturned = "\u{e861}" + case assignmentTurnedIn = "\u{e862}" + case assistant = "\u{e39f}" + case assistantDevice = "\u{e987}" + case assistantDirection = "\u{e988}" + case assistantNavigation = "\u{e989}" + case assistantOnHub = "\u{f6c1}" + case assistantPhoto = "\u{f0c6}" + case assistWalker = "\u{f8d5}" + case assuredWorkload = "\u{eb6f}" + case asterisk = "\u{f525}" + case astrophotographyAuto = "\u{f1d9}" + case astrophotographyOff = "\u{f1da}" + case atm = "\u{e573}" + case atr = "\u{ebc7}" + case attachEmail = "\u{ea5e}" + case attachFile = "\u{e226}" + case attachFileAdd = "\u{f841}" + case attachFileOff = "\u{f4d9}" + case attachment = "\u{e2bc}" + case attachMoney = "\u{e227}" + case attractions = "\u{ea52}" + case attribution = "\u{efdb}" + case audioDescription = "\u{f58c}" + case audioFile = "\u{eb82}" + case audiotrack = "\u{e405}" + case audioVideoReceiver = "\u{f5d3}" + case autoActivityZone = "\u{f8ad}" + case autoAwesome = "\u{e65f}" + case autoAwesomeMosaic = "\u{e660}" + case autoAwesomeMotion = "\u{e661}" + case autoDelete = "\u{ea4c}" + case autoDetectVoice = "\u{f83e}" + case autoDrawSolid = "\u{e98a}" + case autoFix = "\u{e663}" + case autoFixNormal = "\u{e664}" + case autoFixOff = "\u{e665}" + case autofpsSelect = "\u{efdc}" + case autoGraph = "\u{e4fb}" + case autoLabel = "\u{f6be}" + case automation = "\u{f421}" + case autoMeetingRoom = "\u{f6bf}" + case autoMode = "\u{ec20}" + case autopause = "\u{f6b6}" + case autopay = "\u{f84b}" + case autoplay = "\u{f6b5}" + case autoReadPause = "\u{f219}" + case autoReadPlay = "\u{f216}" + case autorenew = "\u{e863}" + case autoSchedule = "\u{e214}" + case autostop = "\u{f682}" + case autoStories = "\u{e666}" + case autoStoriesOff = "\u{f267}" + case autoTimer = "\u{ef7f}" + case autoTowing = "\u{e71e}" + case autoTransmission = "\u{f53f}" + case autoVideocam = "\u{f6c0}" + case av1 = "\u{f4b0}" + case avc = "\u{f4af}" + case avgPace = "\u{f6bb}" + case avgTime = "\u{f813}" + case avTimer = "\u{e01b}" + case awardMeal = "\u{f241}" + case awardStar = "\u{f612}" + case azm = "\u{f6ec}" + case babyChangingStation = "\u{f19b}" + case backgroundDotLarge = "\u{f79e}" + case backgroundDotSmall = "\u{f514}" + case backgroundGridSmall = "\u{f79d}" + case backgroundReplace = "\u{f20a}" + case backHand = "\u{e764}" + case backlightHigh = "\u{f7ed}" + case backlightHighOff = "\u{f4ef}" + case backlightLow = "\u{f7ec}" + case backpack = "\u{f19c}" + case backspace = "\u{e14a}" + case backToTab = "\u{f72b}" + case backup = "\u{e864}" + case backupTable = "\u{ef43}" + case badge = "\u{ea67}" + case badgeCriticalBattery = "\u{f156}" + case badminton = "\u{f2a8}" + case bakeryDining = "\u{ea53}" + case balance = "\u{eaf6}" + case balcony = "\u{e58f}" + case ballot = "\u{e172}" + case barChart = "\u{e26b}" + case barChart4Bars = "\u{f681}" + case barChartOff = "\u{f411}" + case barcode = "\u{e70b}" + case barcodeReader = "\u{f85c}" + case barcodeScanner = "\u{e70c}" + case barefoot = "\u{f871}" + case batchPrediction = "\u{f0f5}" + case bathBedrock = "\u{f286}" + case bathOutdoor = "\u{f6fb}" + case bathPrivate = "\u{f6fa}" + case bathPublicLarge = "\u{f6f9}" + case bathroom = "\u{efdd}" + case bathSoak = "\u{f2a0}" + case bathtub = "\u{ea41}" + case battery0Bar = "\u{ebdc}" + case battery1Bar = "\u{f09c}" + case battery2Bar = "\u{f09d}" + case battery3Bar = "\u{f09e}" + case battery4Bar = "\u{f09f}" + case battery5Bar = "\u{f0a0}" + case battery6Bar = "\u{f0a1}" + case batteryAlert = "\u{e19c}" + case batteryAndroid0 = "\u{f30d}" + case batteryAndroid1 = "\u{f30c}" + case batteryAndroid2 = "\u{f30b}" + case batteryAndroid3 = "\u{f30a}" + case batteryAndroid4 = "\u{f309}" + case batteryAndroid5 = "\u{f308}" + case batteryAndroid6 = "\u{f307}" + case batteryAndroidAlert = "\u{f306}" + case batteryAndroidBolt = "\u{f305}" + case batteryAndroidFrame1 = "\u{f257}" + case batteryAndroidFrame2 = "\u{f256}" + case batteryAndroidFrame3 = "\u{f255}" + case batteryAndroidFrame4 = "\u{f254}" + case batteryAndroidFrame5 = "\u{f253}" + case batteryAndroidFrame6 = "\u{f252}" + case batteryAndroidFrameAlert = "\u{f251}" + case batteryAndroidFrameBolt = "\u{f250}" + case batteryAndroidFrameFull = "\u{f24f}" + case batteryAndroidFramePlus = "\u{f24e}" + case batteryAndroidFrameQuestion = "\u{f24d}" + case batteryAndroidFrameShare = "\u{f24c}" + case batteryAndroidFrameShield = "\u{f24b}" + case batteryAndroidFull = "\u{f304}" + case batteryAndroidPlus = "\u{f303}" + case batteryAndroidQuestion = "\u{f302}" + case batteryAndroidShare = "\u{f301}" + case batteryAndroidShield = "\u{f300}" + case batteryChange = "\u{f7eb}" + case batteryCharging20 = "\u{f0a2}" + case batteryCharging30 = "\u{f0a3}" + case batteryCharging50 = "\u{f0a4}" + case batteryCharging60 = "\u{f0a5}" + case batteryCharging80 = "\u{f0a6}" + case batteryCharging90 = "\u{f0a7}" + case batteryChargingFull = "\u{e1a3}" + case batteryError = "\u{f7ea}" + case batteryFull = "\u{e1a5}" + case batteryFullAlt = "\u{f13b}" + case batteryHoriz000 = "\u{f8ae}" + case batteryHoriz050 = "\u{f8af}" + case batteryHoriz075 = "\u{f8b0}" + case batteryLow = "\u{f155}" + case batteryPlus = "\u{f7e9}" + case batteryProfile = "\u{e206}" + case batterySaver = "\u{efde}" + case batteryShare = "\u{f67e}" + case batteryStatusGood = "\u{f67d}" + case batteryUnknown = "\u{e1a6}" + case batteryVert005 = "\u{f8b1}" + case batteryVert020 = "\u{f8b2}" + case batteryVert050 = "\u{f8b3}" + case beachAccess = "\u{eb3e}" + case bed = "\u{efdf}" + case bedroomBaby = "\u{efe0}" + case bedroomChild = "\u{efe1}" + case bedroomParent = "\u{efe2}" + case bedtime = "\u{f159}" + case bedtimeOff = "\u{eb76}" + case beenhere = "\u{e52d}" + case beerMeal = "\u{f285}" + case bento = "\u{f1f4}" + case bia = "\u{f6eb}" + case bidLandscape = "\u{e678}" + case bidLandscapeDisabled = "\u{ef81}" + case bigtopUpdates = "\u{e669}" + case bikeDock = "\u{f47b}" + case bikeLane = "\u{f47a}" + case bikeScooter = "\u{ef45}" + case biotech = "\u{ea3a}" + case blanket = "\u{e828}" + case blender = "\u{efe3}" + case blind = "\u{f8d6}" + case blinds = "\u{e286}" + case blindsClosed = "\u{ec1f}" + case block = "\u{f08c}" + case bloodPressure = "\u{e097}" + case bloodtype = "\u{efe4}" + case bluetooth = "\u{e1a7}" + case bluetoothAudio = "\u{e60f}" + case bluetoothConnected = "\u{e1a8}" + case bluetoothDisabled = "\u{e1a9}" + case bluetoothDrive = "\u{efe5}" + case blurCircular = "\u{e3a2}" + case blurLinear = "\u{e3a3}" + case blurMedium = "\u{e84c}" + case blurOff = "\u{e3a4}" + case blurOn = "\u{e3a5}" + case blurShort = "\u{e8cf}" + case boatBus = "\u{f36d}" + case boatRailway = "\u{f36c}" + case bodyFat = "\u{e098}" + case bodySystem = "\u{e099}" + case bolt = "\u{ea0b}" + case bomb = "\u{f568}" + case book = "\u{e86e}" + case book2 = "\u{f53e}" + case book3 = "\u{f53d}" + case book4 = "\u{f53c}" + case book5 = "\u{f53b}" + case book6 = "\u{f3df}" + case bookmark = "\u{e8e7}" + case bookmarkAdd = "\u{e598}" + case bookmarkAdded = "\u{e599}" + case bookmarkBag = "\u{f410}" + case bookmarkCheck = "\u{f457}" + case bookmarkFlag = "\u{f456}" + case bookmarkHeart = "\u{f455}" + case bookmarkManager = "\u{f7b1}" + case bookmarkRemove = "\u{e59a}" + case bookmarks = "\u{e98b}" + case bookmarkStar = "\u{f454}" + case bookOnline = "\u{f2e4}" + case bookRibbon = "\u{f3e7}" + case booksMoviesAndMusic = "\u{ef82}" + case borderAll = "\u{e228}" + case borderBottom = "\u{e229}" + case borderClear = "\u{e22a}" + case borderColor = "\u{e22b}" + case borderHorizontal = "\u{e22c}" + case borderInner = "\u{e22d}" + case borderLeft = "\u{e22e}" + case borderOuter = "\u{e22f}" + case borderRight = "\u{e230}" + case borderStyle = "\u{e231}" + case borderTop = "\u{e232}" + case borderVertical = "\u{e233}" + case borg = "\u{f40d}" + case bottomAppBar = "\u{e730}" + case bottomDrawer = "\u{e72d}" + case bottomNavigation = "\u{e98c}" + case bottomPanelClose = "\u{f72a}" + case bottomPanelOpen = "\u{f729}" + case bottomRightClick = "\u{f684}" + case bottomSheets = "\u{e98d}" + case box = "\u{f5a4}" + case boxAdd = "\u{f5a5}" + case boxEdit = "\u{f5a6}" + case boy = "\u{eb67}" + case brandAwareness = "\u{e98e}" + case brandFamily = "\u{f4f1}" + case brandingWatermark = "\u{e06b}" + case breakfastDining = "\u{ea54}" + case breakingNews = "\u{ea08}" + case breakingNewsAlt1 = "\u{f0ba}" + case breastfeeding = "\u{f856}" + case brick = "\u{f388}" + case briefcaseMeal = "\u{f246}" + case brightness1 = "\u{e3fa}" + case brightness2 = "\u{f036}" + case brightness3 = "\u{e3a8}" + case brightness4 = "\u{e3a9}" + case brightness5 = "\u{e3aa}" + case brightness6 = "\u{e3ab}" + case brightness7 = "\u{e3ac}" + case brightnessAlert = "\u{f5cf}" + case brightnessAuto = "\u{e1ab}" + case brightnessEmpty = "\u{f7e8}" + case brightnessHigh = "\u{e1ac}" + case brightnessLow = "\u{e1ad}" + case brightnessMedium = "\u{e1ae}" + case bringYourOwnIp = "\u{e016}" + case broadcastOnHome = "\u{f8f8}" + case broadcastOnPersonal = "\u{f8f9}" + case brokenImage = "\u{e3ad}" + case browse = "\u{eb13}" + case browseActivity = "\u{f8a5}" + case browseGallery = "\u{ebd1}" + case browserNotSupported = "\u{ef47}" + case browserUpdated = "\u{e7cf}" + case brunchDining = "\u{ea73}" + case brush = "\u{e3ae}" + case bubble = "\u{ef83}" + case bubbleChart = "\u{e6dd}" + case bubbles = "\u{f64e}" + case bucketCheck = "\u{ef2a}" + case bugReport = "\u{e868}" + case build = "\u{f8cd}" + case buildCircle = "\u{ef48}" + case bungalow = "\u{e591}" + case burstMode = "\u{e43c}" + case busAlert = "\u{e98f}" + case business = "\u{e7ee}" + case businessCenter = "\u{eb3f}" + case businessChip = "\u{f84c}" + case businessMessages = "\u{ef84}" + case busRailway = "\u{f36b}" + case buttonsAlt = "\u{e72f}" + case cabin = "\u{e589}" + case cable = "\u{efe6}" + case cableCar = "\u{f479}" + case cached = "\u{e86a}" + case cadence = "\u{f4b4}" + case cake = "\u{e7e9}" + case cakeAdd = "\u{f85b}" + case calculate = "\u{ea5f}" + case calendarAddOn = "\u{ef85}" + case calendarAppsScript = "\u{f0bb}" + case calendarCheck = "\u{f243}" + case calendarClock = "\u{f540}" + case calendarLock = "\u{f242}" + case calendarMeal = "\u{f296}" + case calendarMeal2 = "\u{f240}" + case calendarMonth = "\u{ebcc}" + case calendarToday = "\u{e935}" + case calendarViewDay = "\u{e936}" + case calendarViewMonth = "\u{efe7}" + case calendarViewWeek = "\u{efe8}" + case call = "\u{f0d4}" + case callEnd = "\u{f0bc}" + case callLog = "\u{e08e}" + case callMade = "\u{e0b2}" + case callMerge = "\u{e0b3}" + case callMissed = "\u{e0b4}" + case callMissedOutgoing = "\u{e0e4}" + case callQuality = "\u{f652}" + case callReceived = "\u{e0b5}" + case callSplit = "\u{e0b6}" + case callToAction = "\u{e06c}" + case camera = "\u{e3af}" + case cameraAlt = "\u{e412}" + case cameraEnhance = "\u{e8fc}" + case cameraFront = "\u{f2c9}" + case cameraIndoor = "\u{efe9}" + case cameraOutdoor = "\u{efea}" + case cameraRear = "\u{f2c8}" + case cameraRoll = "\u{e3b3}" + case cameraswitch = "\u{efeb}" + case cameraVideo = "\u{f7a6}" + case campaign = "\u{ef49}" + case camping = "\u{f8a2}" + case cancel = "\u{e888}" + case cancelPresentation = "\u{e0e9}" + case cancelScheduleSend = "\u{ea39}" + case candle = "\u{f588}" + case candlestickChart = "\u{ead4}" + case cannabis = "\u{f2f3}" + case captivePortal = "\u{f728}" + case capture = "\u{f727}" + case carCrash = "\u{ebf2}" + case carDefrostLeft = "\u{f344}" + case carDefrostLowLeft = "\u{f343}" + case carDefrostLowRight = "\u{f342}" + case carDefrostMidLeft = "\u{f278}" + case carDefrostMidLowLeft = "\u{f341}" + case carDefrostMidLowRight = "\u{f277}" + case carDefrostMidRight = "\u{f340}" + case carDefrostRight = "\u{f33f}" + case cardGiftcard = "\u{e8f6}" + case cardioLoad = "\u{f4b9}" + case cardiology = "\u{e09c}" + case cardMembership = "\u{e8f7}" + case cards = "\u{e991}" + case cardsStar = "\u{f375}" + case cardTravel = "\u{e8f8}" + case carFanLowLeft = "\u{f33e}" + case carFanLowMidLeft = "\u{f33d}" + case carFanLowRight = "\u{f33c}" + case carFanMidLeft = "\u{f33b}" + case carFanMidLowRight = "\u{f33a}" + case carFanMidRight = "\u{f339}" + case carFanRecirculate = "\u{f338}" + case carGear = "\u{f337}" + case carLock = "\u{f336}" + case carMirrorHeat = "\u{f335}" + case carpenter = "\u{f1f8}" + case carRental = "\u{ea55}" + case carRepair = "\u{ea56}" + case carryOnBag = "\u{eb08}" + case carryOnBagChecked = "\u{eb0b}" + case carryOnBagInactive = "\u{eb0a}" + case carryOnBagQuestion = "\u{eb09}" + case carTag = "\u{f4e3}" + case cases = "\u{e992}" + case casino = "\u{eb40}" + case cast = "\u{e307}" + case castConnected = "\u{e308}" + case castForEducation = "\u{efec}" + case castle = "\u{eab1}" + case castPause = "\u{f5f0}" + case castWarning = "\u{f5ef}" + case category = "\u{e574}" + case categorySearch = "\u{f437}" + case celebration = "\u{ea65}" + case cellMerge = "\u{f82e}" + case cellTower = "\u{ebba}" + case cellWifi = "\u{e0ec}" + case centerFocusStrong = "\u{e3b4}" + case centerFocusWeak = "\u{e3b5}" + case chair = "\u{efed}" + case chairAlt = "\u{efee}" + case chairCounter = "\u{f29f}" + case chairFireplace = "\u{f29e}" + case chairUmbrella = "\u{f29d}" + case chalet = "\u{e585}" + case changeCircle = "\u{e2e7}" + case changeHistory = "\u{e86b}" + case charger = "\u{e2ae}" + case chargingStation = "\u{f2e3}" + case chartData = "\u{e473}" + case chat = "\u{e0c9}" + case chatAddOn = "\u{f0f3}" + case chatAppsScript = "\u{f0bd}" + case chatBubble = "\u{e0cb}" + case chatDashed = "\u{eeed}" + case chatError = "\u{f7ac}" + case chatInfo = "\u{f52b}" + case chatPasteGo = "\u{f6bd}" + case chatPasteGo2 = "\u{f3cb}" + case check = "\u{e5ca}" + case checkbook = "\u{e70d}" + case checkBox = "\u{e834}" + case checkBoxOutlineBlank = "\u{e835}" + case checkCircle = "\u{f0be}" + case checkCircleUnread = "\u{f27e}" + case checkedBag = "\u{eb0c}" + case checkedBagQuestion = "\u{eb0d}" + case checkIndeterminateSmall = "\u{f88a}" + case checkInOut = "\u{f6f6}" + case checklist = "\u{e6b1}" + case checklistRtl = "\u{e6b3}" + case checkroom = "\u{f19e}" + case checkSmall = "\u{f88b}" + case cheer = "\u{f6a8}" + case chefHat = "\u{f357}" + case chess = "\u{f5e7}" + case chessBishop = "\u{f261}" + case chessBishop2 = "\u{f262}" + case chessKing = "\u{f25f}" + case chessKing2 = "\u{f260}" + case chessKnight = "\u{f25e}" + case chessPawn = "\u{f3b6}" + case chessPawn2 = "\u{f25d}" + case chessQueen = "\u{f25c}" + case chessRook = "\u{f25b}" + case chevronBackward = "\u{f46b}" + case chevronForward = "\u{f46a}" + case chevronLeft = "\u{e5cb}" + case chevronRight = "\u{e5cc}" + case childCare = "\u{eb41}" + case childFriendly = "\u{eb42}" + case childHat = "\u{ef30}" + case chipExtraction = "\u{f821}" + case chips = "\u{e993}" + case chromecast2 = "\u{f17b}" + case chromecastDevice = "\u{e83c}" + case chromeReaderMode = "\u{e86d}" + case chronic = "\u{ebb2}" + case church = "\u{eaae}" + case cinematicBlur = "\u{f853}" + case circle = "\u{ef4a}" + case circleNotifications = "\u{e994}" + case circles = "\u{e7ea}" + case circlesExt = "\u{e7ec}" + case clarify = "\u{f0bf}" + case cleanHands = "\u{f21f}" + case cleaning = "\u{e995}" + case cleaningBucket = "\u{f8b4}" + case cleaningServices = "\u{f0ff}" + case clear = "\u{e5cd}" + case clearAll = "\u{e0b8}" + case clearDay = "\u{f157}" + case climateMiniSplit = "\u{f8b5}" + case clinicalNotes = "\u{e09e}" + case clockArrowDown = "\u{f382}" + case clockArrowUp = "\u{f381}" + case clockLoader10 = "\u{f726}" + case clockLoader20 = "\u{f725}" + case clockLoader40 = "\u{f724}" + case clockLoader60 = "\u{f723}" + case clockLoader80 = "\u{f722}" + case clockLoader90 = "\u{f721}" + case closedCaption = "\u{e996}" + case closedCaptionAdd = "\u{f4ae}" + case closedCaptionDisabled = "\u{f1dc}" + case closeFullscreen = "\u{f1cf}" + case closeSmall = "\u{f508}" + case cloud = "\u{f15c}" + case cloudAlert = "\u{f3cc}" + case cloudCircle = "\u{e2be}" + case cloudDone = "\u{e2bf}" + case cloudDownload = "\u{e2c0}" + case cloudLock = "\u{f386}" + case cloudOff = "\u{e2c1}" + case cloudSync = "\u{eb5a}" + case cloudUpload = "\u{e2c3}" + case cloudySnowing = "\u{e810}" + case co2 = "\u{e7b0}" + case code = "\u{e86f}" + case codeBlocks = "\u{f84d}" + case codeOff = "\u{e4f3}" + case coffee = "\u{efef}" + case coffeeMaker = "\u{eff0}" + case cognition = "\u{e09f}" + case cognition2 = "\u{f3b5}" + case collapseAll = "\u{e944}" + case collapseContent = "\u{f507}" + case collections = "\u{e3d3}" + case collectionsBookmark = "\u{e431}" + case colorize = "\u{e3b8}" + case colorLens = "\u{e40a}" + case colors = "\u{e997}" + case combineColumns = "\u{f420}" + case comedyMask = "\u{f4d6}" + case comicBubble = "\u{f5dd}" + case comment = "\u{e24c}" + case commentBank = "\u{ea4e}" + case commentsDisabled = "\u{e7a2}" + case commit = "\u{eaf5}" + case communication = "\u{e27c}" + case communities = "\u{eb16}" + case commute = "\u{e940}" + case compare = "\u{e3b9}" + case compareArrows = "\u{e915}" + case compassCalibration = "\u{e57c}" + case componentExchange = "\u{f1e7}" + case compost = "\u{e761}" + case compress = "\u{e94d}" + case computer = "\u{e31e}" + case computerArrowUp = "\u{f2f7}" + case computerCancel = "\u{f2f6}" + case concierge = "\u{f561}" + case conditions = "\u{e0a0}" + case confirmationNumber = "\u{e638}" + case congenital = "\u{e0a1}" + case connectedTv = "\u{e998}" + case connectingAirports = "\u{e7c9}" + case connectWithoutContact = "\u{f223}" + case construction = "\u{ea3c}" + case contactEmergency = "\u{f8d1}" + case contactless = "\u{ea71}" + case contactlessOff = "\u{f858}" + case contactMail = "\u{e0d0}" + case contactPage = "\u{f22e}" + case contactPhone = "\u{f0c0}" + case contacts = "\u{e0ba}" + case contactsProduct = "\u{e999}" + case contactSupport = "\u{e94c}" + case contentCopy = "\u{e14d}" + case contentCut = "\u{e14e}" + case contentPaste = "\u{e14f}" + case contentPasteGo = "\u{ea8e}" + case contentPasteOff = "\u{e4f8}" + case contentPasteSearch = "\u{ea9b}" + case contextualToken = "\u{f486}" + case contextualTokenAdd = "\u{f485}" + case contract = "\u{f5a0}" + case contractDelete = "\u{f5a2}" + case contractEdit = "\u{f5a1}" + case contrast = "\u{eb37}" + case contrastCircle = "\u{f49f}" + case contrastRtlOff = "\u{ec72}" + case contrastSquare = "\u{f4a0}" + case controlCamera = "\u{e074}" + case controllerGen = "\u{e83d}" + case controlPointDuplicate = "\u{e3bb}" + case conversation = "\u{ef2f}" + case conversionPath = "\u{f0c1}" + case conversionPathOff = "\u{f7b4}" + case convertToText = "\u{f41f}" + case conveyorBelt = "\u{f867}" + case cookie = "\u{eaac}" + case cookieOff = "\u{f79a}" + case cooking = "\u{e2b6}" + case coolToDry = "\u{e276}" + case coPresent = "\u{eaf0}" + case copyAll = "\u{e2ec}" + case copyright = "\u{e90c}" + case coronavirus = "\u{f221}" + case corporateFare = "\u{f1d0}" + case cottage = "\u{e587}" + case counter0 = "\u{f785}" + case counter1 = "\u{f784}" + case counter2 = "\u{f783}" + case counter3 = "\u{f782}" + case counter4 = "\u{f781}" + case counter5 = "\u{f780}" + case counter6 = "\u{f77f}" + case counter7 = "\u{f77e}" + case counter8 = "\u{f77d}" + case counter9 = "\u{f77c}" + case countertops = "\u{f1f7}" + case create = "\u{f097}" + case createNewFolder = "\u{e2cc}" + case creditCard = "\u{e8a1}" + case creditCardClock = "\u{f438}" + case creditCardGear = "\u{f52d}" + case creditCardHeart = "\u{f52c}" + case creditCardOff = "\u{e4f4}" + case creditScore = "\u{eff1}" + case crib = "\u{e588}" + case crisisAlert = "\u{ebe9}" + case crop = "\u{e3be}" + case crop169 = "\u{e3bc}" + case crop32 = "\u{e3bd}" + case crop54 = "\u{e3bf}" + case crop75 = "\u{e3c0}" + case crop916 = "\u{f549}" + case cropDin = "\u{e3c6}" + case cropFree = "\u{e3c2}" + case cropLandscape = "\u{e3c3}" + case cropOriginal = "\u{e3f4}" + case cropPortrait = "\u{e3c5}" + case cropRotate = "\u{e437}" + case crossword = "\u{f5e5}" + case crowdsource = "\u{eb18}" + case crown = "\u{ecb3}" + case crueltyFree = "\u{e799}" + case css = "\u{eb93}" + case csv = "\u{e6cf}" + case currencyBitcoin = "\u{ebc5}" + case currencyExchange = "\u{eb70}" + case currencyFranc = "\u{eafa}" + case currencyLira = "\u{eaef}" + case currencyPound = "\u{eaf1}" + case currencyRuble = "\u{eaec}" + case currencyRupee = "\u{eaf7}" + case currencyRupeeCircle = "\u{f460}" + case currencyYen = "\u{eafb}" + case currencyYuan = "\u{eaf9}" + case curtains = "\u{ec1e}" + case curtainsClosed = "\u{ec1d}" + case customTypography = "\u{e732}" + case cut = "\u{f08b}" + case cycle = "\u{f854}" + case cyclone = "\u{ebd5}" + case dangerous = "\u{e99a}" + case darkMode = "\u{e51c}" + case dashboard = "\u{e871}" + case dashboard2 = "\u{f3ea}" + case dashboardCustomize = "\u{e99b}" + case dataAlert = "\u{f7f6}" + case dataArray = "\u{ead1}" + case database = "\u{f20e}" + case databaseOff = "\u{f414}" + case databaseSearch = "\u{f38e}" + case databaseUpload = "\u{f3dc}" + case dataCheck = "\u{f7f2}" + case dataExploration = "\u{e76f}" + case dataInfoAlert = "\u{f7f5}" + case dataLossPrevention = "\u{e2dc}" + case dataObject = "\u{ead3}" + case dataSaverOff = "\u{eff2}" + case dataSaverOn = "\u{eff3}" + case dataset = "\u{f8ee}" + case datasetLinked = "\u{f8ef}" + case dataTable = "\u{e99c}" + case dataThresholding = "\u{eb9f}" + case dateRange = "\u{e916}" + case deblur = "\u{eb77}" + case deceased = "\u{e0a5}" + case decimalDecrease = "\u{f82d}" + case decimalIncrease = "\u{f82c}" + case deck = "\u{ea42}" + case dehaze = "\u{e3c7}" + case delete = "\u{e92e}" + case deleteForever = "\u{e92b}" + case deleteHistory = "\u{f518}" + case deleteSweep = "\u{e16c}" + case deliveryDining = "\u{eb28}" + case deliveryTruckBolt = "\u{f3a2}" + case deliveryTruckSpeed = "\u{f3a1}" + case demography = "\u{e489}" + case densityLarge = "\u{eba9}" + case densityMedium = "\u{eb9e}" + case densitySmall = "\u{eba8}" + case dentistry = "\u{e0a6}" + case departureBoard = "\u{e576}" + case deployedCode = "\u{f720}" + case deployedCodeAccount = "\u{f51b}" + case deployedCodeAlert = "\u{f5f2}" + case deployedCodeHistory = "\u{f5f3}" + case deployedCodeUpdate = "\u{f5f4}" + case dermatology = "\u{e0a7}" + case description = "\u{e873}" + case deselect = "\u{ebb6}" + case designServices = "\u{f10a}" + case desk = "\u{f8f4}" + case deskphone = "\u{f7fa}" + case desktopAccessDisabled = "\u{e99d}" + case desktopCloud = "\u{f3db}" + case desktopCloudStack = "\u{f3be}" + case desktopLandscape = "\u{f45e}" + case desktopLandscapeAdd = "\u{f439}" + case desktopMac = "\u{e30b}" + case desktopPortrait = "\u{f45d}" + case desktopWindows = "\u{e30c}" + case destruction = "\u{f585}" + case details = "\u{e3c8}" + case detectionAndZone = "\u{e29f}" + case detector = "\u{e282}" + case detectorAlarm = "\u{e1f7}" + case detectorBattery = "\u{e204}" + case detectorCo = "\u{e2af}" + case detectorOffline = "\u{e223}" + case detectorSmoke = "\u{e285}" + case detectorStatus = "\u{e1e8}" + case developerBoard = "\u{e30d}" + case developerBoardOff = "\u{e4ff}" + case developerGuide = "\u{e99e}" + case developerMode = "\u{f2e2}" + case developerModeTv = "\u{e874}" + case deviceBand = "\u{f2f5}" + case deviceHub = "\u{e335}" + case deviceReset = "\u{e8b3}" + case devices = "\u{e326}" + case devicesFold = "\u{ebde}" + case devicesFold2 = "\u{f406}" + case devicesOff = "\u{f7a5}" + case devicesOther = "\u{e337}" + case devicesWearables = "\u{f6ab}" + case deviceThermostat = "\u{e1ff}" + case deviceUnknown = "\u{f2e1}" + case dewPoint = "\u{f879}" + case diagnosis = "\u{e0a8}" + case diagonalLine = "\u{f41e}" + case dialerSip = "\u{e0bb}" + case dialogs = "\u{e99f}" + case dialpad = "\u{e0bc}" + case diamond = "\u{ead5}" + case diamondShine = "\u{f2b2}" + case dictionary = "\u{f539}" + case difference = "\u{eb7d}" + case digitalOutOfHome = "\u{f1de}" + case digitalWellbeing = "\u{ef86}" + case dineHeart = "\u{f29c}" + case dineIn = "\u{f295}" + case dineLamp = "\u{f29b}" + case dining = "\u{eff4}" + case dinnerDining = "\u{ea57}" + case directions = "\u{e52e}" + case directionsAlt = "\u{f880}" + case directionsAltOff = "\u{f881}" + case directionsBike = "\u{e52f}" + case directionsBoat = "\u{eff5}" + case directionsBus = "\u{eff6}" + case directionsCar = "\u{eff7}" + case directionsOff = "\u{f10f}" + case directionsRailway = "\u{eff8}" + case directionsRailway2 = "\u{f462}" + case directionsRun = "\u{e566}" + case directionsSubway = "\u{effa}" + case directionsWalk = "\u{e536}" + case directorySync = "\u{e394}" + case dirtyLens = "\u{ef4b}" + case disabledByDefault = "\u{f230}" + case disabledVisible = "\u{e76e}" + case discFull = "\u{e610}" + case discoverTune = "\u{e018}" + case dishwasher = "\u{e9a0}" + case dishwasherGen = "\u{e832}" + case displayExternalInput = "\u{f7e7}" + case displaySettings = "\u{eb97}" + case distance = "\u{f6ea}" + case diversity1 = "\u{f8d7}" + case diversity2 = "\u{f8d8}" + case diversity3 = "\u{f8d9}" + case diversity4 = "\u{f857}" + case dns = "\u{e875}" + case dock = "\u{f2e0}" + case dockToBottom = "\u{f7e6}" + case dockToLeft = "\u{f7e5}" + case dockToRight = "\u{f7e4}" + case docs = "\u{ea7d}" + case docsAddOn = "\u{f0c2}" + case docsAppsScript = "\u{f0c3}" + case documentScanner = "\u{e5fa}" + case documentSearch = "\u{f385}" + case doDisturbAlt = "\u{f08d}" + case doDisturbOff = "\u{f08e}" + case doDisturbOn = "\u{f08f}" + case domainAdd = "\u{eb62}" + case domainDisabled = "\u{e0ef}" + case domainVerification = "\u{ef4c}" + case domainVerificationOff = "\u{f7b0}" + case dominoMask = "\u{f5e4}" + case done = "\u{e876}" + case doneAll = "\u{e877}" + case doneOutline = "\u{e92f}" + case doNotDisturbOnTotalSilence = "\u{effb}" + case doNotStep = "\u{f19f}" + case doNotTouch = "\u{f1b0}" + case donutLarge = "\u{e917}" + case donutSmall = "\u{e918}" + case doorBack = "\u{effc}" + case doorbell = "\u{efff}" + case doorbell3p = "\u{e1e7}" + case doorbellChime = "\u{e1f3}" + case doorFront = "\u{effd}" + case doorOpen = "\u{e77c}" + case doorSensor = "\u{e28a}" + case doorSliding = "\u{effe}" + case doubleArrow = "\u{ea50}" + case downhillSkiing = "\u{e509}" + case download = "\u{f090}" + case download2 = "\u{f523}" + case downloadDone = "\u{f091}" + case downloadForOffline = "\u{f000}" + case downloading = "\u{f001}" + case draft = "\u{e66d}" + case draftOrders = "\u{e7b3}" + case drafts = "\u{e151}" + case dragClick = "\u{f71f}" + case dragHandle = "\u{e25d}" + case dragIndicator = "\u{e945}" + case dragPan = "\u{f71e}" + case draw = "\u{e746}" + case drawAbstract = "\u{f7f8}" + case drawCollage = "\u{f7f7}" + case drawingRecognition = "\u{eb00}" + case dresser = "\u{e210}" + case driveExport = "\u{f41d}" + case driveFileMove = "\u{e9a1}" + case driveFileRenameOutline = "\u{e9a2}" + case driveFolderUpload = "\u{e9a3}" + case drone = "\u{f25a}" + case drone2 = "\u{f259}" + case dropdown = "\u{e9a4}" + case dropperEye = "\u{f351}" + case dry = "\u{f1b3}" + case dryCleaning = "\u{ea58}" + case dualScreen = "\u{f6cf}" + case duo = "\u{e9a5}" + case dvr = "\u{e1b2}" + case dynamicFeed = "\u{ea14}" + case dynamicForm = "\u{f1bf}" + case e911Avatar = "\u{f11a}" + case e911Emergency = "\u{f119}" + case earbudCase = "\u{f327}" + case earbudLeft = "\u{f326}" + case earbudRight = "\u{f325}" + case earbuds = "\u{f003}" + case earbuds2 = "\u{f324}" + case earbudsBattery = "\u{f004}" + case earlyOn = "\u{e2ba}" + case earSound = "\u{f356}" + case earthquake = "\u{f64f}" + case east = "\u{f1df}" + case ecg = "\u{f80f}" + case ecgHeart = "\u{f6e9}" + case eco = "\u{ea35}" + case eda = "\u{f6e8}" + case edgesensorHigh = "\u{f2ef}" + case edgesensorLow = "\u{f2ee}" + case editArrowDown = "\u{f380}" + case editArrowUp = "\u{f37f}" + case editAttributes = "\u{e578}" + case editAudio = "\u{f42d}" + case editCalendar = "\u{e742}" + case editDocument = "\u{f88c}" + case editLocation = "\u{e568}" + case editLocationAlt = "\u{e1c5}" + case editNote = "\u{e745}" + case editNotifications = "\u{e525}" + case editOff = "\u{e950}" + case editorChoice = "\u{f528}" + case editRoad = "\u{ef4d}" + case editSquare = "\u{f88d}" + case egg = "\u{eacc}" + case eggAlt = "\u{eac8}" + case eject = "\u{e8fb}" + case elderly = "\u{f21a}" + case elderlyWoman = "\u{eb69}" + case electricalServices = "\u{f102}" + case electricBike = "\u{eb1b}" + case electricBolt = "\u{ec1c}" + case electricCar = "\u{eb1c}" + case electricMeter = "\u{ec1b}" + case electricMoped = "\u{eb1d}" + case electricRickshaw = "\u{eb1e}" + case electricScooter = "\u{eb1f}" + case elevation = "\u{f6e7}" + case elevator = "\u{f1a0}" + case email = "\u{e159}" + case emergency = "\u{e1eb}" + case emergencyHeat = "\u{f15d}" + case emergencyHeat2 = "\u{f4e5}" + case emergencyHome = "\u{e82a}" + case emergencyRecording = "\u{ebf4}" + case emergencyShare = "\u{ebf6}" + case emergencyShareOff = "\u{f59e}" + case eMobiledata = "\u{f002}" + case eMobiledataBadge = "\u{f7e3}" + case emojiEmotions = "\u{ea22}" + case emojiEvents = "\u{ea23}" + case emojiFoodBeverage = "\u{ea1b}" + case emojiLanguage = "\u{f4cd}" + case emojiNature = "\u{ea1c}" + case emojiObjects = "\u{ea24}" + case emojiPeople = "\u{ea1d}" + case emojiSymbols = "\u{ea1e}" + case emojiTransportation = "\u{ea1f}" + case emoticon = "\u{e5f3}" + case emptyDashboard = "\u{f844}" + case enable = "\u{f188}" + case encrypted = "\u{e593}" + case encryptedAdd = "\u{f429}" + case encryptedAddCircle = "\u{f42a}" + case encryptedMinusCircle = "\u{f428}" + case encryptedOff = "\u{f427}" + case endocrinology = "\u{e0a9}" + case energy = "\u{e9a6}" + case energyProgramSaving = "\u{f15f}" + case energyProgramTimeUsed = "\u{f161}" + case energySavingsLeaf = "\u{ec1a}" + case engineering = "\u{ea3d}" + case enhancedEncryption = "\u{e63f}" + case ent = "\u{e0aa}" + case enterprise = "\u{e70e}" + case enterpriseOff = "\u{eb4d}" + case equal = "\u{f77b}" + case equalizer = "\u{e01d}" + case eraserSize1 = "\u{f3fc}" + case eraserSize2 = "\u{f3fb}" + case eraserSize3 = "\u{f3fa}" + case eraserSize4 = "\u{f3f9}" + case eraserSize5 = "\u{f3f8}" + case error = "\u{f8b6}" + case errorMed = "\u{e49b}" + case escalator = "\u{f1a1}" + case escalatorWarning = "\u{f1ac}" + case euro = "\u{ea15}" + case euroSymbol = "\u{e926}" + case evCharger = "\u{e56d}" + case event = "\u{e878}" + case eventAvailable = "\u{e614}" + case eventBusy = "\u{e615}" + case eventList = "\u{f683}" + case eventNote = "\u{e616}" + case eventRepeat = "\u{eb7b}" + case eventSeat = "\u{e903}" + case eventUpcoming = "\u{f238}" + case evMobiledataBadge = "\u{f7e2}" + case evShadow = "\u{ef8f}" + case evShadowAdd = "\u{f580}" + case evShadowMinus = "\u{f57f}" + case exclamation = "\u{f22f}" + case exercise = "\u{f6e6}" + case exitToApp = "\u{e879}" + case expand = "\u{e94f}" + case expandAll = "\u{e946}" + case expandCircleDown = "\u{e7cd}" + case expandCircleRight = "\u{f591}" + case expandCircleUp = "\u{f5d2}" + case expandContent = "\u{f830}" + case expandLess = "\u{e5ce}" + case expandMore = "\u{e5cf}" + case expansionPanels = "\u{ef90}" + case experiment = "\u{e686}" + case explicit = "\u{e01e}" + case explore = "\u{e87a}" + case exploreNearby = "\u{e538}" + case exploreOff = "\u{e9a8}" + case explosion = "\u{f685}" + case exportNotes = "\u{e0ac}" + case exposure = "\u{e3f6}" + case exposureNeg1 = "\u{e3cb}" + case exposureNeg2 = "\u{e3cc}" + case exposurePlus1 = "\u{e800}" + case exposurePlus2 = "\u{e3ce}" + case exposureZero = "\u{e3cf}" + case extensionIcon = "\u{e87b}" + case extensionOff = "\u{e4f5}" + case eyeglasses = "\u{f6ee}" + case eyeglasses2 = "\u{f2c7}" + case eyeglasses2Sound = "\u{f265}" + case eyeTracking = "\u{f4c9}" + case face = "\u{f008}" + case face2 = "\u{f8da}" + case face3 = "\u{f8db}" + case face4 = "\u{f8dc}" + case face5 = "\u{f8dd}" + case face6 = "\u{f8de}" + case faceDown = "\u{f402}" + case faceLeft = "\u{f401}" + case faceNod = "\u{f400}" + case faceRetouchingNatural = "\u{ef4e}" + case faceRetouchingOff = "\u{f007}" + case faceRight = "\u{f3ff}" + case faceShake = "\u{f3fe}" + case faceUp = "\u{f3fd}" + case factCheck = "\u{f0c5}" + case factory = "\u{ebbc}" + case falling = "\u{f60d}" + case familiarFaceAndZone = "\u{e21c}" + case familyGroup = "\u{eef2}" + case familyHistory = "\u{e0ad}" + case familyHome = "\u{eb26}" + case familyLink = "\u{eb19}" + case familyRestroom = "\u{f1a2}" + case familyStar = "\u{f527}" + case fanFocus = "\u{f334}" + case fanIndirect = "\u{f333}" + case farsightDigital = "\u{f559}" + case fastfood = "\u{e57a}" + case fastForward = "\u{e01f}" + case fastRewind = "\u{e020}" + case faucet = "\u{e278}" + case favorite = "\u{e87e}" + case fax = "\u{ead8}" + case featuredPlayList = "\u{e06d}" + case featuredSeasonalAndGifts = "\u{ef91}" + case featuredVideo = "\u{e06e}" + case featureSearch = "\u{e9a9}" + case feed = "\u{f009}" + case female = "\u{e590}" + case femur = "\u{f891}" + case femurAlt = "\u{f892}" + case fence = "\u{f1f6}" + case fertile = "\u{f6e5}" + case festival = "\u{ea68}" + case fiberDvr = "\u{e05d}" + case fiberManualRecord = "\u{e061}" + case fiberNew = "\u{e05e}" + case fiberPin = "\u{e06a}" + case fiberSmartRecord = "\u{e062}" + case fileCopy = "\u{e173}" + case fileCopyOff = "\u{f4d8}" + case fileDownloadOff = "\u{e4fe}" + case fileExport = "\u{f3b2}" + case fileJson = "\u{f3bb}" + case fileMap = "\u{e2c5}" + case fileMapStack = "\u{f3e2}" + case fileOpen = "\u{eaf3}" + case filePng = "\u{f3bc}" + case filePresent = "\u{ea0e}" + case files = "\u{ea85}" + case fileSave = "\u{f17f}" + case fileSaveOff = "\u{e505}" + case fileUpload = "\u{f09b}" + case fileUploadOff = "\u{f886}" + case filter1 = "\u{e3d0}" + case filter2 = "\u{e3d1}" + case filter3 = "\u{e3d2}" + case filter4 = "\u{e3d4}" + case filter5 = "\u{e3d5}" + case filter6 = "\u{e3d6}" + case filter7 = "\u{e3d7}" + case filter8 = "\u{e3d8}" + case filter9 = "\u{e3d9}" + case filter9Plus = "\u{e3da}" + case filterAlt = "\u{ef4f}" + case filterAltOff = "\u{eb32}" + case filterArrowRight = "\u{f3d1}" + case filterBAndW = "\u{e3db}" + case filterCenterFocus = "\u{e3dc}" + case filterDrama = "\u{e3dd}" + case filterFrames = "\u{e3de}" + case filterHdr = "\u{e3df}" + case filterList = "\u{e152}" + case filterListAlt = "\u{e94e}" + case filterListOff = "\u{eb57}" + case filterNone = "\u{e3e0}" + case filterRetrolux = "\u{e3e1}" + case filterTiltShift = "\u{e3e2}" + case filterVintage = "\u{e3e3}" + case finance = "\u{e6bf}" + case financeChip = "\u{f84e}" + case financeMode = "\u{ef92}" + case findInPage = "\u{e880}" + case findReplace = "\u{e881}" + case fingerprint = "\u{e90d}" + case fingerprintOff = "\u{f49d}" + case fireExtinguisher = "\u{f1d8}" + case fireHydrant = "\u{f1a3}" + case fireplace = "\u{ea43}" + case fireTruck = "\u{f8f2}" + case firstPage = "\u{e5dc}" + case fitnessCenter = "\u{eb43}" + case fitnessTracker = "\u{f463}" + case fitnessTrackers = "\u{eef1}" + case fitPage = "\u{f77a}" + case fitPageHeight = "\u{f397}" + case fitPageWidth = "\u{f396}" + case fitScreen = "\u{ea10}" + case fitWidth = "\u{f779}" + case flag2 = "\u{f40f}" + case flagCheck = "\u{f3d8}" + case flagCircle = "\u{eaf8}" + case flaky = "\u{ef50}" + case flare = "\u{e3e4}" + case flashAuto = "\u{e3e5}" + case flashlightOff = "\u{f00a}" + case flashlightOn = "\u{f00b}" + case flashOff = "\u{e3e6}" + case flashOn = "\u{e3e7}" + case flatware = "\u{f00c}" + case flexDirection = "\u{f778}" + case flexNoWrap = "\u{f777}" + case flexWrap = "\u{f776}" + case flight = "\u{e539}" + case flightClass = "\u{e7cb}" + case flightLand = "\u{e904}" + case flightsAndHotels = "\u{e9ab}" + case flightsmode = "\u{ef93}" + case flightTakeoff = "\u{e905}" + case flip = "\u{e3e8}" + case flipCameraAndroid = "\u{ea37}" + case flipCameraIos = "\u{ea38}" + case flipToBack = "\u{e882}" + case flipToFront = "\u{e883}" + case floatLandscape2 = "\u{f45c}" + case floatPortrait2 = "\u{f45b}" + case flood = "\u{ebe6}" + case floor = "\u{f6e4}" + case floorLamp = "\u{e21e}" + case flourescent = "\u{f07d}" + case flowchart = "\u{f38d}" + case flowsheet = "\u{e0ae}" + case fluid = "\u{e483}" + case fluidBalance = "\u{f80d}" + case fluidMed = "\u{f80c}" + case flutter = "\u{f1dd}" + case flutterDash = "\u{e00b}" + case flyover = "\u{f478}" + case fmdBad = "\u{f00e}" + case fmdGood = "\u{f1db}" + case foggy = "\u{e818}" + case foldedHands = "\u{f5ed}" + case folder = "\u{e2c7}" + case folderCheck = "\u{f3d7}" + case folderCheck2 = "\u{f3d6}" + case folderCode = "\u{f3c8}" + case folderCopy = "\u{ebbd}" + case folderData = "\u{f586}" + case folderDelete = "\u{eb34}" + case folderEye = "\u{f3d5}" + case folderInfo = "\u{f395}" + case folderLimited = "\u{f4e4}" + case folderManaged = "\u{f775}" + case folderMatch = "\u{f3d4}" + case folderOff = "\u{eb83}" + case folderOpen = "\u{e2c8}" + case folderShared = "\u{e2c9}" + case folderSpecial = "\u{e617}" + case folderSupervised = "\u{f774}" + case folderZip = "\u{eb2c}" + case followTheSigns = "\u{f222}" + case fontDownload = "\u{e167}" + case fontDownloadOff = "\u{e4f9}" + case foodBank = "\u{f1f2}" + case footBones = "\u{f893}" + case footprint = "\u{f87d}" + case forest = "\u{ea99}" + case forkLeft = "\u{eba0}" + case forklift = "\u{f868}" + case forkRight = "\u{ebac}" + case forkSpoon = "\u{f3e4}" + case formatAlignCenter = "\u{e234}" + case formatAlignJustify = "\u{e235}" + case formatAlignLeft = "\u{e236}" + case formatAlignRight = "\u{e237}" + case formatBold = "\u{e238}" + case formatClear = "\u{e239}" + case formatColorFill = "\u{e23a}" + case formatColorReset = "\u{e23b}" + case formatColorText = "\u{e23c}" + case formatH1 = "\u{f85d}" + case formatH2 = "\u{f85e}" + case formatH3 = "\u{f85f}" + case formatH4 = "\u{f860}" + case formatH5 = "\u{f861}" + case formatH6 = "\u{f862}" + case formatImageLeft = "\u{f863}" + case formatImageRight = "\u{f864}" + case formatIndentDecrease = "\u{e23d}" + case formatIndentIncrease = "\u{e23e}" + case formatInkHighlighter = "\u{f82b}" + case formatItalic = "\u{e23f}" + case formatLetterSpacing = "\u{f773}" + case formatLetterSpacing2 = "\u{f618}" + case formatLetterSpacingStandard = "\u{f617}" + case formatLetterSpacingWide = "\u{f616}" + case formatLetterSpacingWider = "\u{f615}" + case formatLineSpacing = "\u{e240}" + case formatListBulleted = "\u{e241}" + case formatListBulletedAdd = "\u{f849}" + case formatListNumbered = "\u{e242}" + case formatListNumberedRtl = "\u{e267}" + case formatOverline = "\u{eb65}" + case formatPaint = "\u{e243}" + case formatParagraph = "\u{f865}" + case formatQuote = "\u{e244}" + case formatQuoteOff = "\u{f413}" + case formatShapes = "\u{e25e}" + case formatSize = "\u{e245}" + case formatStrikethrough = "\u{e246}" + case formatTextClip = "\u{f82a}" + case formatTextdirectionLToR = "\u{e247}" + case formatTextdirectionRToL = "\u{e248}" + case formatTextdirectionVertical = "\u{f4b8}" + case formatTextOverflow = "\u{f829}" + case formatTextWrap = "\u{f828}" + case formatUnderlined = "\u{e249}" + case formatUnderlinedSquiggle = "\u{f885}" + case formsAddOn = "\u{f0c7}" + case formsAppsScript = "\u{f0c8}" + case fort = "\u{eaad}" + case forum = "\u{e8af}" + case forward = "\u{f57a}" + case forward10 = "\u{e056}" + case forward30 = "\u{e057}" + case forward5 = "\u{e058}" + case forwardCircle = "\u{f6f5}" + case forwardMedia = "\u{f6f4}" + case forwardToInbox = "\u{f187}" + case forYou = "\u{e9ac}" + case foundation = "\u{f200}" + case fragrance = "\u{f345}" + case frameBug = "\u{eeef}" + case frameExclamation = "\u{eeee}" + case frameInspect = "\u{f772}" + case framePerson = "\u{f8a6}" + case framePersonMic = "\u{f4d5}" + case framePersonOff = "\u{f7d1}" + case frameReload = "\u{f771}" + case frameSource = "\u{f770}" + case freeBreakfast = "\u{eb44}" + case freeCancellation = "\u{e748}" + case frontHand = "\u{e769}" + case frontLoader = "\u{f869}" + case fullCoverage = "\u{eb12}" + case fullHd = "\u{f58b}" + case fullscreen = "\u{e5d0}" + case fullscreenExit = "\u{e5d1}" + case fullscreenPortrait = "\u{f45a}" + case fullStackedBarChart = "\u{f212}" + case function = "\u{f866}" + case functions = "\u{e24a}" + case funicular = "\u{f477}" + case galleryThumbnail = "\u{f86f}" + case gamepad = "\u{e30f}" + case garage = "\u{f011}" + case garageCheck = "\u{f28d}" + case garageDoor = "\u{e714}" + case garageHome = "\u{e82d}" + case garageMoney = "\u{f28c}" + case gardenCart = "\u{f8a9}" + case gasMeter = "\u{ec19}" + case gastroenterology = "\u{e0f1}" + case gate = "\u{e277}" + case gavel = "\u{e90e}" + case generalDevice = "\u{e6de}" + case generatingTokens = "\u{e749}" + case genetics = "\u{e0f3}" + case genres = "\u{e6ee}" + case gesture = "\u{e155}" + case gestureSelect = "\u{f657}" + case gif = "\u{e908}" + case gif2 = "\u{f40e}" + case gifBox = "\u{e7a3}" + case girl = "\u{eb68}" + case gite = "\u{e58b}" + case glassCup = "\u{f6e3}" + case globe = "\u{e64c}" + case globeAsia = "\u{f799}" + case globeBook = "\u{f3c9}" + case globeLocationPin = "\u{f35d}" + case globeUk = "\u{f798}" + case glucose = "\u{e4a0}" + case glyphs = "\u{f8a3}" + case gMobiledata = "\u{f010}" + case gMobiledataBadge = "\u{f7e1}" + case golfCourse = "\u{eb45}" + case gondolaLift = "\u{f476}" + case googleHomeDevices = "\u{e715}" + case googleTvRemote = "\u{f5db}" + case googleWifi = "\u{f579}" + case goToLine = "\u{f71d}" + case gppBad = "\u{f012}" + case gppGood = "\u{f013}" + case gppMaybe = "\u{f014}" + case gpsFixed = "\u{e55c}" + case gpsNotFixed = "\u{e1b7}" + case gpsOff = "\u{e1b6}" + case grade = "\u{f09a}" + case gradient = "\u{e3e9}" + case grading = "\u{ea4f}" + case grain = "\u{e3ea}" + case graph1 = "\u{f3a0}" + case graph2 = "\u{f39f}" + case graph3 = "\u{f39e}" + case graph4 = "\u{f39d}" + case graph5 = "\u{f39c}" + case graph6 = "\u{f39b}" + case graph7 = "\u{f346}" + case graphicEq = "\u{e1b8}" + case grass = "\u{f205}" + case grid3x3 = "\u{f015}" + case grid3x3Off = "\u{f67c}" + case grid4x4 = "\u{f016}" + case gridGoldenratio = "\u{f017}" + case gridGuides = "\u{f76f}" + case gridOff = "\u{e3eb}" + case gridOn = "\u{e3ec}" + case gridView = "\u{e9b0}" + case grocery = "\u{ef97}" + case group = "\u{ea21}" + case groupAdd = "\u{e7f0}" + case groupedBarChart = "\u{f211}" + case groupOff = "\u{e747}" + case groupRemove = "\u{e7ad}" + case groups = "\u{f233}" + case groups2 = "\u{f8df}" + case groups3 = "\u{f8e0}" + case groupSearch = "\u{f3ce}" + case groupWork = "\u{e886}" + case gTranslate = "\u{e927}" + case guardian = "\u{f4c1}" + case gynecology = "\u{e0f4}" + case hail = "\u{e9b1}" + case hallway = "\u{e6f8}" + case hanamiDango = "\u{f23f}" + case handBones = "\u{f894}" + case handGesture = "\u{ef9c}" + case handGestureOff = "\u{f3f3}" + case handheldController = "\u{f4c6}" + case handMeal = "\u{f294}" + case handPackage = "\u{f293}" + case handshake = "\u{ebcb}" + case handwritingRecognition = "\u{eb02}" + case handyman = "\u{f10b}" + case hangoutVideo = "\u{e0c1}" + case hangoutVideoOff = "\u{e0c2}" + case hardDisk = "\u{f3da}" + case hardDrive = "\u{f80e}" + case hardDrive2 = "\u{f7a4}" + case hardware = "\u{ea59}" + case hd = "\u{e052}" + case hdrAuto = "\u{f01a}" + case hdrAutoSelect = "\u{f01b}" + case hdrEnhancedSelect = "\u{ef51}" + case hdrOff = "\u{e3ed}" + case hdrOffSelect = "\u{f01c}" + case hdrOn = "\u{e3ee}" + case hdrOnSelect = "\u{f01d}" + case hdrPlus = "\u{f01e}" + case hdrPlusOff = "\u{e3ef}" + case hdrStrong = "\u{e3f1}" + case hdrWeak = "\u{e3f2}" + case headMountedDevice = "\u{f4c5}" + case headphones = "\u{f01f}" + case headphonesBattery = "\u{f020}" + case headsetMic = "\u{e311}" + case headsetOff = "\u{e33a}" + case healing = "\u{e3f3}" + case healthAndBeauty = "\u{ef9d}" + case healthAndSafety = "\u{e1d5}" + case healthCross = "\u{f2c3}" + case healthMetrics = "\u{f6e2}" + case heapSnapshotLarge = "\u{f76e}" + case heapSnapshotMultiple = "\u{f76d}" + case heapSnapshotThumbnail = "\u{f76c}" + case hearing = "\u{e023}" + case hearingAid = "\u{f464}" + case hearingAidDisabled = "\u{f3b0}" + case hearingAidDisabledLeft = "\u{f2ec}" + case hearingAidLeft = "\u{f2ed}" + case hearingDisabled = "\u{f104}" + case heartBroken = "\u{eac2}" + case heartCheck = "\u{f60a}" + case heartMinus = "\u{f883}" + case heartPlus = "\u{f884}" + case heartSmile = "\u{f292}" + case heat = "\u{f537}" + case heatPump = "\u{ec18}" + case heatPumpBalance = "\u{e27e}" + case height = "\u{ea16}" + case helicopter = "\u{f60c}" + case help = "\u{e8fd}" + case helpCenter = "\u{f1c0}" + case helpClinic = "\u{f810}" + case hematology = "\u{e0f6}" + case hevc = "\u{f021}" + case hexagon = "\u{eb39}" + case hide = "\u{ef9e}" + case hideImage = "\u{f022}" + case hideSource = "\u{f023}" + case highChair = "\u{f29a}" + case highDensity = "\u{f79c}" + case highlight = "\u{e25f}" + case highlightAlt = "\u{ef52}" + case highlighterSize1 = "\u{f76b}" + case highlighterSize2 = "\u{f76a}" + case highlighterSize3 = "\u{f769}" + case highlighterSize4 = "\u{f768}" + case highlighterSize5 = "\u{f767}" + case highlightKeyboardFocus = "\u{f510}" + case highlightMouseCursor = "\u{f511}" + case highlightTextCursor = "\u{f512}" + case highQuality = "\u{e024}" + case highRes = "\u{f54b}" + case hiking = "\u{e50a}" + case history2 = "\u{f3e6}" + case historyEdu = "\u{ea3e}" + case historyOff = "\u{f4da}" + case historyToggleOff = "\u{f17d}" + case hive = "\u{eaa6}" + case hls = "\u{eb8a}" + case hlsOff = "\u{eb8c}" + case hMobiledata = "\u{f018}" + case hMobiledataBadge = "\u{f7e0}" + case holidayVillage = "\u{e58a}" + case home = "\u{e9b2}" + case homeAndGarden = "\u{ef9f}" + case homeAppLogo = "\u{e295}" + case homeHealth = "\u{e4b9}" + case homeImprovementAndTools = "\u{efa0}" + case homeIotDevice = "\u{e283}" + case homeMax = "\u{f024}" + case homeMaxDots = "\u{e849}" + case homeMini = "\u{f025}" + case homePin = "\u{f14d}" + case homeRepairService = "\u{f100}" + case homeSpeaker = "\u{f11c}" + case homeStorage = "\u{f86c}" + case homeWork = "\u{f030}" + case horizontalDistribute = "\u{e014}" + case horizontalRule = "\u{f108}" + case horizontalSplit = "\u{e947}" + case host = "\u{f3d9}" + case hotel = "\u{e549}" + case hotelClass = "\u{e743}" + case hotTub = "\u{eb46}" + case hourglass = "\u{ebff}" + case hourglassArrowDown = "\u{f37e}" + case hourglassArrowUp = "\u{f37d}" + case hourglassBottom = "\u{ea5c}" + case hourglassDisabled = "\u{ef53}" + case hourglassEmpty = "\u{e88b}" + case hourglassFull = "\u{e88c}" + case hourglassPause = "\u{f38c}" + case hourglassTop = "\u{ea5b}" + case house = "\u{ea44}" + case houseboat = "\u{e584}" + case householdSupplies = "\u{efa1}" + case houseSiding = "\u{f202}" + case houseWithShield = "\u{e786}" + case hov = "\u{f475}" + case howToReg = "\u{e174}" + case howToVote = "\u{e175}" + case hPlusMobiledata = "\u{f019}" + case hPlusMobiledataBadge = "\u{f7df}" + case hrResting = "\u{f6ba}" + case html = "\u{eb7e}" + case http = "\u{e902}" + case https = "\u{e899}" + case hub = "\u{e9f4}" + case humerus = "\u{f895}" + case humerusAlt = "\u{f896}" + case humidityHigh = "\u{f163}" + case humidityIndoor = "\u{f558}" + case humidityLow = "\u{f164}" + case humidityMid = "\u{f165}" + case humidityPercentage = "\u{f87e}" + case hvac = "\u{f10e}" + case hvacMaxDefrost = "\u{f332}" + case icecream = "\u{ea69}" + case iceSkating = "\u{e50b}" + case icon10k = "\u{e951}" + case icon10mp = "\u{e952}" + case icon11mp = "\u{e953}" + case icon123 = "\u{eb8d}" + case icon12mp = "\u{e954}" + case icon13mp = "\u{e955}" + case icon14mp = "\u{e956}" + case icon15mp = "\u{e957}" + case icon16mp = "\u{e958}" + case icon17mp = "\u{e959}" + case icon18mp = "\u{e95a}" + case icon18UpRating = "\u{f8fd}" + case icon19mp = "\u{e95b}" + case icon1k = "\u{e95c}" + case icon1kPlus = "\u{e95d}" + case icon1xMobiledata = "\u{efcd}" + case icon1xMobiledataBadge = "\u{f7f1}" + case icon20mp = "\u{e95e}" + case icon21mp = "\u{e95f}" + case icon22mp = "\u{e960}" + case icon23mp = "\u{e961}" + case icon24fpsSelect = "\u{f3f2}" + case icon24mp = "\u{e962}" + case icon2d = "\u{ef37}" + case icon2k = "\u{e963}" + case icon2kPlus = "\u{e964}" + case icon2mp = "\u{e965}" + case icon30fps = "\u{efce}" + case icon30fpsSelect = "\u{efcf}" + case icon360 = "\u{e577}" + case icon3d = "\u{ed38}" + case icon3dRotation = "\u{e84d}" + case icon3gMobiledata = "\u{efd0}" + case icon3gMobiledataBadge = "\u{f7f0}" + case icon3k = "\u{e966}" + case icon3kPlus = "\u{e967}" + case icon3mp = "\u{e968}" + case icon3p = "\u{efd1}" + case icon4gMobiledata = "\u{efd2}" + case icon4gMobiledataBadge = "\u{f7ef}" + case icon4gPlusMobiledata = "\u{efd3}" + case icon4k = "\u{e072}" + case icon4kPlus = "\u{e969}" + case icon4mp = "\u{e96a}" + case icon50mp = "\u{f6f3}" + case icon5g = "\u{ef38}" + case icon5gMobiledataBadge = "\u{f7ee}" + case icon5k = "\u{e96b}" + case icon5kPlus = "\u{e96c}" + case icon5mp = "\u{e96d}" + case icon60fps = "\u{efd4}" + case icon60fpsSelect = "\u{efd5}" + case icon6FtApart = "\u{f21e}" + case icon6k = "\u{e96e}" + case icon6kPlus = "\u{e96f}" + case icon6mp = "\u{e970}" + case icon7k = "\u{e971}" + case icon7kPlus = "\u{e972}" + case icon7mp = "\u{e973}" + case icon8k = "\u{e974}" + case icon8kPlus = "\u{e975}" + case icon8mp = "\u{e976}" + case icon9k = "\u{e977}" + case icon9kPlus = "\u{e978}" + case icon9mp = "\u{e979}" + case idCard = "\u{f4ca}" + case identityAwareProxy = "\u{e2dd}" + case identityPlatform = "\u{ebb7}" + case ifl = "\u{e025}" + case iframe = "\u{f71b}" + case iframeOff = "\u{f71c}" + case imageArrowUp = "\u{f317}" + case imageAspectRatio = "\u{e3f5}" + case imageInset = "\u{f247}" + case imageNotSupported = "\u{f116}" + case imageSearch = "\u{e43f}" + case imagesearchRoller = "\u{e9b4}" + case imagesmode = "\u{efa2}" + case immunology = "\u{e0fb}" + case importantDevices = "\u{e912}" + case importContacts = "\u{e0e0}" + case importExport = "\u{e8d5}" + case inactiveOrder = "\u{e0fc}" + case inbox = "\u{e156}" + case inboxCustomize = "\u{f859}" + case inboxText = "\u{f399}" + case inboxTextAsterisk = "\u{f360}" + case inboxTextPerson = "\u{f35e}" + case inboxTextShare = "\u{f35c}" + case incompleteCircle = "\u{e79b}" + case indeterminateCheckBox = "\u{e909}" + case indeterminateQuestionBox = "\u{f56d}" + case info = "\u{e88e}" + case infoI = "\u{f59b}" + case infrared = "\u{f87c}" + case inHomeMode = "\u{e833}" + case inkEraser = "\u{e6d0}" + case inkEraserOff = "\u{e7e3}" + case inkHighlighter = "\u{e6d1}" + case inkHighlighterMove = "\u{f524}" + case inkMarker = "\u{e6d2}" + case inkPen = "\u{e6d3}" + case inpatient = "\u{e0fe}" + case input = "\u{e890}" + case inputCircle = "\u{f71a}" + case insertLink = "\u{e250}" + case insertPageBreak = "\u{eaca}" + case insertText = "\u{f827}" + case insights = "\u{f092}" + case installDesktop = "\u{eb71}" + case instantMix = "\u{e026}" + case integrationInstructions = "\u{ef54}" + case interactiveSpace = "\u{f7ff}" + case interests = "\u{e7c8}" + case interpreterMode = "\u{e83b}" + case inventory = "\u{e179}" + case inventory2 = "\u{e1a1}" + case invertColors = "\u{e891}" + case invertColorsOff = "\u{e0c4}" + case ios = "\u{e027}" + case iosShare = "\u{e6b8}" + case iron = "\u{e583}" + case jamboardKiosk = "\u{e9b5}" + case japaneseCurry = "\u{f284}" + case japaneseFlag = "\u{f283}" + case javascript = "\u{eb7c}" + case join = "\u{f84f}" + case joinInner = "\u{eaf4}" + case joinLeft = "\u{eaf2}" + case joinRight = "\u{eaea}" + case joystick = "\u{f5ee}" + case jumpToElement = "\u{f719}" + case kanjiAlcohol = "\u{f23e}" + case kayaking = "\u{e50c}" + case kebabDining = "\u{e842}" + case keep = "\u{f026}" + case keepOff = "\u{e6f9}" + case keepPublic = "\u{f56f}" + case kettle = "\u{e2b9}" + case key = "\u{e73c}" + case keyboard = "\u{e312}" + case keyboardAlt = "\u{f028}" + case keyboardArrowDown = "\u{e313}" + case keyboardArrowLeft = "\u{e314}" + case keyboardArrowRight = "\u{e315}" + case keyboardArrowUp = "\u{e316}" + case keyboardBackspace = "\u{e317}" + case keyboardCapslock = "\u{e318}" + case keyboardCapslockBadge = "\u{f7de}" + case keyboardCommandKey = "\u{eae7}" + case keyboardControlKey = "\u{eae6}" + case keyboardDoubleArrowDown = "\u{ead0}" + case keyboardDoubleArrowLeft = "\u{eac3}" + case keyboardDoubleArrowRight = "\u{eac9}" + case keyboardDoubleArrowUp = "\u{eacf}" + case keyboardExternalInput = "\u{f7dd}" + case keyboardFull = "\u{f7dc}" + case keyboardHide = "\u{e31a}" + case keyboardKeys = "\u{f67b}" + case keyboardLock = "\u{f492}" + case keyboardLockOff = "\u{f491}" + case keyboardOff = "\u{f67a}" + case keyboardOnscreen = "\u{f7db}" + case keyboardOptionKey = "\u{eae8}" + case keyboardPreviousLanguage = "\u{f7da}" + case keyboardReturn = "\u{e31b}" + case keyboardTab = "\u{e31c}" + case keyboardTabRtl = "\u{ec73}" + case keyboardVoice = "\u{e31d}" + case keyOff = "\u{eb84}" + case keyVertical = "\u{f51a}" + case keyVisualizer = "\u{f199}" + case kidStar = "\u{f526}" + case kingBed = "\u{ea45}" + case kitchen = "\u{eb47}" + case kitesurfing = "\u{e50d}" + case label = "\u{e893}" + case labelImportant = "\u{e948}" + case labelOff = "\u{e9b6}" + case labPanel = "\u{e103}" + case labProfile = "\u{e104}" + case labResearch = "\u{f80b}" + case labs = "\u{e105}" + case lan = "\u{eb2f}" + case landscape = "\u{e564}" + case landscape2 = "\u{f4c4}" + case landscape2Edit = "\u{f310}" + case landscape2Off = "\u{f4c3}" + case landslide = "\u{ebd7}" + case language = "\u{e894}" + case languageChineseArray = "\u{f766}" + case languageChineseCangjie = "\u{f765}" + case languageChineseDayi = "\u{f764}" + case languageChinesePinyin = "\u{f763}" + case languageChineseQuick = "\u{f762}" + case languageChineseWubi = "\u{f761}" + case languageFrench = "\u{f760}" + case languageGbEnglish = "\u{f75f}" + case languageInternational = "\u{f75e}" + case languageJapaneseKana = "\u{f513}" + case languageKoreanLatin = "\u{f75d}" + case languagePinyin = "\u{f75c}" + case languageSpanish = "\u{f5e9}" + case languageUs = "\u{f759}" + case languageUsColemak = "\u{f75b}" + case languageUsDvorak = "\u{f75a}" + case laps = "\u{f6b9}" + case laptopCar = "\u{f3cd}" + case laptopChromebook = "\u{e31f}" + case laptopMac = "\u{e320}" + case laptopWindows = "\u{e321}" + case lassoSelect = "\u{eb03}" + case lastPage = "\u{e5dd}" + case launch = "\u{e89e}" + case laundry = "\u{e2a8}" + case layers = "\u{e53b}" + case layersClear = "\u{e53c}" + case lda = "\u{e106}" + case leaderboard = "\u{f20c}" + case leakAdd = "\u{e3f8}" + case leakRemove = "\u{e3f9}" + case leftClick = "\u{f718}" + case leftPanelClose = "\u{f717}" + case leftPanelOpen = "\u{f716}" + case legendToggle = "\u{f11b}" + case lensBlur = "\u{f029}" + case letterSwitch = "\u{f758}" + case libraryAdd = "\u{e03c}" + case libraryAddCheck = "\u{e9b7}" + case libraryBooks = "\u{e02f}" + case libraryMusic = "\u{e030}" + case license = "\u{eb04}" + case liftToTalk = "\u{efa3}" + case light = "\u{f02a}" + case lightbulb = "\u{e90f}" + case lightbulb2 = "\u{f3e3}" + case lightbulbCircle = "\u{ebfe}" + case lightGroup = "\u{e28b}" + case lightMode = "\u{e518}" + case lightningStand = "\u{efa4}" + case lightOff = "\u{e9b8}" + case linearScale = "\u{e260}" + case lineAxis = "\u{ea9a}" + case lineCurve = "\u{f757}" + case lineEnd = "\u{f826}" + case lineEndArrow = "\u{f81d}" + case lineEndArrowNotch = "\u{f81c}" + case lineEndCircle = "\u{f81b}" + case lineEndDiamond = "\u{f81a}" + case lineEndSquare = "\u{f819}" + case lineStart = "\u{f825}" + case lineStartArrow = "\u{f818}" + case lineStartArrowNotch = "\u{f817}" + case lineStartCircle = "\u{f816}" + case lineStartDiamond = "\u{f815}" + case lineStartSquare = "\u{f814}" + case lineStyle = "\u{e919}" + case lineWeight = "\u{e91a}" + case linkedCamera = "\u{e438}" + case linkedServices = "\u{f535}" + case linkOff = "\u{e16f}" + case liquor = "\u{ea60}" + case list = "\u{e896}" + case listAlt = "\u{e0ee}" + case listAltAdd = "\u{f756}" + case listAltCheck = "\u{f3de}" + case lists = "\u{e9b9}" + case liveHelp = "\u{e0c6}" + case liveTv = "\u{e63a}" + case living = "\u{f02b}" + case localActivity = "\u{e553}" + case localAtm = "\u{e53e}" + case localBar = "\u{e540}" + case localCarWash = "\u{e542}" + case localConvenienceStore = "\u{e543}" + case localDining = "\u{e561}" + case localDrink = "\u{e544}" + case localFireDepartment = "\u{ef55}" + case localFlorist = "\u{e545}" + case localGasStation = "\u{e546}" + case localGroceryStore = "\u{e8cc}" + case localHospital = "\u{e548}" + case localLaundryService = "\u{e54a}" + case localLibrary = "\u{e54b}" + case localMall = "\u{e54c}" + case localMovies = "\u{e8da}" + case localOffer = "\u{f05b}" + case localParking = "\u{e54f}" + case localPharmacy = "\u{e550}" + case localPizza = "\u{e552}" + case localPolice = "\u{ef56}" + case localPostOffice = "\u{e554}" + case localPrintshop = "\u{e8ad}" + case localSee = "\u{e557}" + case localShipping = "\u{e558}" + case localTaxi = "\u{e559}" + case locationAutomation = "\u{f14f}" + case locationAway = "\u{f150}" + case locationChip = "\u{f850}" + case locationCity = "\u{e7f1}" + case locationHome = "\u{f152}" + case locationOff = "\u{e0c7}" + case locatorTag = "\u{f8c1}" + case lockClock = "\u{ef57}" + case lockOpen = "\u{e898}" + case lockOpenCircle = "\u{f361}" + case lockOpenRight = "\u{f656}" + case lockPerson = "\u{f8f3}" + case lockReset = "\u{eade}" + case login = "\u{ea77}" + case logoDev = "\u{ead6}" + case logout = "\u{e9ba}" + case looks = "\u{e3fc}" + case looks3 = "\u{e3fb}" + case looks4 = "\u{e3fd}" + case looks5 = "\u{e3fe}" + case looks6 = "\u{e3ff}" + case looksOne = "\u{e400}" + case looksTwo = "\u{e401}" + case loupe = "\u{e402}" + case lowDensity = "\u{f79b}" + case lowercase = "\u{f48a}" + case lowPriority = "\u{e16d}" + case loyalty = "\u{e89a}" + case lteMobiledata = "\u{f02c}" + case lteMobiledataBadge = "\u{f7d9}" + case ltePlusMobiledata = "\u{f02d}" + case ltePlusMobiledataBadge = "\u{f7d8}" + case luggage = "\u{f235}" + case lunchDining = "\u{ea61}" + case lyrics = "\u{ec0b}" + case macroAuto = "\u{f6f2}" + case macroOff = "\u{f8d2}" + case magicButton = "\u{f136}" + case magicExchange = "\u{f7f4}" + case magicTether = "\u{f7d7}" + case magnificationLarge = "\u{f83d}" + case magnificationSmall = "\u{f83c}" + case magnifyDocked = "\u{f7d6}" + case magnifyFullscreen = "\u{f7d5}" + case mailAsterisk = "\u{eef4}" + case mailLock = "\u{ec0a}" + case mailOff = "\u{f48b}" + case mailShield = "\u{f249}" + case male = "\u{e58e}" + case man = "\u{e4eb}" + case man2 = "\u{f8e1}" + case man3 = "\u{f8e2}" + case man4 = "\u{f8e3}" + case manageAccounts = "\u{f02e}" + case manageHistory = "\u{ebe7}" + case manageSearch = "\u{f02f}" + case manga = "\u{f5e3}" + case manufacturing = "\u{e726}" + case map = "\u{e55b}" + case mapPinHeart = "\u{f298}" + case mapPinReview = "\u{f297}" + case mapSearch = "\u{f3ca}" + case mapsUgc = "\u{ef58}" + case margin = "\u{e9bb}" + case markAsUnread = "\u{e9bc}" + case markChatRead = "\u{f18b}" + case markChatUnread = "\u{f189}" + case markdown = "\u{f552}" + case markdownCopy = "\u{f553}" + case markdownPaste = "\u{f554}" + case markEmailRead = "\u{f18c}" + case markEmailUnread = "\u{f18a}" + case markUnreadChatAlt = "\u{eb9d}" + case markunreadMailbox = "\u{e89b}" + case maskedTransitions = "\u{e72e}" + case maskedTransitionsAdd = "\u{f42b}" + case masks = "\u{f218}" + case massage = "\u{f2c2}" + case matchCase = "\u{f6f1}" + case matchCaseOff = "\u{f36f}" + case matchWord = "\u{f6f0}" + case matter = "\u{e907}" + case maximize = "\u{e930}" + case mealDinner = "\u{f23d}" + case mealLunch = "\u{f23c}" + case measuringTape = "\u{f6af}" + case mediaBluetoothOff = "\u{f031}" + case mediaBluetoothOn = "\u{f032}" + case mediaLink = "\u{f83f}" + case mediaOutput = "\u{f4f2}" + case mediaOutputOff = "\u{f4f3}" + case mediation = "\u{efa7}" + case medicalInformation = "\u{ebed}" + case medicalMask = "\u{f80a}" + case medicalServices = "\u{f109}" + case medication = "\u{f033}" + case medicationLiquid = "\u{ea87}" + case meetingRoom = "\u{eb4f}" + case memory = "\u{e322}" + case memoryAlt = "\u{f7a3}" + case menstrualHealth = "\u{f6e1}" + case menu = "\u{e5d2}" + case menuBook = "\u{ea19}" + case menuBook2 = "\u{f291}" + case menuOpen = "\u{e9bd}" + case merge = "\u{eb98}" + case mergeType = "\u{e252}" + case metabolism = "\u{e10b}" + case metro = "\u{f474}" + case mfgNestYaleLock = "\u{f11d}" + case micAlert = "\u{f392}" + case micDouble = "\u{f5d1}" + case micExternalOff = "\u{ef59}" + case micExternalOn = "\u{ef5a}" + case micOff = "\u{e02b}" + case microbiology = "\u{e10c}" + case microwave = "\u{f204}" + case microwaveGen = "\u{e847}" + case militaryTech = "\u{ea3f}" + case mimo = "\u{e9be}" + case mimoDisconnect = "\u{e9bf}" + case mindfulness = "\u{f6e0}" + case minimize = "\u{e931}" + case minorCrash = "\u{ebf1}" + case mintmark = "\u{efa9}" + case missedVideoCall = "\u{f0ce}" + case missingController = "\u{e701}" + case mist = "\u{e188}" + case mitre = "\u{f547}" + case mixtureMed = "\u{e4c8}" + case mms = "\u{e618}" + case mobile = "\u{e7ba}" + case mobile2 = "\u{f2db}" + case mobile3 = "\u{f2da}" + case mobileAlert = "\u{f2d3}" + case mobileArrowRight = "\u{f2d2}" + case mobileCamera = "\u{f44e}" + case mobileCancel = "\u{f2ea}" + case mobileCast = "\u{f2cc}" + case mobileChat = "\u{f79f}" + case mobileCheck = "\u{f073}" + case mobiledataOff = "\u{f034}" + case mobileDots = "\u{f2d0}" + case mobileHand = "\u{f323}" + case mobileHandLeft = "\u{f313}" + case mobileHandLeftOff = "\u{f312}" + case mobileHandOff = "\u{f314}" + case mobileInfo = "\u{f2dc}" + case mobileLandscape = "\u{ed3e}" + case mobileLayout = "\u{f2bf}" + case mobileLockLandscape = "\u{f2d8}" + case mobileLockPortrait = "\u{f2be}" + case mobileLoupe = "\u{f322}" + case mobileMenu = "\u{f2d1}" + case mobileOff = "\u{e201}" + case mobileRotate = "\u{f2d5}" + case mobileRotateLock = "\u{f2d6}" + case mobileScreensaver = "\u{f321}" + case mobileShareStack = "\u{f2de}" + case mobileSound = "\u{f2e8}" + case mobileSound2 = "\u{f318}" + case mobileSoundOff = "\u{f7aa}" + case mobileSpeaker = "\u{f320}" + case mobileTheft = "\u{f2a9}" + case mobileVibrate = "\u{f2cb}" + case mobileWrench = "\u{f2b0}" + case modeComment = "\u{e253}" + case modeCool = "\u{f166}" + case modeCoolOff = "\u{f167}" + case modeDual = "\u{f557}" + case modeFan = "\u{f168}" + case modeFanOff = "\u{ec17}" + case modeHeat = "\u{f16a}" + case modeHeatCool = "\u{f16b}" + case modeHeatOff = "\u{f16d}" + case modeling = "\u{f3aa}" + case modelTraining = "\u{f0cf}" + case modeOffOn = "\u{f16f}" + case modeOfTravel = "\u{e7ce}" + case modeStandby = "\u{f037}" + case monetizationOn = "\u{e263}" + case money = "\u{e57d}" + case moneyBag = "\u{f3ee}" + case moneyOff = "\u{f038}" + case moneyRange = "\u{f245}" + case monitor = "\u{ef5b}" + case monitorHeart = "\u{eaa2}" + case monitoring = "\u{f190}" + case monitorWeight = "\u{f039}" + case monitorWeightGain = "\u{f6df}" + case monitorWeightLoss = "\u{f6de}" + case monochromePhotos = "\u{e403}" + case monorail = "\u{f473}" + case moodBad = "\u{e7f3}" + case moonStars = "\u{f34f}" + case mop = "\u{e28d}" + case mopedPackage = "\u{f28b}" + case more = "\u{e619}" + case moreDown = "\u{f196}" + case moreHoriz = "\u{e5d3}" + case moreTime = "\u{ea5d}" + case moreUp = "\u{f197}" + case moreVert = "\u{e5d4}" + case mosque = "\u{eab2}" + case motionBlur = "\u{f0d0}" + case motionMode = "\u{f842}" + case motionPhotosAuto = "\u{f03a}" + case motionPhotosOff = "\u{e9c0}" + case motionPhotosOn = "\u{e9c1}" + case motionPhotosPause = "\u{f227}" + case motionPlay = "\u{f40b}" + case motionSensorActive = "\u{e792}" + case motionSensorAlert = "\u{e784}" + case motionSensorIdle = "\u{e783}" + case motionSensorUrgent = "\u{e78e}" + case motorcycle = "\u{e91b}" + case mountainFlag = "\u{f5e2}" + case mountainSteam = "\u{f282}" + case mouse = "\u{e323}" + case mouseLock = "\u{f490}" + case mouseLockOff = "\u{f48f}" + case move = "\u{e740}" + case movedLocation = "\u{e594}" + case moveDown = "\u{eb61}" + case moveGroup = "\u{f715}" + case moveItem = "\u{f1ff}" + case moveLocation = "\u{e741}" + case moveSelectionDown = "\u{f714}" + case moveSelectionLeft = "\u{f713}" + case moveSelectionRight = "\u{f712}" + case moveSelectionUp = "\u{f711}" + case moveToInbox = "\u{e168}" + case moveUp = "\u{eb64}" + case movie = "\u{e404}" + case movieEdit = "\u{f840}" + case movieFilter = "\u{e43a}" + case movieInfo = "\u{e02d}" + case movieOff = "\u{f499}" + case movieSpeaker = "\u{f2a3}" + case moving = "\u{e501}" + case movingBeds = "\u{e73d}" + case movingMinistry = "\u{e73e}" + case mp = "\u{e9c3}" + case multicooker = "\u{e293}" + case multilineChart = "\u{e6df}" + case multimodalHandEye = "\u{f41b}" + case multipleAirports = "\u{efab}" + case multipleStop = "\u{f1b9}" + case museum = "\u{ea36}" + case musicCast = "\u{eb1a}" + case musicHistory = "\u{f2c1}" + case musicNoteAdd = "\u{f391}" + case musicOff = "\u{e440}" + case musicVideo = "\u{e063}" + case mystery = "\u{f5e1}" + case nat = "\u{ef5c}" + case nature = "\u{e406}" + case naturePeople = "\u{e407}" + case navigation = "\u{e55d}" + case nearby = "\u{e6b7}" + case nearbyError = "\u{f03b}" + case nearbyOff = "\u{f03c}" + case nearMe = "\u{e569}" + case nearMeDisabled = "\u{f1ef}" + case nephrology = "\u{e10d}" + case nestAudio = "\u{ebbf}" + case nestCamFloodlight = "\u{f8b7}" + case nestCamIndoor = "\u{f11e}" + case nestCamIq = "\u{f11f}" + case nestCamIqOutdoor = "\u{f120}" + case nestCamMagnetMount = "\u{f8b8}" + case nestCamOutdoor = "\u{f121}" + case nestCamStand = "\u{f8b9}" + case nestCamWallMount = "\u{f8ba}" + case nestCamWiredStand = "\u{ec16}" + case nestClockFarsightAnalog = "\u{f8bb}" + case nestClockFarsightDigital = "\u{f8bc}" + case nestConnect = "\u{f122}" + case nestDetect = "\u{f123}" + case nestDisplay = "\u{f124}" + case nestDisplayMax = "\u{f125}" + case nestDoorbellVisitor = "\u{f8bd}" + case nestEcoLeaf = "\u{f8be}" + case nestFarsightCool = "\u{f27d}" + case nestFarsightDual = "\u{f27c}" + case nestFarsightEco = "\u{f27b}" + case nestFarsightHeat = "\u{f27a}" + case nestFarsightSeasonal = "\u{f279}" + case nestFarsightWeather = "\u{f8bf}" + case nestFoundSavings = "\u{f8c0}" + case nestHeatLinkE = "\u{f126}" + case nestHeatLinkGen3 = "\u{f127}" + case nestHelloDoorbell = "\u{e82c}" + case nestMini = "\u{e789}" + case nestMultiRoom = "\u{f8c2}" + case nestProtect = "\u{e68e}" + case nestRemoteComfortSensor = "\u{f12a}" + case nestSecureAlarm = "\u{f12b}" + case nestSunblock = "\u{f8c3}" + case nestThermostat = "\u{e68f}" + case nestThermostatEEu = "\u{f12d}" + case nestThermostatGen3 = "\u{f12e}" + case nestThermostatSensor = "\u{f12f}" + case nestThermostatSensorEu = "\u{f130}" + case nestThermostatZirconiumEu = "\u{f131}" + case nestTrueRadiant = "\u{f8c4}" + case nestWakeOnApproach = "\u{f8c5}" + case nestWakeOnPress = "\u{f8c6}" + case nestWifiGale = "\u{f132}" + case nestWifiMistral = "\u{f133}" + case nestWifiPoint = "\u{f134}" + case nestWifiPro = "\u{f56b}" + case nestWifiPro2 = "\u{f56a}" + case networkCell = "\u{e1b9}" + case networkCheck = "\u{e640}" + case networkIntelligence = "\u{efac}" + case networkIntelligenceHistory = "\u{f5f6}" + case networkIntelligenceUpdate = "\u{f5f5}" + case networkIntelNode = "\u{f371}" + case networkLocked = "\u{e61a}" + case networkManage = "\u{f7ab}" + case networkNode = "\u{f56e}" + case networkPing = "\u{ebca}" + case networkWifi = "\u{e1ba}" + case networkWifi1Bar = "\u{ebe4}" + case networkWifi1BarLocked = "\u{f58f}" + case networkWifi2Bar = "\u{ebd6}" + case networkWifi2BarLocked = "\u{f58e}" + case networkWifi3Bar = "\u{ebe1}" + case networkWifi3BarLocked = "\u{f58d}" + case networkWifiLocked = "\u{f532}" + case neurology = "\u{e10e}" + case newLabel = "\u{e609}" + case newReleases = "\u{ef76}" + case news = "\u{e032}" + case newsmode = "\u{efad}" + case newspaper = "\u{eb81}" + case newsstand = "\u{e9c4}" + case newWindow = "\u{f710}" + case nextPlan = "\u{ef5d}" + case nextWeek = "\u{e16a}" + case nfc = "\u{e1bb}" + case nfcOff = "\u{f369}" + case nightlife = "\u{ea62}" + case nightlight = "\u{f03d}" + case nightShelter = "\u{f1f1}" + case nightSightAuto = "\u{f1d7}" + case nightSightAutoOff = "\u{f1f9}" + case nightSightMax = "\u{f6c3}" + case nightsStay = "\u{f174}" + case noAccounts = "\u{f03e}" + case noAdultContent = "\u{f8fe}" + case noBackpack = "\u{f237}" + case noCrash = "\u{ebf0}" + case noDrinks = "\u{f1a5}" + case noEncryption = "\u{f03f}" + case noFlash = "\u{f1a6}" + case noFood = "\u{f1a7}" + case noiseAware = "\u{ebec}" + case noiseControlOff = "\u{ebf3}" + case noiseControlOn = "\u{f8a8}" + case noLuggage = "\u{f23b}" + case noMeals = "\u{f1d6}" + case noMeetingRoom = "\u{eb4e}" + case noPhotography = "\u{f1a8}" + case nordicWalking = "\u{e50e}" + case north = "\u{f1e0}" + case northEast = "\u{f1e1}" + case northWest = "\u{f1e2}" + case noSim = "\u{e1ce}" + case noSound = "\u{e710}" + case noStroller = "\u{f1af}" + case notAccessible = "\u{f0fe}" + case notAccessibleForward = "\u{f54a}" + case noteAdd = "\u{e89c}" + case noteAlt = "\u{f040}" + case notes = "\u{e26c}" + case noteStack = "\u{f562}" + case noteStackAdd = "\u{f563}" + case notificationAdd = "\u{e399}" + case notificationImportant = "\u{e004}" + case notificationMultiple = "\u{e6c2}" + case notifications = "\u{e7f5}" + case notificationsActive = "\u{e7f7}" + case notificationSettings = "\u{f367}" + case notificationsOff = "\u{e7f6}" + case notificationSound = "\u{f353}" + case notificationsPaused = "\u{e7f8}" + case notificationsUnread = "\u{f4fe}" + case notListedLocation = "\u{e575}" + case noTransfer = "\u{f1d5}" + case notStarted = "\u{f0d1}" + case numbers = "\u{eac7}" + case nutrition = "\u{e110}" + case ods = "\u{e6e8}" + case odt = "\u{e6e9}" + case offlineBolt = "\u{e932}" + case offlinePin = "\u{e90a}" + case offlinePinOff = "\u{f4d0}" + case oilBarrel = "\u{ec15}" + case okonomiyaki = "\u{f281}" + case oncology = "\u{e114}" + case onDeviceTraining = "\u{ebfd}" + case onHubDevice = "\u{e6c3}" + case onlinePrediction = "\u{f0eb}" + case onsen = "\u{f6f8}" + case opacity = "\u{e91c}" + case openInBrowser = "\u{e89d}" + case openInFull = "\u{f1ce}" + case openInNewDown = "\u{f70f}" + case openInNewOff = "\u{e4f6}" + case openJam = "\u{efae}" + case openRun = "\u{f4b7}" + case openWith = "\u{e89f}" + case ophthalmology = "\u{e115}" + case oralDisease = "\u{e116}" + case orbit = "\u{f426}" + case orderApprove = "\u{f812}" + case orderPlay = "\u{f811}" + case orders = "\u{eb14}" + case orthopedics = "\u{f897}" + case otherAdmission = "\u{e47b}" + case otherHouses = "\u{e58c}" + case outbound = "\u{e1ca}" + case outbox = "\u{ef5f}" + case outboxAlt = "\u{eb17}" + case outdoorGarden = "\u{e205}" + case outdoorGrill = "\u{ea47}" + case outgoingMail = "\u{f0d2}" + case outlet = "\u{f1d4}" + case outpatient = "\u{e118}" + case outpatientMed = "\u{e119}" + case output = "\u{ebbe}" + case outputCircle = "\u{f70e}" + case oven = "\u{e9c7}" + case ovenGen = "\u{e843}" + case overview = "\u{e4a7}" + case overviewKey = "\u{f7d4}" + case owl = "\u{f3b4}" + case oxygenSaturation = "\u{e4de}" + case p2p = "\u{f52a}" + case pace = "\u{f6b8}" + case pacemaker = "\u{e656}" + case package = "\u{e48f}" + case package2 = "\u{f569}" + case padding = "\u{e9c8}" + case padel = "\u{f2a7}" + case pageControl = "\u{e731}" + case pageFooter = "\u{f383}" + case pageHeader = "\u{f384}" + case pageInfo = "\u{f614}" + case pageless = "\u{f509}" + case pageMenuIos = "\u{eefb}" + case pages = "\u{e7f9}" + case pageview = "\u{e8a0}" + case paid = "\u{f041}" + case pallet = "\u{f86a}" + case panorama = "\u{e40b}" + case panoramaFishEye = "\u{e40c}" + case panoramaHorizontal = "\u{e40d}" + case panoramaPhotosphere = "\u{e9c9}" + case panoramaVertical = "\u{e40e}" + case panoramaWideAngle = "\u{e40f}" + case panTool = "\u{e925}" + case panToolAlt = "\u{ebb9}" + case panZoom = "\u{f655}" + case paragliding = "\u{e50f}" + case parentChildDining = "\u{f22d}" + case park = "\u{ea63}" + case parkingMeter = "\u{f28a}" + case parkingSign = "\u{f289}" + case parkingValet = "\u{f288}" + case partlyCloudyDay = "\u{f172}" + case partnerExchange = "\u{f7f9}" + case partnerHeart = "\u{ef2e}" + case partnerReports = "\u{efaf}" + case partyMode = "\u{e7fa}" + case passkey = "\u{f87f}" + case password = "\u{f042}" + case password2 = "\u{f4a9}" + case password2Off = "\u{f4a8}" + case patientList = "\u{e653}" + case pattern = "\u{f043}" + case pause = "\u{e034}" + case pauseCircle = "\u{e1a2}" + case pausePresentation = "\u{e0ea}" + case paymentArrowDown = "\u{f2c0}" + case paymentCard = "\u{f2a1}" + case payments = "\u{ef63}" + case pedalBike = "\u{eb29}" + case pediatrics = "\u{e11d}" + case pending = "\u{ef64}" + case pendingActions = "\u{f1bb}" + case penSize1 = "\u{f755}" + case penSize2 = "\u{f754}" + case penSize3 = "\u{f753}" + case penSize4 = "\u{f752}" + case penSize5 = "\u{f751}" + case pentagon = "\u{eb50}" + case percent = "\u{eb58}" + case percentDiscount = "\u{f244}" + case performanceMax = "\u{e51a}" + case pergola = "\u{e203}" + case permCameraMic = "\u{e8a2}" + case permContactCalendar = "\u{e8a3}" + case permDataSetting = "\u{e8a4}" + case permIdentity = "\u{f0d3}" + case permMedia = "\u{e8a7}" + case permPhoneMsg = "\u{e8a8}" + case permScanWifi = "\u{e8a9}" + case person2 = "\u{f8e4}" + case person3 = "\u{f8e5}" + case person4 = "\u{f8e6}" + case personAdd = "\u{ea4d}" + case personAddDisabled = "\u{e9cb}" + case personalBag = "\u{eb0e}" + case personalBagOff = "\u{eb0f}" + case personalBagQuestion = "\u{eb10}" + case personAlert = "\u{f567}" + case personalInjury = "\u{e6da}" + case personalPlaces = "\u{e703}" + case personalVideo = "\u{e63b}" + case personApron = "\u{f5a3}" + case personBook = "\u{f5e8}" + case personCancel = "\u{f566}" + case personCelebrate = "\u{f7fe}" + case personCheck = "\u{f565}" + case personEdit = "\u{f4fa}" + case personHeart = "\u{f290}" + case personOff = "\u{e510}" + case personPin = "\u{e55a}" + case personPinCircle = "\u{e56a}" + case personPlay = "\u{f7fd}" + case personRaisedHand = "\u{f59a}" + case personRemove = "\u{ef66}" + case personSearch = "\u{f106}" + case personShield = "\u{e384}" + case pestControl = "\u{f0fa}" + case pestControlRodent = "\u{f0fd}" + case pets = "\u{e91d}" + case petSupplies = "\u{efb1}" + case phishing = "\u{ead7}" + case phoneBluetoothSpeaker = "\u{e61b}" + case phoneCallback = "\u{e649}" + case phoneDisabled = "\u{e9cc}" + case phoneEnabled = "\u{e9cd}" + case phoneForwarded = "\u{e61c}" + case phoneInTalk = "\u{e61d}" + case phoneLocked = "\u{e61e}" + case phoneMissed = "\u{e61f}" + case phonePaused = "\u{e620}" + case photo = "\u{e432}" + case photoAlbum = "\u{e411}" + case photoAutoMerge = "\u{f530}" + case photoCameraBack = "\u{ef68}" + case photoCameraFront = "\u{ef69}" + case photoFilter = "\u{e43b}" + case photoFrame = "\u{f0d9}" + case photoLibrary = "\u{e413}" + case photoPrints = "\u{efb2}" + case photoSizeSelectLarge = "\u{e433}" + case photoSizeSelectSmall = "\u{e434}" + case php = "\u{eb8f}" + case physicalTherapy = "\u{e11e}" + case piano = "\u{e521}" + case pianoOff = "\u{e520}" + case pickleball = "\u{f2a6}" + case pictureAsPdf = "\u{e415}" + case pictureInPicture = "\u{e8aa}" + case pictureInPictureAlt = "\u{e911}" + case pictureInPictureCenter = "\u{f550}" + case pictureInPictureLarge = "\u{f54f}" + case pictureInPictureMedium = "\u{f54e}" + case pictureInPictureMobile = "\u{f517}" + case pictureInPictureOff = "\u{f52f}" + case pictureInPictureSmall = "\u{f54d}" + case pieChart = "\u{f0da}" + case pill = "\u{e11f}" + case pillOff = "\u{f809}" + case pin = "\u{f045}" + case pinboard = "\u{f3ab}" + case pinboardUnread = "\u{f3ac}" + case pinch = "\u{eb38}" + case pinchZoomIn = "\u{f1fa}" + case pinchZoomOut = "\u{f1fb}" + case pinDrop = "\u{e55e}" + case pinEnd = "\u{e767}" + case pinInvoke = "\u{e763}" + case pip = "\u{f64d}" + case pipExit = "\u{f70d}" + case pivotTableChart = "\u{e9ce}" + case placeItem = "\u{f1f0}" + case plagiarism = "\u{ea5a}" + case planeContrails = "\u{f2ac}" + case planet = "\u{f387}" + case plannerBannerAdPt = "\u{e692}" + case plannerReview = "\u{e694}" + case playArrow = "\u{e037}" + case playCircle = "\u{e1c4}" + case playDisabled = "\u{ef6a}" + case playForWork = "\u{e906}" + case playground = "\u{f28e}" + case playground2 = "\u{f28f}" + case playingCards = "\u{f5dc}" + case playLesson = "\u{f047}" + case playlistAdd = "\u{e03b}" + case playlistAddCheck = "\u{e065}" + case playlistAddCheckCircle = "\u{e7e6}" + case playlistAddCircle = "\u{e7e5}" + case playlistPlay = "\u{e05f}" + case playlistRemove = "\u{eb80}" + case playPause = "\u{f137}" + case playShapes = "\u{f7fc}" + case plugConnect = "\u{f35a}" + case plumbing = "\u{f107}" + case podcasts = "\u{f048}" + case podiatry = "\u{e120}" + case podium = "\u{f7fb}" + case pointOfSale = "\u{f17e}" + case pointScan = "\u{f70c}" + case pokerChip = "\u{f49b}" + case policy = "\u{ea17}" + case policyAlert = "\u{f407}" + case polyline = "\u{ebbb}" + case polymer = "\u{e8ab}" + case pool = "\u{eb48}" + case portableWifiOff = "\u{f087}" + case positionBottomLeft = "\u{f70b}" + case positionBottomRight = "\u{f70a}" + case positionTopRight = "\u{f709}" + case post = "\u{e705}" + case postAdd = "\u{ea20}" + case pottedPlant = "\u{f8aa}" + case power = "\u{e63c}" + case powerInput = "\u{e336}" + case powerOff = "\u{e646}" + case powerRounded = "\u{f8c7}" + case powerSettingsCircle = "\u{f418}" + case prayerTimes = "\u{f838}" + case precisionManufacturing = "\u{f049}" + case pregnancy = "\u{f5f1}" + case preliminary = "\u{e7d8}" + case prescriptions = "\u{e121}" + case presentToAll = "\u{e0df}" + case preview = "\u{f1c5}" + case previewOff = "\u{f7af}" + case priceChange = "\u{f04a}" + case priceCheck = "\u{f04b}" + case printAdd = "\u{f7a2}" + case printConnect = "\u{f7a1}" + case printDisabled = "\u{e9cf}" + case printError = "\u{f7a0}" + case printLock = "\u{f651}" + case priority = "\u{e19f}" + case priorityHigh = "\u{e645}" + case privacy = "\u{f148}" + case privacyTip = "\u{f0dc}" + case privateConnectivity = "\u{e744}" + case problem = "\u{e122}" + case procedure = "\u{e651}" + case processChart = "\u{f855}" + case productionQuantityLimits = "\u{e1d1}" + case productivity = "\u{e296}" + case progressActivity = "\u{e9d0}" + case promptSuggestion = "\u{f4f6}" + case propane = "\u{ec14}" + case propaneTank = "\u{ec13}" + case psychiatry = "\u{e123}" + case psychology = "\u{ea4a}" + case psychologyAlt = "\u{f8ea}" + case publicIcon = "\u{e80b}" + case publicOff = "\u{f1ca}" + case publish = "\u{e255}" + case publishedWithChanges = "\u{f232}" + case pulmonology = "\u{e124}" + case pulseAlert = "\u{f501}" + case punchClock = "\u{eaa8}" + case pushPin = "\u{f10d}" + case qrCode = "\u{ef6b}" + case qrCode2 = "\u{e00a}" + case qrCode2Add = "\u{f658}" + case qrCodeScanner = "\u{f206}" + case queryStats = "\u{e4fc}" + case questionExchange = "\u{f7f3}" + case questionMark = "\u{eb8b}" + case queueMusic = "\u{e03d}" + case queuePlayNext = "\u{e066}" + case quickPhrases = "\u{e7d1}" + case quickReference = "\u{e46e}" + case quickReferenceAll = "\u{f801}" + case quickReorder = "\u{eb15}" + case quickreply = "\u{ef6c}" + case quiz = "\u{f04c}" + case radar = "\u{f04e}" + case radio = "\u{e03e}" + case radioButtonChecked = "\u{e837}" + case radioButtonPartial = "\u{f560}" + case radioButtonUnchecked = "\u{e836}" + case radiology = "\u{e125}" + case railwayAlert = "\u{e9d1}" + case railwayAlert2 = "\u{f461}" + case rainy = "\u{f176}" + case rainyHeavy = "\u{f61f}" + case rainyLight = "\u{f61e}" + case rainySnow = "\u{f61d}" + case ramenDining = "\u{ea64}" + case rampLeft = "\u{eb9c}" + case rampRight = "\u{eb96}" + case rangeHood = "\u{e1ea}" + case rateReview = "\u{e560}" + case rateReviewRtl = "\u{e706}" + case raven = "\u{f555}" + case rawOff = "\u{f04f}" + case rawOn = "\u{f050}" + case readinessScore = "\u{f6dd}" + case readMore = "\u{ef6d}" + case realEstateAgent = "\u{e73a}" + case rearCamera = "\u{f6c2}" + case rebase = "\u{f845}" + case rebaseEdit = "\u{f846}" + case receipt = "\u{e8b0}" + case receiptLong = "\u{ef6e}" + case receiptLongOff = "\u{f40a}" + case recentActors = "\u{e03f}" + case recenter = "\u{f4c0}" + case recentPatient = "\u{f808}" + case recommend = "\u{e9d2}" + case recordVoiceOver = "\u{e91f}" + case rectangle = "\u{eb54}" + case recycling = "\u{e760}" + case redo = "\u{e15a}" + case reduceCapacity = "\u{f21c}" + case refresh = "\u{e5d5}" + case regularExpression = "\u{f750}" + case relax = "\u{f6dc}" + case releaseAlert = "\u{f654}" + case rememberMe = "\u{f051}" + case reminder = "\u{e6c6}" + case remoteGen = "\u{e83e}" + case remove = "\u{e15b}" + case removeDone = "\u{e9d3}" + case removeFromQueue = "\u{e067}" + case removeModerator = "\u{e9d4}" + case removeRedEye = "\u{e8f4}" + case removeRoad = "\u{ebfc}" + case removeSelection = "\u{e9d5}" + case removeShoppingCart = "\u{e928}" + case reopenWindow = "\u{f708}" + case reorder = "\u{e8fe}" + case repartition = "\u{f8e8}" + case repeatIcon = "\u{e040}" + case repeatOn = "\u{e9d6}" + case repeatOne = "\u{e041}" + case repeatOneOn = "\u{e9d7}" + case replaceAudio = "\u{f451}" + case replaceImage = "\u{f450}" + case replaceVideo = "\u{f44f}" + case replay = "\u{e042}" + case replay10 = "\u{e059}" + case replay30 = "\u{e05a}" + case replay5 = "\u{e05b}" + case replayCircleFilled = "\u{e9d8}" + case reply = "\u{e15e}" + case replyAll = "\u{e15f}" + case report = "\u{f052}" + case reportOff = "\u{e170}" + case reportProblem = "\u{f083}" + case requestPage = "\u{f22c}" + case requestQuote = "\u{f1b6}" + case resetBrightness = "\u{f482}" + case resetExposure = "\u{f266}" + case resetFocus = "\u{f481}" + case resetImage = "\u{f824}" + case resetIso = "\u{f480}" + case resetSettings = "\u{f47f}" + case resetShadow = "\u{f47e}" + case resetShutterSpeed = "\u{f47d}" + case resetTv = "\u{e9d9}" + case resetWhiteBalance = "\u{f47c}" + case resetWrench = "\u{f56c}" + case resize = "\u{f707}" + case respiratoryRate = "\u{e127}" + case responsiveLayout = "\u{e9da}" + case restArea = "\u{f22a}" + case restartAlt = "\u{f053}" + case restaurant = "\u{e56c}" + case restoreFromTrash = "\u{e938}" + case restorePage = "\u{e929}" + case resume = "\u{f7d0}" + case reviews = "\u{f07c}" + case rewardedAds = "\u{efb6}" + case rheumatology = "\u{e128}" + case ribCage = "\u{f898}" + case riceBowl = "\u{f1f5}" + case rightClick = "\u{f706}" + case rightPanelClose = "\u{f705}" + case rightPanelOpen = "\u{f704}" + case ringVolume = "\u{f0dd}" + case ripples = "\u{e9db}" + case rMobiledata = "\u{f04d}" + case road = "\u{f472}" + case robot = "\u{f882}" + case robot2 = "\u{f5d0}" + case rocket = "\u{eba5}" + case rocketLaunch = "\u{eb9b}" + case rollerShades = "\u{ec12}" + case rollerShadesClosed = "\u{ec11}" + case rollerSkating = "\u{ebcd}" + case roofing = "\u{f201}" + case roomPreferences = "\u{f1b8}" + case roomService = "\u{eb49}" + case rotate90DegreesCcw = "\u{e418}" + case rotate90DegreesCw = "\u{eaab}" + case rotateAuto = "\u{f417}" + case rotateLeft = "\u{e419}" + case rotateRight = "\u{e41a}" + case roundaboutLeft = "\u{eb99}" + case roundaboutRight = "\u{eba3}" + case roundedCorner = "\u{e920}" + case route = "\u{eacd}" + case router = "\u{e328}" + case routerOff = "\u{f2f4}" + case routine = "\u{e20c}" + case rowing = "\u{e921}" + case rssFeed = "\u{e0e5}" + case rsvp = "\u{f055}" + case rtt = "\u{e9ad}" + case rubric = "\u{eb27}" + case rule = "\u{f1c2}" + case ruleFolder = "\u{f1c9}" + case ruleSettings = "\u{f64c}" + case runCircle = "\u{ef6f}" + case runningWithErrors = "\u{e51d}" + case rvHookup = "\u{e642}" + case safetyCheck = "\u{ebef}" + case safetyCheckOff = "\u{f59d}" + case safetyDivider = "\u{e1cc}" + case sailing = "\u{e502}" + case salinity = "\u{f876}" + case sanitizer = "\u{f21d}" + case satellite = "\u{e562}" + case satelliteAlt = "\u{eb3a}" + case sauna = "\u{f6f7}" + case save = "\u{e161}" + case saveAs = "\u{eb60}" + case saveClock = "\u{f398}" + case savedSearch = "\u{ea11}" + case savings = "\u{e2eb}" + case scale = "\u{eb5f}" + case scan = "\u{f74e}" + case scanDelete = "\u{f74f}" + case scanner = "\u{e329}" + case scatterPlot = "\u{e268}" + case scene = "\u{e2a7}" + case scheduleSend = "\u{ea0a}" + case schema = "\u{e4fd}" + case school = "\u{e80c}" + case science = "\u{ea4b}" + case scienceOff = "\u{f542}" + case scooter = "\u{f471}" + case score = "\u{e269}" + case scoreboard = "\u{ebd0}" + case screenRecord = "\u{f679}" + case screenRotationAlt = "\u{ebee}" + case screenRotationUp = "\u{f678}" + case screenSearchDesktop = "\u{ef70}" + case screenShare = "\u{e0e2}" + case screenshot = "\u{f056}" + case screenshotFrame = "\u{f677}" + case screenshotFrame2 = "\u{f374}" + case screenshotKeyboard = "\u{f7d3}" + case screenshotMonitor = "\u{ec08}" + case screenshotRegion = "\u{f7d2}" + case screenshotTablet = "\u{f697}" + case script = "\u{f45f}" + case scrollableHeader = "\u{e9dc}" + case scubaDiving = "\u{ebce}" + case sd = "\u{e9dd}" + case sdCard = "\u{e623}" + case sdCardAlert = "\u{f057}" + case sdk = "\u{e720}" + case search = "\u{e8b6}" + case searchActivity = "\u{f3e5}" + case searchCheck = "\u{f800}" + case searchCheck2 = "\u{f469}" + case searchGear = "\u{eefa}" + case searchHandsFree = "\u{e696}" + case searchInsights = "\u{f4bc}" + case searchOff = "\u{ea76}" + case seatCoolLeft = "\u{f331}" + case seatCoolRight = "\u{f330}" + case seatHeatLeft = "\u{f32f}" + case seatHeatRight = "\u{f32e}" + case seatVentLeft = "\u{f32d}" + case seatVentRight = "\u{f32c}" + case security = "\u{e32a}" + case securityKey = "\u{f503}" + case segment = "\u{e94b}" + case select = "\u{f74d}" + case selectAll = "\u{e162}" + case selectCheckBox = "\u{f1fe}" + case selectToSpeak = "\u{f7cf}" + case selectWindow = "\u{e6fa}" + case selectWindow2 = "\u{f4c8}" + case selectWindowOff = "\u{e506}" + case selfCare = "\u{f86d}" + case selfImprovement = "\u{ea78}" + case send = "\u{e163}" + case sendAndArchive = "\u{ea0c}" + case sendMoney = "\u{e8b7}" + case sendTimeExtension = "\u{eadb}" + case sensorDoor = "\u{f1b5}" + case sensorOccupied = "\u{ec10}" + case sensors = "\u{e51e}" + case sensorsKrx = "\u{f556}" + case sensorsKrxOff = "\u{f515}" + case sensorsOff = "\u{e51f}" + case sensorWindow = "\u{f1b4}" + case sentimentCalm = "\u{f6a7}" + case sentimentContent = "\u{f6a6}" + case sentimentDissatisfied = "\u{e811}" + case sentimentExcited = "\u{f6a5}" + case sentimentExtremelyDissatisfied = "\u{f194}" + case sentimentFrustrated = "\u{f6a4}" + case sentimentNeutral = "\u{e812}" + case sentimentSad = "\u{f6a3}" + case sentimentSatisfied = "\u{e813}" + case sentimentStressed = "\u{f6a2}" + case sentimentVeryDissatisfied = "\u{e814}" + case sentimentVerySatisfied = "\u{e815}" + case sentimentWorried = "\u{f6a1}" + case serif = "\u{f4ac}" + case serverPerson = "\u{f3bd}" + case serviceToolbox = "\u{e717}" + case setMeal = "\u{f1ea}" + case settings = "\u{e8b8}" + case settingsAccessibility = "\u{f05d}" + case settingsAccountBox = "\u{f835}" + case settingsAlert = "\u{f143}" + case settingsApplications = "\u{e8b9}" + case settingsBackupRestore = "\u{e8ba}" + case settingsBluetooth = "\u{e8bb}" + case settingsBrightness = "\u{e8bd}" + case settingsBRoll = "\u{f625}" + case settingsCinematicBlur = "\u{f624}" + case settingsEthernet = "\u{e8be}" + case settingsHeart = "\u{f522}" + case settingsInputAntenna = "\u{e8bf}" + case settingsInputComponent = "\u{e8c1}" + case settingsInputHdmi = "\u{e8c2}" + case settingsInputSvideo = "\u{e8c3}" + case settingsMotionMode = "\u{f833}" + case settingsNightSight = "\u{f832}" + case settingsOverscan = "\u{e8c4}" + case settingsPanorama = "\u{f831}" + case settingsPhone = "\u{e8c5}" + case settingsPhotoCamera = "\u{f834}" + case settingsPower = "\u{e8c6}" + case settingsRemote = "\u{e8c7}" + case settingsSeating = "\u{ef2d}" + case settingsSlowMotion = "\u{f623}" + case settingsSuggest = "\u{f05e}" + case settingsSystemDaydream = "\u{e1c3}" + case settingsTimelapse = "\u{f622}" + case settingsVideoCamera = "\u{f621}" + case settingsVoice = "\u{e8c8}" + case settopComponent = "\u{e2ac}" + case severeCold = "\u{ebd3}" + case shadow = "\u{e9df}" + case shadowAdd = "\u{f584}" + case shadowMinus = "\u{f583}" + case shapeLine = "\u{f8d3}" + case shapeRecognition = "\u{eb01}" + case shapes = "\u{e602}" + case share = "\u{e80d}" + case shareEta = "\u{e5f7}" + case shareLocation = "\u{f05f}" + case shareOff = "\u{f6cb}" + case shareReviews = "\u{f8a4}" + case shareWindows = "\u{f613}" + case shavedIce = "\u{f225}" + case sheetsRtl = "\u{f823}" + case shelfAutoHide = "\u{f703}" + case shelfPosition = "\u{f702}" + case shelves = "\u{f86e}" + case shield = "\u{e9e0}" + case shieldLock = "\u{f686}" + case shieldLocked = "\u{f592}" + case shieldMoon = "\u{eaa9}" + case shieldPerson = "\u{f650}" + case shieldQuestion = "\u{f529}" + case shieldToggle = "\u{f2ad}" + case shieldWatch = "\u{f30f}" + case shieldWithHeart = "\u{e78f}" + case shieldWithHouse = "\u{e78d}" + case shift = "\u{e5f2}" + case shiftLock = "\u{f7ae}" + case shiftLockOff = "\u{f483}" + case shop = "\u{e8c9}" + case shop2 = "\u{e8ca}" + case shoppingBag = "\u{f1cc}" + case shoppingBagSpeed = "\u{f39a}" + case shoppingBasket = "\u{e8cb}" + case shoppingCartCheckout = "\u{eb88}" + case shoppingCartOff = "\u{f4f7}" + case shoppingmode = "\u{efb7}" + case shortStay = "\u{e4d0}" + case shortText = "\u{e261}" + case showChart = "\u{e6e1}" + case shower = "\u{f061}" + case shuffle = "\u{e043}" + case shuffleOn = "\u{e9e1}" + case shutterSpeed = "\u{e43d}" + case shutterSpeedAdd = "\u{f57e}" + case shutterSpeedMinus = "\u{f57d}" + case sick = "\u{f220}" + case sideNavigation = "\u{e9e2}" + case signalCellular0Bar = "\u{f0a8}" + case signalCellular1Bar = "\u{f0a9}" + case signalCellular2Bar = "\u{f0aa}" + case signalCellular3Bar = "\u{f0ab}" + case signalCellular4Bar = "\u{e1c8}" + case signalCellularAdd = "\u{f7a9}" + case signalCellularAlt = "\u{e202}" + case signalCellularAlt1Bar = "\u{ebdf}" + case signalCellularAlt2Bar = "\u{ebe3}" + case signalCellularConnectedNoInternet0Bar = "\u{f0ac}" + case signalCellularConnectedNoInternet4Bar = "\u{e1cd}" + case signalCellularNodata = "\u{f062}" + case signalCellularNull = "\u{e1cf}" + case signalCellularOff = "\u{e1d0}" + case signalCellularPause = "\u{f5a7}" + case signalDisconnected = "\u{f239}" + case signalWifi0Bar = "\u{f0b0}" + case signalWifi4Bar = "\u{f065}" + case signalWifi4BarLock = "\u{e1e1}" + case signalWifiBad = "\u{f064}" + case signalWifiOff = "\u{e1da}" + case signalWifiStatusbarNotConnected = "\u{f0ef}" + case signalWifiStatusbarNull = "\u{f067}" + case signature = "\u{f74c}" + case signLanguage = "\u{ebe5}" + case signLanguage2 = "\u{f258}" + case signpost = "\u{eb91}" + case simCard = "\u{e32b}" + case simCardDownload = "\u{f068}" + case simulation = "\u{f3e1}" + case singleBed = "\u{ea48}" + case sip = "\u{f069}" + case siren = "\u{f3a7}" + case sirenCheck = "\u{f3a6}" + case sirenOpen = "\u{f3a5}" + case sirenQuestion = "\u{f3a4}" + case skateboarding = "\u{e511}" + case skeleton = "\u{f899}" + case skillet = "\u{f543}" + case skilletCooktop = "\u{f544}" + case skipNext = "\u{e044}" + case skipPrevious = "\u{e045}" + case skull = "\u{f89a}" + case skullList = "\u{f370}" + case slabSerif = "\u{f4ab}" + case sledding = "\u{e512}" + case sleep = "\u{e213}" + case sleepScore = "\u{f6b7}" + case slideLibrary = "\u{f822}" + case sliders = "\u{e9e3}" + case slideshow = "\u{e41b}" + case slowMotionVideo = "\u{e068}" + case smartButton = "\u{f1c1}" + case smartCardReader = "\u{f4a5}" + case smartCardReaderOff = "\u{f4a6}" + case smartDisplay = "\u{f06a}" + case smartOutlet = "\u{e844}" + case smartToy = "\u{f06c}" + case smbShare = "\u{f74b}" + case smokeFree = "\u{eb4a}" + case smokingRooms = "\u{eb4b}" + case sms = "\u{e625}" + case snippetFolder = "\u{f1c7}" + case snooze = "\u{e046}" + case snowboarding = "\u{e513}" + case snowing = "\u{e80f}" + case snowingHeavy = "\u{f61c}" + case snowmobile = "\u{e503}" + case snowshoeing = "\u{e514}" + case soap = "\u{f1b2}" + case soba = "\u{ef36}" + case socialDistance = "\u{e1cb}" + case socialLeaderboard = "\u{f6a0}" + case solarPower = "\u{ec0f}" + case soloDining = "\u{ef35}" + case sort = "\u{e164}" + case sortByAlpha = "\u{e053}" + case sos = "\u{ebf7}" + case soundDetectionDogBarking = "\u{f149}" + case soundDetectionGlassBreak = "\u{f14a}" + case soundDetectionLoudSound = "\u{f14b}" + case soundSampler = "\u{f6b4}" + case soupKitchen = "\u{e7d3}" + case source = "\u{f1c8}" + case sourceEnvironment = "\u{e527}" + case sourceNotes = "\u{e12d}" + case south = "\u{f1e3}" + case southAmerica = "\u{e7e4}" + case southEast = "\u{f1e4}" + case southWest = "\u{f1e5}" + case spa = "\u{eb4c}" + case spaceBar = "\u{e256}" + case spaceDashboard = "\u{e66b}" + case spatialAudio = "\u{ebeb}" + case spatialAudioOff = "\u{ebe8}" + case spatialSpeaker = "\u{f4cf}" + case spatialTracking = "\u{ebea}" + case speaker = "\u{e32d}" + case speakerGroup = "\u{e32e}" + case speakerNotes = "\u{e8cd}" + case speakerNotesOff = "\u{e92a}" + case speakerPhone = "\u{e0d2}" + case specialCharacter = "\u{f74a}" + case specificGravity = "\u{f872}" + case speechToText = "\u{f8a7}" + case speed = "\u{e9e4}" + case speed025 = "\u{f4d4}" + case speed02x = "\u{f498}" + case speed05 = "\u{f4e2}" + case speed05x = "\u{f497}" + case speed075 = "\u{f4d3}" + case speed07x = "\u{f496}" + case speed12 = "\u{f4e1}" + case speed125 = "\u{f4d2}" + case speed12x = "\u{f495}" + case speed15 = "\u{f4e0}" + case speed15x = "\u{f494}" + case speed175 = "\u{f4d1}" + case speed17x = "\u{f493}" + case speed2x = "\u{f4eb}" + case speedCamera = "\u{f470}" + case spellcheck = "\u{e8ce}" + case splitScene = "\u{f3bf}" + case splitSceneDown = "\u{f2ff}" + case splitSceneLeft = "\u{f2fe}" + case splitSceneRight = "\u{f2fd}" + case splitSceneUp = "\u{f2fc}" + case splitscreen = "\u{f06d}" + case splitscreenAdd = "\u{f4fd}" + case splitscreenBottom = "\u{f676}" + case splitscreenLandscape = "\u{f459}" + case splitscreenLeft = "\u{f675}" + case splitscreenPortrait = "\u{f458}" + case splitscreenRight = "\u{f674}" + case splitscreenTop = "\u{f673}" + case splitscreenVerticalAdd = "\u{f4fc}" + case spo2 = "\u{f6db}" + case spoke = "\u{e9a7}" + case sports = "\u{ea30}" + case sportsAndOutdoors = "\u{efb8}" + case sportsBar = "\u{f1f3}" + case sportsBaseball = "\u{ea51}" + case sportsBasketball = "\u{ea26}" + case sportsCricket = "\u{ea27}" + case sportsEsports = "\u{ea28}" + case sportsFootball = "\u{ea29}" + case sportsGolf = "\u{ea2a}" + case sportsGymnastics = "\u{ebc4}" + case sportsHandball = "\u{ea33}" + case sportsHockey = "\u{ea2b}" + case sportsKabaddi = "\u{ea34}" + case sportsMartialArts = "\u{eae9}" + case sportsMma = "\u{ea2c}" + case sportsMotorsports = "\u{ea2d}" + case sportsRugby = "\u{ea2e}" + case sportsScore = "\u{f06e}" + case sportsSoccer = "\u{ea2f}" + case sportsTennis = "\u{ea32}" + case sportsVolleyball = "\u{ea31}" + case sprinkler = "\u{e29a}" + case sprint = "\u{f81f}" + case square = "\u{eb36}" + case squareDot = "\u{f3b3}" + case squareFoot = "\u{ea49}" + case ssidChart = "\u{eb66}" + case stack = "\u{f609}" + case stackedBarChart = "\u{e9e6}" + case stackedEmail = "\u{e6c7}" + case stackedInbox = "\u{e6c9}" + case stackedLineChart = "\u{f22b}" + case stackGroup = "\u{f359}" + case stackHexagon = "\u{f41c}" + case stackOff = "\u{f608}" + case stacks = "\u{f500}" + case stackStar = "\u{f607}" + case stadiaController = "\u{f135}" + case stadium = "\u{eb90}" + case stairs = "\u{f1a9}" + case stairs2 = "\u{f46c}" + case starHalf = "\u{e839}" + case starRate = "\u{f0ec}" + case starRateHalf = "\u{ec45}" + case stars = "\u{e8d0}" + case stars2 = "\u{f31c}" + case starShine = "\u{f31d}" + case start = "\u{e089}" + case stat0 = "\u{e697}" + case stat1 = "\u{e698}" + case stat2 = "\u{e699}" + case stat3 = "\u{e69a}" + case statMinus1 = "\u{e69b}" + case statMinus2 = "\u{e69c}" + case statMinus3 = "\u{e69d}" + case steeringWheelHeat = "\u{f32b}" + case step = "\u{f6fe}" + case stepInto = "\u{f701}" + case stepOut = "\u{f700}" + case stepOver = "\u{f6ff}" + case steppers = "\u{e9e7}" + case steps = "\u{f6da}" + case stethoscope = "\u{f805}" + case stethoscopeArrow = "\u{f807}" + case stethoscopeCheck = "\u{f806}" + case stickyNote = "\u{e9e8}" + case stickyNote2 = "\u{f1fc}" + case stockMedia = "\u{f570}" + case stockpot = "\u{f545}" + case stop = "\u{e047}" + case stopCircle = "\u{ef71}" + case stopScreenShare = "\u{e0e3}" + case storage = "\u{e1db}" + case store = "\u{e8d1}" + case storefront = "\u{ea12}" + case storm = "\u{f070}" + case straight = "\u{eb95}" + case straighten = "\u{e41c}" + case strategy = "\u{f5df}" + case stream = "\u{e9e9}" + case streetview = "\u{e56e}" + case stressManagement = "\u{f6d9}" + case strikethroughS = "\u{e257}" + case strokeFull = "\u{f749}" + case strokePartial = "\u{f748}" + case stroller = "\u{f1ae}" + case style = "\u{e41d}" + case styler = "\u{e273}" + case stylus = "\u{f604}" + case stylusBrush = "\u{f366}" + case stylusFountainPen = "\u{f365}" + case stylusHighlighter = "\u{f364}" + case stylusLaserPointer = "\u{f747}" + case stylusNote = "\u{f603}" + case stylusPen = "\u{f363}" + case stylusPencil = "\u{f362}" + case subdirectoryArrowLeft = "\u{e5d9}" + case subdirectoryArrowRight = "\u{e5da}" + case subheader = "\u{e9ea}" + case subject = "\u{e8d2}" + case subscriptIcon = "\u{f111}" + case subscriptions = "\u{e064}" + case subtitles = "\u{e048}" + case subtitlesGear = "\u{f355}" + case subtitlesOff = "\u{ef72}" + case subway = "\u{e56f}" + case subwayWalk = "\u{f287}" + case summarize = "\u{f071}" + case sunny = "\u{e81a}" + case sunnySnowing = "\u{e819}" + case superscript = "\u{f112}" + case supervisedUserCircle = "\u{e939}" + case supervisedUserCircleOff = "\u{f60e}" + case supervisorAccount = "\u{e8d3}" + case support = "\u{ef73}" + case supportAgent = "\u{f0e2}" + case surfing = "\u{e515}" + case surgical = "\u{e131}" + case surroundSound = "\u{e049}" + case swapCalls = "\u{e0d7}" + case swapDrivingApps = "\u{e69e}" + case swapDrivingAppsWheel = "\u{e69f}" + case swapHoriz = "\u{e8d4}" + case swapHorizontalCircle = "\u{e933}" + case swapVerticalCircle = "\u{e8d6}" + case sweep = "\u{e6ac}" + case swipe = "\u{e9ec}" + case swipeDown = "\u{eb53}" + case swipeDownAlt = "\u{eb30}" + case swipeLeft = "\u{eb59}" + case swipeLeftAlt = "\u{eb33}" + case swipeRight = "\u{eb52}" + case swipeRightAlt = "\u{eb56}" + case swipeUp = "\u{eb2e}" + case swipeUpAlt = "\u{eb35}" + case swipeVertical = "\u{eb51}" + case switchAccess = "\u{f6fd}" + case switchAccess2 = "\u{f506}" + case switchAccess3 = "\u{f34d}" + case switchAccessShortcut = "\u{e7e1}" + case switchAccessShortcutAdd = "\u{e7e2}" + case switchAccount = "\u{e9ed}" + case switchCamera = "\u{e41e}" + case switches = "\u{e733}" + case switchIcon = "\u{e1f4}" + case switchLeft = "\u{f1d1}" + case switchRight = "\u{f1d2}" + case switchVideo = "\u{e41f}" + case swordRose = "\u{f5de}" + case swords = "\u{f889}" + case symptoms = "\u{e132}" + case synagogue = "\u{eab0}" + case sync = "\u{e627}" + case syncAlt = "\u{ea18}" + case syncArrowDown = "\u{f37c}" + case syncArrowUp = "\u{f37b}" + case syncDesktop = "\u{f41a}" + case syncDisabled = "\u{e628}" + case syncLock = "\u{eaee}" + case syncProblem = "\u{e629}" + case syncSavedLocally = "\u{f820}" + case syncSavedLocallyOff = "\u{f264}" + case syringe = "\u{e133}" + case systemUpdateAlt = "\u{e8d7}" + case tab = "\u{e8d8}" + case tabClose = "\u{f745}" + case tabCloseInactive = "\u{f3d0}" + case tabCloseRight = "\u{f746}" + case tabDuplicate = "\u{f744}" + case tabGroup = "\u{f743}" + case tabInactive = "\u{f43b}" + case table = "\u{f191}" + case tableBar = "\u{ead2}" + case tableChart = "\u{e265}" + case tableChartView = "\u{f6ef}" + case tableConvert = "\u{f3c7}" + case tableEdit = "\u{f3c6}" + case tableEye = "\u{f466}" + case tableLamp = "\u{e1f2}" + case tableLarge = "\u{f299}" + case tableRestaurant = "\u{eac6}" + case tableRows = "\u{f101}" + case tableRowsNarrow = "\u{f73f}" + case tableSign = "\u{ef2c}" + case tablet = "\u{e32f}" + case tabletAndroid = "\u{e330}" + case tabletCamera = "\u{f44d}" + case tabletMac = "\u{e331}" + case tableView = "\u{f1be}" + case tabMove = "\u{f742}" + case tabNewRight = "\u{f741}" + case tabRecent = "\u{f740}" + case tabs = "\u{e9ee}" + case tabSearch = "\u{f2f2}" + case tabUnselected = "\u{e8d9}" + case tactic = "\u{f564}" + case tag = "\u{e9ef}" + case takeoutDining = "\u{ea74}" + case takeoutDining2 = "\u{ef34}" + case tamperDetectionOff = "\u{e82e}" + case tamperDetectionOn = "\u{f8c8}" + case tapas = "\u{f1e9}" + case target = "\u{e719}" + case task = "\u{f075}" + case taskAlt = "\u{e2e6}" + case tatamiSeat = "\u{ef33}" + case taunt = "\u{f69f}" + case taxiAlert = "\u{ef74}" + case teamDashboard = "\u{e013}" + case templeBuddhist = "\u{eab3}" + case templeHindu = "\u{eaaf}" + case tempPreferencesCustom = "\u{f8c9}" + case tempPreferencesEco = "\u{f8ca}" + case tenancy = "\u{f0e3}" + case terminal = "\u{eb8e}" + case textAd = "\u{e728}" + case textCompare = "\u{f3c5}" + case textDecrease = "\u{eadd}" + case textFields = "\u{e262}" + case textFieldsAlt = "\u{e9f1}" + case textFormat = "\u{e165}" + case textIncrease = "\u{eae2}" + case textRotateUp = "\u{e93a}" + case textRotateVertical = "\u{e93b}" + case textRotationAngledown = "\u{e93c}" + case textRotationAngleup = "\u{e93d}" + case textRotationDown = "\u{e93e}" + case textRotationNone = "\u{e93f}" + case textSelectEnd = "\u{f73e}" + case textSelectJumpToBeginning = "\u{f73d}" + case textSelectJumpToEnd = "\u{f73c}" + case textSelectMoveBackCharacter = "\u{f73b}" + case textSelectMoveBackWord = "\u{f73a}" + case textSelectMoveDown = "\u{f739}" + case textSelectMoveForwardCharacter = "\u{f738}" + case textSelectMoveForwardWord = "\u{f737}" + case textSelectMoveUp = "\u{f736}" + case textSelectStart = "\u{f735}" + case textSnippet = "\u{f1c6}" + case textToSpeech = "\u{f1bc}" + case textUp = "\u{f49e}" + case texture = "\u{e421}" + case textureAdd = "\u{f57c}" + case textureMinus = "\u{f57b}" + case theaterComedy = "\u{ea66}" + case thermometer = "\u{e846}" + case thermometerAdd = "\u{f582}" + case thermometerGain = "\u{f6d8}" + case thermometerLoss = "\u{f6d7}" + case thermometerMinus = "\u{f581}" + case thermostat = "\u{f076}" + case thermostatArrowDown = "\u{f37a}" + case thermostatArrowUp = "\u{f379}" + case thermostatAuto = "\u{f077}" + case thermostatCarbon = "\u{f178}" + case thingsToDo = "\u{eb2a}" + case threadUnread = "\u{f4f9}" + case threatIntelligence = "\u{eaed}" + case thumbDown = "\u{f578}" + case thumbnailBar = "\u{f734}" + case thumbsUpDouble = "\u{eefc}" + case thumbsUpDown = "\u{e8dd}" + case thumbUp = "\u{f577}" + case thunderstorm = "\u{ebdb}" + case tibia = "\u{f89b}" + case tibiaAlt = "\u{f89c}" + case tileLarge = "\u{f3c3}" + case tileMedium = "\u{f3c2}" + case tileSmall = "\u{f3c1}" + case timeAuto = "\u{f0e4}" + case timelapse = "\u{e422}" + case timeline = "\u{e922}" + case timer = "\u{e425}" + case timer1 = "\u{f2af}" + case timer10 = "\u{e423}" + case timer10Alt1 = "\u{efbf}" + case timer10Select = "\u{f07a}" + case timer2 = "\u{f2ae}" + case timer3 = "\u{e424}" + case timer3Alt1 = "\u{efc0}" + case timer3Select = "\u{f07b}" + case timer5 = "\u{f4b1}" + case timer5Shutter = "\u{f4b2}" + case timerArrowDown = "\u{f378}" + case timerArrowUp = "\u{f377}" + case timerOff = "\u{e426}" + case timerPause = "\u{f4bb}" + case timerPlay = "\u{f4ba}" + case tipsAndUpdates = "\u{e79a}" + case tireRepair = "\u{ebc8}" + case title = "\u{e264}" + case titlecase = "\u{f489}" + case toast = "\u{efc1}" + case toc = "\u{e8de}" + case today = "\u{e8df}" + case toggleOff = "\u{e9f5}" + case toggleOn = "\u{e9f6}" + case token = "\u{ea25}" + case toll = "\u{e8e0}" + case tonality = "\u{e427}" + case tonality2 = "\u{f2b4}" + case toolbar = "\u{e9f7}" + case toolsFlatHead = "\u{f8cb}" + case toolsInstallationKit = "\u{e2ab}" + case toolsLadder = "\u{e2cb}" + case toolsLevel = "\u{e77b}" + case toolsPhillips = "\u{f8cc}" + case toolsPliersWireStripper = "\u{e2aa}" + case toolsPowerDrill = "\u{e1e9}" + case tooltip = "\u{e9f8}" + case tooltip2 = "\u{f3ed}" + case topPanelClose = "\u{f733}" + case topPanelOpen = "\u{f732}" + case tornado = "\u{e199}" + case totalDissolvedSolids = "\u{f877}" + case touchApp = "\u{e913}" + case touchDouble = "\u{f38b}" + case touchLong = "\u{f38a}" + case touchpadMouse = "\u{f687}" + case touchpadMouseOff = "\u{f4e6}" + case touchTriple = "\u{f389}" + case tour = "\u{ef75}" + case toys = "\u{e332}" + case toysAndGames = "\u{efc2}" + case toysFan = "\u{f887}" + case trackChanges = "\u{e8e1}" + case trackpadInput = "\u{f4c7}" + case trackpadInput2 = "\u{f409}" + case trackpadInput3 = "\u{f408}" + case traffic = "\u{e565}" + case trafficJam = "\u{f46f}" + case trailLength = "\u{eb5e}" + case trailLengthMedium = "\u{eb63}" + case trailLengthShort = "\u{eb6d}" + case train = "\u{e570}" + case tram = "\u{e571}" + case transcribe = "\u{f8ec}" + case transferWithinAStation = "\u{e572}" + case transform = "\u{e428}" + case transgender = "\u{e58d}" + case transitEnterexit = "\u{e579}" + case transitionChop = "\u{f50e}" + case transitionDissolve = "\u{f50d}" + case transitionFade = "\u{f50c}" + case transitionPush = "\u{f50b}" + case transitionSlide = "\u{f50a}" + case transitTicket = "\u{f3f1}" + case translate = "\u{e8e2}" + case translateIndic = "\u{f263}" + case transportation = "\u{e21d}" + case travelExplore = "\u{e2db}" + case travelLuggageAndBags = "\u{efc3}" + case trendingDown = "\u{e8e3}" + case trendingFlat = "\u{e8e4}" + case trendingUp = "\u{e8e5}" + case trip = "\u{e6fb}" + case tripOrigin = "\u{e57b}" + case trolley = "\u{f86b}" + case trolleyCableCar = "\u{f46e}" + case troubleshoot = "\u{e1d2}" + case tsunami = "\u{ebd8}" + case tsv = "\u{e6d6}" + case tty = "\u{f1aa}" + case tune = "\u{e429}" + case turnLeft = "\u{eba6}" + case turnRight = "\u{ebab}" + case turnSharpLeft = "\u{eba7}" + case turnSharpRight = "\u{ebaa}" + case turnSlightLeft = "\u{eba4}" + case turnSlightRight = "\u{eb9a}" + case tvDisplays = "\u{f3ec}" + case tvGen = "\u{e830}" + case tvGuide = "\u{e1dc}" + case tvNext = "\u{f3eb}" + case tvOff = "\u{e647}" + case tvOptionsEditChannels = "\u{e1dd}" + case tvOptionsInputSettings = "\u{e1de}" + case tvRemote = "\u{f5d9}" + case tvSignin = "\u{e71b}" + case tvWithAssistant = "\u{e785}" + case twoPager = "\u{f51f}" + case twoPagerStore = "\u{f3c4}" + case twoWheeler = "\u{e9f9}" + case typeSpecimen = "\u{f8f0}" + case udon = "\u{ef32}" + case ulnaRadius = "\u{f89d}" + case ulnaRadiusAlt = "\u{f89e}" + case umbrella = "\u{f1ad}" + case unarchive = "\u{e169}" + case undo = "\u{e166}" + case unfoldLess = "\u{e5d6}" + case unfoldLessDouble = "\u{f8cf}" + case unfoldMore = "\u{e5d7}" + case unfoldMoreDouble = "\u{f8d0}" + case ungroup = "\u{f731}" + case universalCurrency = "\u{e9fa}" + case universalCurrencyAlt = "\u{e734}" + case universalLocal = "\u{e9fb}" + case unknown5 = "\u{e6a5}" + case unknownDocument = "\u{f804}" + case unknownMed = "\u{eabd}" + case unlicense = "\u{eb05}" + case unpavedRoad = "\u{f46d}" + case unpublished = "\u{f236}" + case unsubscribe = "\u{e0eb}" + case upcoming = "\u{f07e}" + case update = "\u{e923}" + case updateDisabled = "\u{e075}" + case upgrade = "\u{f0fb}" + case upiPay = "\u{f3cf}" + case upload2 = "\u{f521}" + case uploadFile = "\u{e9fc}" + case uppercase = "\u{f488}" + case urology = "\u{e137}" + case usb = "\u{e1e0}" + case usbOff = "\u{e4fa}" + case userAttributes = "\u{e708}" + case uTurnLeft = "\u{eba1}" + case uTurnRight = "\u{eba2}" + case vaccines = "\u{e138}" + case vacuum = "\u{efc5}" + case valve = "\u{e224}" + case vapeFree = "\u{ebc6}" + case vapingRooms = "\u{ebcf}" + case variableAdd = "\u{f51e}" + case variableInsert = "\u{f51d}" + case variableRemove = "\u{f51c}" + case variables = "\u{f851}" + case ventilator = "\u{e139}" + case verifiedOff = "\u{f30e}" + case verticalAlignBottom = "\u{e258}" + case verticalAlignCenter = "\u{e259}" + case verticalAlignTop = "\u{e25a}" + case verticalDistribute = "\u{e076}" + case verticalShades = "\u{ec0e}" + case verticalShadesClosed = "\u{ec0d}" + case verticalSplit = "\u{e949}" + case videoCall = "\u{e070}" + case videocam = "\u{e04b}" + case videocamAlert = "\u{f390}" + case videoCameraBack = "\u{f07f}" + case videoCameraBackAdd = "\u{f40c}" + case videoCameraFront = "\u{f080}" + case videoCameraFrontOff = "\u{f83b}" + case videocamOff = "\u{e04c}" + case videoChat = "\u{f8a0}" + case videoFile = "\u{eb87}" + case videogameAsset = "\u{e338}" + case videogameAssetOff = "\u{e500}" + case videoLabel = "\u{e071}" + case videoLibrary = "\u{e04a}" + case videoSearch = "\u{efc6}" + case videoSettings = "\u{ea75}" + case videoStable = "\u{f081}" + case viewAgenda = "\u{e8e9}" + case viewApps = "\u{f376}" + case viewArray = "\u{e8ea}" + case viewCarousel = "\u{e8eb}" + case viewColumn = "\u{e8ec}" + case viewColumn2 = "\u{f847}" + case viewComfy = "\u{e42a}" + case viewComfyAlt = "\u{eb73}" + case viewCompact = "\u{e42b}" + case viewCompactAlt = "\u{eb74}" + case viewCozy = "\u{eb75}" + case viewDay = "\u{e8ed}" + case viewHeadline = "\u{e8ee}" + case viewInAr = "\u{efc9}" + case viewInArOff = "\u{f61b}" + case viewKanban = "\u{eb7f}" + case viewList = "\u{e8ef}" + case viewModule = "\u{e8f0}" + case viewObjectTrack = "\u{f432}" + case viewQuilt = "\u{e8f1}" + case viewRealSize = "\u{f4c2}" + case viewSidebar = "\u{f114}" + case viewStream = "\u{e8f2}" + case viewTimeline = "\u{eb85}" + case viewWeek = "\u{e8f3}" + case vignette = "\u{e435}" + case vignette2 = "\u{f2b3}" + case villa = "\u{e586}" + case visibilityLock = "\u{f653}" + case visibilityOff = "\u{e8f5}" + case vitals = "\u{e13b}" + case vitalSigns = "\u{e650}" + case vo2Max = "\u{f4aa}" + case voiceChat = "\u{e62e}" + case voicemail = "\u{e0d9}" + case voicemail2 = "\u{f352}" + case voiceOverOff = "\u{e94a}" + case voiceSelection = "\u{f58a}" + case voiceSelectionOff = "\u{f42c}" + case volcano = "\u{ebda}" + case volumeDown = "\u{e04d}" + case volumeDownAlt = "\u{e79c}" + case volumeMute = "\u{e04e}" + case volumeOff = "\u{e04f}" + case volumeUp = "\u{e050}" + case volunteerActivism = "\u{ea70}" + case votingChip = "\u{f852}" + case vpnKey = "\u{e0da}" + case vpnKeyAlert = "\u{f6cc}" + case vpnKeyOff = "\u{eb7a}" + case vpnLock = "\u{e62f}" + case vpnLock2 = "\u{f350}" + case vr180Create2d = "\u{efca}" + case vr180Create2dOff = "\u{f571}" + case vrpano = "\u{f082}" + case wallArt = "\u{efcb}" + case wallet = "\u{f8ff}" + case wallLamp = "\u{e2b4}" + case wallpaper = "\u{e1bc}" + case wallpaperSlideshow = "\u{f672}" + case wandShine = "\u{f31f}" + case wandStars = "\u{f31e}" + case ward = "\u{e13c}" + case warehouse = "\u{ebb8}" + case warningOff = "\u{f7ad}" + case wash = "\u{f1b1}" + case washoku = "\u{f280}" + case watch = "\u{e334}" + case watchArrow = "\u{f2ca}" + case watchButtonPress = "\u{f6aa}" + case watchCheck = "\u{f468}" + case watchOff = "\u{eae3}" + case watchScreentime = "\u{f6ae}" + case watchVibration = "\u{f467}" + case watchWake = "\u{f6a9}" + case water = "\u{f084}" + case waterBottle = "\u{f69d}" + case waterBottleLarge = "\u{f69e}" + case waterDamage = "\u{f203}" + case waterDo = "\u{f870}" + case waterDrop = "\u{e798}" + case waterEc = "\u{f875}" + case waterfallChart = "\u{ea00}" + case waterFull = "\u{f6d6}" + case waterHeater = "\u{e284}" + case waterLock = "\u{f6ad}" + case waterLoss = "\u{f6d5}" + case waterLux = "\u{f874}" + case waterMedium = "\u{f6d4}" + case waterOrp = "\u{f878}" + case waterPh = "\u{f87a}" + case waterPump = "\u{f5d8}" + case waterVoc = "\u{f87b}" + case waves = "\u{e176}" + case wavingHand = "\u{e766}" + case wbAuto = "\u{e42c}" + case wbIncandescent = "\u{e42e}" + case wbShade = "\u{ea01}" + case wbSunny = "\u{e430}" + case wbTwilight = "\u{e1c6}" + case wc = "\u{e63d}" + case weatherHail = "\u{f67f}" + case weatherMix = "\u{f60b}" + case weatherSnowy = "\u{e2cd}" + case web = "\u{e051}" + case webAsset = "\u{e069}" + case webhook = "\u{eb92}" + case webStories = "\u{e595}" + case webTraffic = "\u{ea03}" + case weekend = "\u{e16b}" + case weight = "\u{e13d}" + case west = "\u{f1e6}" + case whatshot = "\u{e80e}" + case wheelchairPickup = "\u{f1ab}" + case whereToVote = "\u{e177}" + case widgetMedium = "\u{f3ba}" + case widgets = "\u{e1bd}" + case widgetSmall = "\u{f3b9}" + case widgetWidth = "\u{f3b8}" + case width = "\u{f730}" + case widthFull = "\u{f8f5}" + case widthNormal = "\u{f8f6}" + case widthWide = "\u{f8f7}" + case wifi = "\u{e63e}" + case wifi1Bar = "\u{e4ca}" + case wifi2Bar = "\u{e4d9}" + case wifiAdd = "\u{f7a8}" + case wifiCalling = "\u{ef77}" + case wifiCalling1 = "\u{f0e7}" + case wifiCalling2 = "\u{f0f6}" + case wifiCallingBar1 = "\u{f44c}" + case wifiCallingBar2 = "\u{f44b}" + case wifiCallingBar3 = "\u{f44a}" + case wifiChannel = "\u{eb6a}" + case wifiFind = "\u{eb31}" + case wifiHome = "\u{f671}" + case wifiNotification = "\u{f670}" + case wifiOff = "\u{e648}" + case wifiPassword = "\u{eb6b}" + case wifiProtectedSetup = "\u{f0fc}" + case wifiProxy = "\u{f7a7}" + case wifiTethering = "\u{e1e2}" + case wifiTetheringError = "\u{ead9}" + case window = "\u{f088}" + case windowClosed = "\u{e77e}" + case windowOpen = "\u{e78c}" + case windowSensor = "\u{e2bb}" + case windPower = "\u{ec0c}" + case windshieldDefrostAuto = "\u{f248}" + case windshieldDefrostFront = "\u{f32a}" + case windshieldDefrostRear = "\u{f329}" + case windshieldHeatFront = "\u{f328}" + case wineBar = "\u{f1e8}" + case woman = "\u{e13e}" + case woman2 = "\u{f8e7}" + case work = "\u{e943}" + case workAlert = "\u{f5f7}" + case workHistory = "\u{ec09}" + case workOff = "\u{e942}" + case workspacePremium = "\u{e7af}" + case workspaces = "\u{ea0f}" + case workUpdate = "\u{f5f8}" + case woundsInjuries = "\u{e13f}" + case wrapText = "\u{e25b}" + case wrist = "\u{f69c}" + case wrongLocation = "\u{ef78}" + case wysiwyg = "\u{f1c3}" + case yakitori = "\u{ef31}" + case yard = "\u{f089}" + case yoshoku = "\u{f27f}" + case yourTrips = "\u{eb2b}" + case youtubeActivity = "\u{f85a}" + case youtubeSearchedFor = "\u{e8fa}" + case zonePersonAlert = "\u{e781}" + case zonePersonIdle = "\u{e77a}" + case zonePersonUrgent = "\u{e788}" + case zoomIn = "\u{e8ff}" + case zoomInMap = "\u{eb2d}" + case zoomOut = "\u{e900}" + case zoomOutMap = "\u{e56b}" +} + +// MARK: - Icon aliases (different names, same icon) +public extension MaterialSymbolEnum { + static var accessAlarms: MaterialSymbolEnum { .accessAlarm } + static var accessTimeFilled: MaterialSymbolEnum { .accessTime } + static var accountCircleFilled: MaterialSymbolEnum { .accountCircle } + static var addchart: MaterialSymbolEnum { .addChart } + static var addCircleOutline: MaterialSymbolEnum { .addCircle } + static var addIcCall: MaterialSymbolEnum { .addCall } + static var airwave: MaterialSymbolEnum { .airware } + static var alarm: MaterialSymbolEnum { .accessAlarm } + static var alarmAdd: MaterialSymbolEnum { .addAlarm } + static var autoFixHigh: MaterialSymbolEnum { .autoFix } + static var battery20: MaterialSymbolEnum { .battery1Bar } + static var battery30: MaterialSymbolEnum { .battery2Bar } + static var battery50: MaterialSymbolEnum { .battery3Bar } + static var battery60: MaterialSymbolEnum { .battery4Bar } + static var battery80: MaterialSymbolEnum { .battery5Bar } + static var battery90: MaterialSymbolEnum { .battery6Bar } + static var batteryStd: MaterialSymbolEnum { .batteryFull } + static var batteryVeryLow: MaterialSymbolEnum { .badgeCriticalBattery } + static var bluetoothSearching: MaterialSymbolEnum { .bluetoothAudio } + static var bookmarkBorder: MaterialSymbolEnum { .bookmark } + static var callEndAlt: MaterialSymbolEnum { .callEnd } + static var chatBubbleOutline: MaterialSymbolEnum { .chatBubble } + static var checkCircleFilled: MaterialSymbolEnum { .checkCircle } + static var checkCircleOutline: MaterialSymbolEnum { .checkCircle } + static var classIcon: MaterialSymbolEnum { .book } + static var clearNight: MaterialSymbolEnum { .bedtime } + static var close: MaterialSymbolEnum { .clear } + static var closedCaptionOff: MaterialSymbolEnum { .closedCaption } + static var cloudQueue: MaterialSymbolEnum { .cloud } + static var cloudy: MaterialSymbolEnum { .cloud } + static var cloudyFilled: MaterialSymbolEnum { .cloud } + static var communitiesFilled: MaterialSymbolEnum { .communities } + static var contactPhoneFilled: MaterialSymbolEnum { .contactPhone } + static var controlPoint: MaterialSymbolEnum { .addCircle } + static var cropSquare: MaterialSymbolEnum { .cropDin } + static var dataUsage: MaterialSymbolEnum { .dataSaverOff } + static var deleteOutline: MaterialSymbolEnum { .delete } + static var directionsBoatFilled: MaterialSymbolEnum { .directionsBoat } + static var directionsBusFilled: MaterialSymbolEnum { .directionsBus } + static var directionsCarFilled: MaterialSymbolEnum { .directionsCar } + static var directionsRailwayFilled: MaterialSymbolEnum { .directionsRailway } + static var directionsSubwayFilled: MaterialSymbolEnum { .directionsSubway } + static var directionsTransit: MaterialSymbolEnum { .directionsSubway } + static var directionsTransitFilled: MaterialSymbolEnum { .directionsSubway } + static var doDisturb: MaterialSymbolEnum { .block } + static var domain: MaterialSymbolEnum { .business } + static var doNotDisturb: MaterialSymbolEnum { .doDisturbAlt } + static var doNotDisturbAlt: MaterialSymbolEnum { .block } + static var doNotDisturbOff: MaterialSymbolEnum { .doDisturbOff } + static var doNotDisturbOn: MaterialSymbolEnum { .doDisturbOn } + static var driveEta: MaterialSymbolEnum { .directionsCar } + static var driveFileMoveOutline: MaterialSymbolEnum { .driveFileMove } + static var driveFileMoveRtl: MaterialSymbolEnum { .driveFileMove } + static var driveFusiontable: MaterialSymbolEnum { .bidLandscape } + static var edit: MaterialSymbolEnum { .create } + static var emojiFlags: MaterialSymbolEnum { .assistantPhoto } + static var errorCircleRounded: MaterialSymbolEnum { .error } + static var errorOutline: MaterialSymbolEnum { .error } + static var evStation: MaterialSymbolEnum { .evCharger } + static var expensionPanels: MaterialSymbolEnum { .expansionPanels } + static var faceUnlock: MaterialSymbolEnum { .face } + static var favoriteBorder: MaterialSymbolEnum { .favorite } + static var feedback: MaterialSymbolEnum { .announcement } + static var fileDownload: MaterialSymbolEnum { .download } + static var fileDownloadDone: MaterialSymbolEnum { .downloadDone } + static var filter: MaterialSymbolEnum { .collections } + static var flag: MaterialSymbolEnum { .assistantPhoto } + static var flagFilled: MaterialSymbolEnum { .assistantPhoto } + static var fluorescent: MaterialSymbolEnum { .flourescent } + static var games: MaterialSymbolEnum { .gamepad } + static var getApp: MaterialSymbolEnum { .download } + static var googlePlusReshare: MaterialSymbolEnum { .forward } + static var headset: MaterialSymbolEnum { .headphones } + static var helpOutline: MaterialSymbolEnum { .help } + static var highlightOff: MaterialSymbolEnum { .cancel } + static var history: MaterialSymbolEnum { .deviceReset } + static var homeFilled: MaterialSymbolEnum { .home } + static var image: MaterialSymbolEnum { .cropOriginal } + static var inkSelection: MaterialSymbolEnum { .highlightAlt } + static var insertChart: MaterialSymbolEnum { .assessment } + static var insertChartFilled: MaterialSymbolEnum { .assessment } + static var insertChartOutlined: MaterialSymbolEnum { .assessment } + static var insertComment: MaterialSymbolEnum { .comment } + static var insertDriveFile: MaterialSymbolEnum { .draft } + static var insertEmoticon: MaterialSymbolEnum { .emojiEmotions } + static var insertInvitation: MaterialSymbolEnum { .event } + static var insertPhoto: MaterialSymbolEnum { .cropOriginal } + static var installMobile: MaterialSymbolEnum { .appPromo } + static var iso: MaterialSymbolEnum { .exposure } + static var joinFull: MaterialSymbolEnum { .join } + static var keepPin: MaterialSymbolEnum { .keep } + static var labelImportantOutline: MaterialSymbolEnum { .labelImportant } + static var labelOutline: MaterialSymbolEnum { .label } + static var laptop: MaterialSymbolEnum { .computer } + static var lens: MaterialSymbolEnum { .brightness1 } + static var lightbulbOutline: MaterialSymbolEnum { .lightbulb } + static var link: MaterialSymbolEnum { .insertLink } + static var localAirport: MaterialSymbolEnum { .airplanemodeActive } + static var localCafe: MaterialSymbolEnum { .freeBreakfast } + static var localHotel: MaterialSymbolEnum { .hotel } + static var localPhone: MaterialSymbolEnum { .call } + static var localPlay: MaterialSymbolEnum { .localActivity } + static var locationDisabled: MaterialSymbolEnum { .gpsOff } + static var locationOn: MaterialSymbolEnum { .fmdGood } + static var locationPin: MaterialSymbolEnum { .fmdGood } + static var locationSearching: MaterialSymbolEnum { .gpsNotFixed } + static var lock: MaterialSymbolEnum { .https } + static var lockOutline: MaterialSymbolEnum { .https } + static var loop: MaterialSymbolEnum { .autorenew } + static var mail: MaterialSymbolEnum { .email } + static var mailOutline: MaterialSymbolEnum { .email } + static var mapsHomeWork: MaterialSymbolEnum { .homeWork } + static var markunread: MaterialSymbolEnum { .email } + static var message: MaterialSymbolEnum { .chat } + static var mic: MaterialSymbolEnum { .keyboardVoice } + static var micNone: MaterialSymbolEnum { .keyboardVoice } + static var missedVideoCallFilled: MaterialSymbolEnum { .missedVideoCall } + static var mobileArrowDown: MaterialSymbolEnum { .appPromo } + static var mobileArrowUpRight: MaterialSymbolEnum { .addToHomeScreen } + static var mobileBlock: MaterialSymbolEnum { .appBlocking } + static var mobileCameraFront: MaterialSymbolEnum { .cameraFront } + static var mobileCameraRear: MaterialSymbolEnum { .cameraRear } + static var mobileCharge: MaterialSymbolEnum { .chargingStation } + static var mobileCode: MaterialSymbolEnum { .developerMode } + static var mobileFriendly: MaterialSymbolEnum { .mobileCheck } + static var mobileGear: MaterialSymbolEnum { .appSettingsAlt } + static var mobileQuestion: MaterialSymbolEnum { .deviceUnknown } + static var mobileScreenShare: MaterialSymbolEnum { .appShortcut } + static var mobileSensorHi: MaterialSymbolEnum { .edgesensorHigh } + static var mobileSensorLo: MaterialSymbolEnum { .edgesensorLow } + static var mobileShare: MaterialSymbolEnum { .appShortcut } + static var mobileText: MaterialSymbolEnum { .adUnits } + static var mobileText2: MaterialSymbolEnum { .aod } + static var mobileTicket: MaterialSymbolEnum { .bookOnline } + static var mode: MaterialSymbolEnum { .create } + static var modeEdit: MaterialSymbolEnum { .create } + static var modeEditOutline: MaterialSymbolEnum { .create } + static var modeNight: MaterialSymbolEnum { .brightness2 } + static var moneyOffCsred: MaterialSymbolEnum { .moneyOff } + static var mood: MaterialSymbolEnum { .emojiEmotions } + static var moped: MaterialSymbolEnum { .deliveryDining } + static var motionPhotosPaused: MaterialSymbolEnum { .motionPhotosPause } + static var movieCreation: MaterialSymbolEnum { .movie } + static var musicNote: MaterialSymbolEnum { .audiotrack } + static var myLocation: MaterialSymbolEnum { .gpsFixed } + static var navigateBefore: MaterialSymbolEnum { .chevronLeft } + static var navigateNext: MaterialSymbolEnum { .chevronRight } + static var nestGaleWifi: MaterialSymbolEnum { .googleWifi } + static var nestLocatorTag: MaterialSymbolEnum { .locatorTag } + static var nestRemote: MaterialSymbolEnum { .googleTvRemote } + static var nestTag: MaterialSymbolEnum { .locatorTag } + static var nestWifiPointVento: MaterialSymbolEnum { .nestWifiPoint } + static var nestWifiRouter: MaterialSymbolEnum { .nestWifiMistral } + static var nightlightRound: MaterialSymbolEnum { .nightlight } + static var noEncryptionGmailerrorred: MaterialSymbolEnum { .noEncryption } + static var note: MaterialSymbolEnum { .draft } + static var notificationsNone: MaterialSymbolEnum { .notifications } + static var notInterested: MaterialSymbolEnum { .block } + static var offlineShare: MaterialSymbolEnum { .mobileShareStack } + static var ondemandVideo: MaterialSymbolEnum { .liveTv } + static var openInNew: MaterialSymbolEnum { .launch } + static var openInPhone: MaterialSymbolEnum { .mobileArrowRight } + static var outlinedFlag: MaterialSymbolEnum { .assistantPhoto } + static var palette: MaterialSymbolEnum { .colorLens } + static var partlyCloudyNight: MaterialSymbolEnum { .nightsStay } + static var pauseCircleFilled: MaterialSymbolEnum { .pauseCircle } + static var pauseCircleOutline: MaterialSymbolEnum { .pauseCircle } + static var payment: MaterialSymbolEnum { .creditCard } + static var people: MaterialSymbolEnum { .group } + static var peopleAlt: MaterialSymbolEnum { .group } + static var peopleOutline: MaterialSymbolEnum { .group } + static var permDeviceInformation: MaterialSymbolEnum { .mobileInfo } + static var person: MaterialSymbolEnum { .permIdentity } + static var personAddAlt: MaterialSymbolEnum { .personAdd } + static var personFilled: MaterialSymbolEnum { .permIdentity } + static var personOutline: MaterialSymbolEnum { .permIdentity } + static var phone: MaterialSymbolEnum { .call } + static var phoneAlt: MaterialSymbolEnum { .call } + static var phoneAndroid: MaterialSymbolEnum { .mobile2 } + static var phoneIphone: MaterialSymbolEnum { .mobile3 } + static var phonelink: MaterialSymbolEnum { .devices } + static var phonelinkErase: MaterialSymbolEnum { .mobileCancel } + static var phonelinkLock: MaterialSymbolEnum { .mobileLockPortrait } + static var phonelinkOff: MaterialSymbolEnum { .devicesOff } + static var phonelinkRing: MaterialSymbolEnum { .mobileSound } + static var phonelinkRingOff: MaterialSymbolEnum { .mobileSoundOff } + static var phonelinkSetup: MaterialSymbolEnum { .appSettingsAlt } + static var photoCamera: MaterialSymbolEnum { .cameraAlt } + static var photoSizeSelectActual: MaterialSymbolEnum { .photo } + static var pieChartFilled: MaterialSymbolEnum { .pieChart } + static var pieChartOutline: MaterialSymbolEnum { .pieChart } + static var pieChartOutlined: MaterialSymbolEnum { .pieChart } + static var place: MaterialSymbolEnum { .fmdGood } + static var playMusic: MaterialSymbolEnum { .genres } + static var plusOne: MaterialSymbolEnum { .exposurePlus1 } + static var poll: MaterialSymbolEnum { .assessment } + static var portrait: MaterialSymbolEnum { .accountBox } + static var powerSettingsNew: MaterialSymbolEnum { .powerRounded } + static var pregnantWoman: MaterialSymbolEnum { .pregnancy } + static var print: MaterialSymbolEnum { .localPrintshop } + static var queryBuilder: MaterialSymbolEnum { .accessTime } + static var questionAnswer: MaterialSymbolEnum { .forum } + static var queue: MaterialSymbolEnum { .libraryAdd } + static var quietTime: MaterialSymbolEnum { .bedtime } + static var quietTimeActive: MaterialSymbolEnum { .bedtimeOff } + static var redeem: MaterialSymbolEnum { .cardGiftcard } + static var remindersAlt: MaterialSymbolEnum { .reminder } + static var removeCircle: MaterialSymbolEnum { .doDisturbOn } + static var removeCircleOutline: MaterialSymbolEnum { .doDisturbOn } + static var reportGmailerrorred: MaterialSymbolEnum { .report } + static var restaurantMenu: MaterialSymbolEnum { .localDining } + static var restore: MaterialSymbolEnum { .deviceReset } + static var ringVolumeFilled: MaterialSymbolEnum { .ringVolume } + static var room: MaterialSymbolEnum { .fmdGood } + static var saveAlt: MaterialSymbolEnum { .download } + static var schedule: MaterialSymbolEnum { .accessTime } + static var screenLockLandscape: MaterialSymbolEnum { .mobileLockLandscape } + static var screenLockPortrait: MaterialSymbolEnum { .mobileLockPortrait } + static var screenLockRotation: MaterialSymbolEnum { .mobileRotateLock } + static var screenRotation: MaterialSymbolEnum { .mobileRotate } + static var sdStorage: MaterialSymbolEnum { .sdCard } + static var securityUpdate: MaterialSymbolEnum { .appPromo } + static var securityUpdateGood: MaterialSymbolEnum { .mobileCheck } + static var securityUpdateWarning: MaterialSymbolEnum { .mobileAlert } + static var sell: MaterialSymbolEnum { .localOffer } + static var sendToMobile: MaterialSymbolEnum { .mobileArrowRight } + static var sentimentSatisfiedAlt: MaterialSymbolEnum { .sentimentSatisfied } + static var settingsCell: MaterialSymbolEnum { .mobileMenu } + static var settingsInputComposite: MaterialSymbolEnum { .settingsInputComponent } + static var shoppingCart: MaterialSymbolEnum { .localGroceryStore } + static var shopTwo: MaterialSymbolEnum { .shop2 } + static var shortcut: MaterialSymbolEnum { .forward } + static var signalCellularNoSim: MaterialSymbolEnum { .noSim } + static var signalWifiConnectedNoInternet4: MaterialSymbolEnum { .signalWifiBad } + static var signalWifiStatusbar4Bar: MaterialSymbolEnum { .signalWifi4Bar } + static var simCardAlert: MaterialSymbolEnum { .sdCardAlert } + static var smartphone: MaterialSymbolEnum { .mobile } + static var smartphoneCamera: MaterialSymbolEnum { .mobileCamera } + static var smartScreen: MaterialSymbolEnum { .mobileDots } + static var smsFailed: MaterialSymbolEnum { .announcement } + static var star: MaterialSymbolEnum { .grade } + static var starBorder: MaterialSymbolEnum { .grade } + static var starBorderPurple500: MaterialSymbolEnum { .grade } + static var starOutline: MaterialSymbolEnum { .grade } + static var starPurple500: MaterialSymbolEnum { .grade } + static var stayCurrentLandscape: MaterialSymbolEnum { .mobileLandscape } + static var stayCurrentPortrait: MaterialSymbolEnum { .mobile } + static var stayPrimaryLandscape: MaterialSymbolEnum { .mobileLandscape } + static var stayPrimaryPortrait: MaterialSymbolEnum { .mobileAlert } + static var storeMallDirectory: MaterialSymbolEnum { .store } + static var streamApps: MaterialSymbolEnum { .mobileChat } + static var swapVert: MaterialSymbolEnum { .importExport } + static var systemSecurityUpdate: MaterialSymbolEnum { .appPromo } + static var systemSecurityUpdateGood: MaterialSymbolEnum { .mobileCheck } + static var systemSecurityUpdateWarning: MaterialSymbolEnum { .mobileAlert } + static var systemUpdate: MaterialSymbolEnum { .appPromo } + static var tagFaces: MaterialSymbolEnum { .emojiEmotions } + static var tapAndPlay: MaterialSymbolEnum { .mobileCast } + static var terrain: MaterialSymbolEnum { .landscape } + static var textsms: MaterialSymbolEnum { .sms } + static var theaters: MaterialSymbolEnum { .localMovies } + static var thumbDownAlt: MaterialSymbolEnum { .thumbDown } + static var thumbDownFilled: MaterialSymbolEnum { .thumbDown } + static var thumbDownOff: MaterialSymbolEnum { .thumbDown } + static var thumbDownOffAlt: MaterialSymbolEnum { .thumbDown } + static var thumbUpAlt: MaterialSymbolEnum { .thumbUp } + static var thumbUpFilled: MaterialSymbolEnum { .thumbUp } + static var thumbUpOff: MaterialSymbolEnum { .thumbUp } + static var thumbUpOffAlt: MaterialSymbolEnum { .thumbUp } + static var timeToLeave: MaterialSymbolEnum { .directionsCar } + static var toolsWrench: MaterialSymbolEnum { .build } + static var topic: MaterialSymbolEnum { .source } + static var travel: MaterialSymbolEnum { .flightsmode } + static var trophy: MaterialSymbolEnum { .emojiEvents } + static var tryIcon: MaterialSymbolEnum { .reviews } + static var tungsten: MaterialSymbolEnum { .flourescent } + static var turnedIn: MaterialSymbolEnum { .bookmark } + static var turnedInNot: MaterialSymbolEnum { .bookmark } + static var tv: MaterialSymbolEnum { .personalVideo } + static var unknown2: MaterialSymbolEnum { .contrastCircle } + static var unknown7: MaterialSymbolEnum { .textUp } + static var unpin: MaterialSymbolEnum { .keepOff } + static var upload: MaterialSymbolEnum { .fileUpload } + static var verified: MaterialSymbolEnum { .newReleases } + static var verifiedUser: MaterialSymbolEnum { .gppGood } + static var vibration: MaterialSymbolEnum { .mobileVibrate } + static var viewInArNew: MaterialSymbolEnum { .viewInAr } + static var visibility: MaterialSymbolEnum { .removeRedEye } + static var warning: MaterialSymbolEnum { .reportProblem } + static var warningAmber: MaterialSymbolEnum { .reportProblem } + static var watchLater: MaterialSymbolEnum { .accessTime } + static var wbCloudy: MaterialSymbolEnum { .cloud } + static var wbIridescent: MaterialSymbolEnum { .flourescent } + static var webAssetOff: MaterialSymbolEnum { .browserNotSupported } + static var wifiCalling3: MaterialSymbolEnum { .wifiCalling1 } + static var wifiLock: MaterialSymbolEnum { .signalWifi4BarLock } + static var wifiTetheringOff: MaterialSymbolEnum { .portableWifiOff } + static var workflow: MaterialSymbolEnum { .arrowSplit } + static var workOutline: MaterialSymbolEnum { .work } + static var workspacesOutline: MaterialSymbolEnum { .workspaces } +} +#endif diff --git a/Sources/MaterialDesignSymbol/Resources/MaterialSymbolsOutlined.ttf b/Sources/MaterialDesignSymbol/Resources/MaterialSymbolsOutlined.ttf new file mode 100644 index 0000000..9006c26 Binary files /dev/null and b/Sources/MaterialDesignSymbol/Resources/MaterialSymbolsOutlined.ttf differ diff --git a/Sources/MaterialDesignSymbol/Resources/material-design-icons.ttf b/Sources/MaterialDesignSymbol/Resources/material-design-icons.ttf deleted file mode 100755 index b0a9565..0000000 Binary files a/Sources/MaterialDesignSymbol/Resources/material-design-icons.ttf and /dev/null differ diff --git a/Tests/MaterialDesignSymbolTests/MaterialDesignSymbolTests.swift b/Tests/MaterialDesignSymbolTests/MaterialDesignSymbolTests.swift index 5b34881..567ec1c 100644 --- a/Tests/MaterialDesignSymbolTests/MaterialDesignSymbolTests.swift +++ b/Tests/MaterialDesignSymbolTests/MaterialDesignSymbolTests.swift @@ -1,6 +1,9 @@ import XCTest @testable import MaterialDesignSymbol +#if !os(macOS) +import UIKit + final class MaterialDesignSymbolTests: XCTestCase { // MARK: - MaterialDesignFont Tests @@ -14,7 +17,7 @@ final class MaterialDesignSymbolTests: XCTestCase { func testFontLoading() { let font = MaterialDesignFont.shared.fontOfSize(24) XCTAssertNotNil(font, "Font should load successfully") - XCTAssertEqual(font.fontName, "material-design-icons") + XCTAssertEqual(font.fontName, "Material Symbols Outlined") } func testFontSize() { @@ -145,7 +148,7 @@ final class MaterialDesignSymbolTests: XCTestCase { XCTAssertNotNil(image) } - // MARK: - MaterialDesignIconEnum Tests + // MARK: - MaterialDesignIconEnum Tests (Legacy) func testIconEnumHasRawValue() { let icon = MaterialDesignIconEnum.home48px @@ -186,18 +189,52 @@ final class MaterialDesignSymbolTests: XCTestCase { } } - // MARK: - MaterialDesignIcon (Deprecated) Tests + // MARK: - MaterialSymbolEnum Tests (New) + + func testMaterialSymbolEnumCount() { + // Verify we have 3,802 unique icons (plus 300 aliases) + XCTAssertEqual(MaterialSymbolEnum.allCases.count, 3802) + } + + func testMaterialSymbolEnumHasRawValue() { + let icon = MaterialSymbolEnum.home + XCTAssertFalse(icon.rawValue.isEmpty) + } + + func testMaterialSymbolEnumRawValueIsUnicode() { + let icon = MaterialSymbolEnum.home + XCTAssertEqual(icon.rawValue.count, 1) + } + + func testMaterialSymbolEnumMultipleIcons() { + let icons: [MaterialSymbolEnum] = [ + .home, + .settings, + .search, + .menu, + .add, + .delete + ] - func testDeprecatedMaterialDesignIconExists() { - // Verify the deprecated struct exists for backward compatibility - let _ = MaterialDesignIcon.self + for icon in icons { + let symbol = MaterialDesignSymbol(text: icon.rawValue, size: 24) + let image = symbol.image() + XCTAssertTrue(image.size.width > 0, "Image for \(icon) should be generated") + } } - func testDeprecatedIconStaticProperties() { - // Test that static properties still work - let iconText = MaterialDesignIcon.home48px - XCTAssertFalse(iconText.isEmpty) - XCTAssertEqual(iconText.count, 1) + func testMaterialSymbolEnumWithNumberPrefix() { + // Test icons that start with numbers (prefixed with 'icon') + let icons: [MaterialSymbolEnum] = [ + .icon10k, + .icon123, + .icon1k, + .icon360 + ] + + for icon in icons { + XCTAssertFalse(icon.rawValue.isEmpty) + } } // MARK: - Edge Cases @@ -228,3 +265,4 @@ final class MaterialDesignSymbolTests: XCTestCase { XCTAssertEqual(image.size.height, 50) } } +#endif