@fadyshawky/react-native-magic 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +7 -0
- package/README.md +269 -0
- package/package.json +36 -0
- package/template/.bundle/config +2 -0
- package/template/.env.development +5 -0
- package/template/.env.production +5 -0
- package/template/.env.staging +5 -0
- package/template/.eslintrc.js +4 -0
- package/template/.prettierrc.js +7 -0
- package/template/.watchmanconfig +1 -0
- package/template/App.tsx +34 -0
- package/template/Gemfile +9 -0
- package/template/Gemfile.lock +117 -0
- package/template/README.md +79 -0
- package/template/__tests__/App.test.tsx +17 -0
- package/template/android/app/build.gradle +128 -0
- package/template/android/app/debug.keystore +0 -0
- package/template/android/app/proguard-rules.pro +10 -0
- package/template/android/app/src/debug/AndroidManifest.xml +9 -0
- package/template/android/app/src/main/AndroidManifest.xml +26 -0
- package/template/android/app/src/main/java/com/reactnativemagic/MainActivity.kt +22 -0
- package/template/android/app/src/main/java/com/reactnativemagic/MainApplication.kt +44 -0
- package/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/template/android/app/src/main/res/values/strings.xml +3 -0
- package/template/android/app/src/main/res/values/styles.xml +9 -0
- package/template/android/build.gradle +21 -0
- package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/template/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/template/android/gradle.properties +39 -0
- package/template/android/gradlew +252 -0
- package/template/android/gradlew.bat +94 -0
- package/template/android/settings.gradle +6 -0
- package/template/app.json +4 -0
- package/template/babel.config.js +3 -0
- package/template/index.js +9 -0
- package/template/install-dev.sh +1 -0
- package/template/install.sh +1 -0
- package/template/ios/.xcode.env +11 -0
- package/template/ios/Podfile +42 -0
- package/template/ios/Podfile.lock +2461 -0
- package/template/ios/reactnativemagic/AppDelegate.h +6 -0
- package/template/ios/reactnativemagic/AppDelegate.mm +31 -0
- package/template/ios/reactnativemagic/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/template/ios/reactnativemagic/Images.xcassets/Contents.json +6 -0
- package/template/ios/reactnativemagic/Info.plist +52 -0
- package/template/ios/reactnativemagic/LaunchScreen.storyboard +47 -0
- package/template/ios/reactnativemagic/PrivacyInfo.xcprivacy +46 -0
- package/template/ios/reactnativemagic/main.m +10 -0
- package/template/ios/reactnativemagic copy-Info.plist +52 -0
- package/template/ios/reactnativemagic.xcodeproj/project.pbxproj +836 -0
- package/template/ios/reactnativemagic.xcodeproj/xcshareddata/xcschemes/reactnativemagic.xcscheme +88 -0
- package/template/ios/reactnativemagic.xcworkspace/contents.xcworkspacedata +10 -0
- package/template/ios/reactnativemagic.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/template/ios/reactnativemagicTests/Info.plist +24 -0
- package/template/ios/reactnativemagicTests/reactnativemagicTests.m +66 -0
- package/template/ios/tmp.xcconfig +2 -0
- package/template/jest.config.js +3 -0
- package/template/metro.config.js +11 -0
- package/template/package-lock.json +18315 -0
- package/template/package.json +125 -0
- package/template/resources/symbols/SFSymbols.ts +2614 -0
- package/template/src/common/ImageResources.g.ts +14 -0
- package/template/src/common/components/Background.tsx +34 -0
- package/template/src/common/components/EmptyView.tsx +31 -0
- package/template/src/common/components/FlatListWrapper.tsx +66 -0
- package/template/src/common/components/IconPlatform.tsx +17 -0
- package/template/src/common/components/ImageCropPickerButton.tsx +108 -0
- package/template/src/common/components/LoadingComponent.tsx +16 -0
- package/template/src/common/components/PhotoTakingButton.tsx +99 -0
- package/template/src/common/components/PrimaryButton.tsx +305 -0
- package/template/src/common/components/PrimaryTextInput.tsx +287 -0
- package/template/src/common/components/RadioButton.tsx +73 -0
- package/template/src/common/components/RadioIcon.tsx +63 -0
- package/template/src/common/components/Separator.tsx +39 -0
- package/template/src/common/components/Svg.tsx +25 -0
- package/template/src/common/components/TouchablePlatform.tsx +70 -0
- package/template/src/common/components/TryAgain.tsx +56 -0
- package/template/src/common/helpers/arrayHelpers.ts +29 -0
- package/template/src/common/helpers/calculatePage.ts +16 -0
- package/template/src/common/helpers/colorHelpers.ts +34 -0
- package/template/src/common/helpers/defaultKeyIdExtractor.ts +5 -0
- package/template/src/common/helpers/dialogsHelpers.ts +66 -0
- package/template/src/common/helpers/imageHelpers.ts +5 -0
- package/template/src/common/helpers/inAppReviewHelper.ts +31 -0
- package/template/src/common/helpers/netInfoHelpers.ts +42 -0
- package/template/src/common/helpers/orientationHelpers.ts +25 -0
- package/template/src/common/helpers/regexHelpers.ts +7 -0
- package/template/src/common/helpers/shareHelpers.ts +47 -0
- package/template/src/common/helpers/stringsHelpers.ts +15 -0
- package/template/src/common/hooks/useBackHandler.ts +10 -0
- package/template/src/common/hooks/useDebounce.ts +17 -0
- package/template/src/common/hooks/useEventRegister.ts +50 -0
- package/template/src/common/hooks/useFlatListActions.ts +31 -0
- package/template/src/common/hooks/usePrevious.ts +11 -0
- package/template/src/common/hooks/useWhyDidYouUpdate.ts +27 -0
- package/template/src/common/localization/dateFormatter.ts +108 -0
- package/template/src/common/localization/intlFormatter.ts +37 -0
- package/template/src/common/localization/localization.ts +51 -0
- package/template/src/common/localization/translations/commonLocalization.ts +29 -0
- package/template/src/common/localization/translations/emptyLocalization.ts +6 -0
- package/template/src/common/localization/translations/errorsLocalization.ts +22 -0
- package/template/src/common/localization/translations/homeLocalization.ts +5 -0
- package/template/src/common/localization/translations/loginLocalization.ts +14 -0
- package/template/src/common/localization/translations/onboardingLocalization.ts +13 -0
- package/template/src/common/localization/translations/pagesLocalization.ts +14 -0
- package/template/src/common/localization/translations/profileLocalization.ts +6 -0
- package/template/src/common/urls/baseUrlOpener.ts +31 -0
- package/template/src/common/urls/emailUrl.ts +20 -0
- package/template/src/common/urls/httpUrl.ts +19 -0
- package/template/src/common/urls/mapUrl.ts +22 -0
- package/template/src/common/urls/phoneUrl.ts +16 -0
- package/template/src/common/utils/createPerfectSize.ts +15 -0
- package/template/src/common/utils/listHandlers.ts +30 -0
- package/template/src/common/utils/newState.ts +5 -0
- package/template/src/common/utils/serializeQueryParams.ts +10 -0
- package/template/src/common/validations/authValidations.ts +15 -0
- package/template/src/common/validations/commonValidations.ts +39 -0
- package/template/src/common/validations/errorValidations.ts +72 -0
- package/template/src/common/validations/hooks/useDatesError.ts +40 -0
- package/template/src/common/validations/hooks/useInputError.ts +30 -0
- package/template/src/common/validations/profileValidations.ts +30 -0
- package/template/src/common/validations/validationConstants.ts +20 -0
- package/template/src/core/api/responseHandlers.ts +43 -0
- package/template/src/core/api/serverHeaders.ts +39 -0
- package/template/src/core/store/app/appSlice.ts +12 -0
- package/template/src/core/store/app/appState.ts +3 -0
- package/template/src/core/store/reduxHelpers.ts +11 -0
- package/template/src/core/store/rootReducer.ts +10 -0
- package/template/src/core/store/store.tsx +41 -0
- package/template/src/core/store/user/userActions.ts +31 -0
- package/template/src/core/store/user/userSlice.ts +62 -0
- package/template/src/core/store/user/userState.ts +44 -0
- package/template/src/core/theme/colors.ts +117 -0
- package/template/src/core/theme/commonConsts.ts +45 -0
- package/template/src/core/theme/commonSizes.ts +70 -0
- package/template/src/core/theme/commonStyles.ts +228 -0
- package/template/src/core/theme/fonts.ts +12 -0
- package/template/src/navigation/AuthStack.tsx +39 -0
- package/template/src/navigation/HeaderComponents.tsx +104 -0
- package/template/src/navigation/MainNavigation.tsx +55 -0
- package/template/src/navigation/MainStack.tsx +99 -0
- package/template/src/navigation/RootNavigation.tsx +33 -0
- package/template/src/navigation/TabBar.tsx +94 -0
- package/template/src/navigation/TopTabBar.tsx +75 -0
- package/template/src/navigation/types.ts +5 -0
- package/template/src/screens/Login/Login.tsx +114 -0
- package/template/src/screens/Settings/Settings.tsx +5 -0
- package/template/src/screens/main/Main.tsx +5 -0
- package/template/src/screens/profile/Profile.tsx +5 -0
- package/template/src/screens/splash/Splash.tsx +19 -0
- package/template/src/sheetManager/sheets.tsx +14 -0
- package/template/tsconfig.json +3 -0
- package/template/types/index.ts +108 -0
- package/template/types/react-native-config.d.ts +19 -0
- package/template.config.js +4 -0
|
@@ -0,0 +1,2614 @@
|
|
|
1
|
+
export enum SFSymbols {
|
|
2
|
+
'0.circle' = '0.circle',
|
|
3
|
+
'0.circle.fill' = '0.circle.fill',
|
|
4
|
+
'0.square' = '0.square',
|
|
5
|
+
'0.square.fill' = '0.square.fill',
|
|
6
|
+
'00.circle' = '00.circle',
|
|
7
|
+
'00.circle.fill' = '00.circle.fill',
|
|
8
|
+
'00.square' = '00.square',
|
|
9
|
+
'00.square.fill' = '00.square.fill',
|
|
10
|
+
'01.circle' = '01.circle',
|
|
11
|
+
'01.circle.fill' = '01.circle.fill',
|
|
12
|
+
'01.square' = '01.square',
|
|
13
|
+
'01.square.fill' = '01.square.fill',
|
|
14
|
+
'02.circle' = '02.circle',
|
|
15
|
+
'02.circle.fill' = '02.circle.fill',
|
|
16
|
+
'02.square' = '02.square',
|
|
17
|
+
'02.square.fill' = '02.square.fill',
|
|
18
|
+
'03.circle' = '03.circle',
|
|
19
|
+
'03.circle.fill' = '03.circle.fill',
|
|
20
|
+
'03.square' = '03.square',
|
|
21
|
+
'03.square.fill' = '03.square.fill',
|
|
22
|
+
'04.circle' = '04.circle',
|
|
23
|
+
'04.circle.fill' = '04.circle.fill',
|
|
24
|
+
'04.square' = '04.square',
|
|
25
|
+
'04.square.fill' = '04.square.fill',
|
|
26
|
+
'05.circle' = '05.circle',
|
|
27
|
+
'05.circle.fill' = '05.circle.fill',
|
|
28
|
+
'05.square' = '05.square',
|
|
29
|
+
'05.square.fill' = '05.square.fill',
|
|
30
|
+
'06.circle' = '06.circle',
|
|
31
|
+
'06.circle.fill' = '06.circle.fill',
|
|
32
|
+
'06.square' = '06.square',
|
|
33
|
+
'06.square.fill' = '06.square.fill',
|
|
34
|
+
'07.circle' = '07.circle',
|
|
35
|
+
'07.circle.fill' = '07.circle.fill',
|
|
36
|
+
'07.square' = '07.square',
|
|
37
|
+
'07.square.fill' = '07.square.fill',
|
|
38
|
+
'08.circle' = '08.circle',
|
|
39
|
+
'08.circle.fill' = '08.circle.fill',
|
|
40
|
+
'08.square' = '08.square',
|
|
41
|
+
'08.square.fill' = '08.square.fill',
|
|
42
|
+
'09.circle' = '09.circle',
|
|
43
|
+
'09.circle.fill' = '09.circle.fill',
|
|
44
|
+
'09.square' = '09.square',
|
|
45
|
+
'09.square.fill' = '09.square.fill',
|
|
46
|
+
'1.circle' = '1.circle',
|
|
47
|
+
'1.circle.fill' = '1.circle.fill',
|
|
48
|
+
'1.magnifyingglass' = '1.magnifyingglass',
|
|
49
|
+
'1.square' = '1.square',
|
|
50
|
+
'1.square.fill' = '1.square.fill',
|
|
51
|
+
'10.circle' = '10.circle',
|
|
52
|
+
'10.circle.fill' = '10.circle.fill',
|
|
53
|
+
'10.square' = '10.square',
|
|
54
|
+
'10.square.fill' = '10.square.fill',
|
|
55
|
+
'11.circle' = '11.circle',
|
|
56
|
+
'11.circle.fill' = '11.circle.fill',
|
|
57
|
+
'11.square' = '11.square',
|
|
58
|
+
'11.square.fill' = '11.square.fill',
|
|
59
|
+
'12.circle' = '12.circle',
|
|
60
|
+
'12.circle.fill' = '12.circle.fill',
|
|
61
|
+
'12.square' = '12.square',
|
|
62
|
+
'12.square.fill' = '12.square.fill',
|
|
63
|
+
'13.circle' = '13.circle',
|
|
64
|
+
'13.circle.fill' = '13.circle.fill',
|
|
65
|
+
'13.square' = '13.square',
|
|
66
|
+
'13.square.fill' = '13.square.fill',
|
|
67
|
+
'14.circle' = '14.circle',
|
|
68
|
+
'14.circle.fill' = '14.circle.fill',
|
|
69
|
+
'14.square' = '14.square',
|
|
70
|
+
'14.square.fill' = '14.square.fill',
|
|
71
|
+
'15.circle' = '15.circle',
|
|
72
|
+
'15.circle.fill' = '15.circle.fill',
|
|
73
|
+
'15.square' = '15.square',
|
|
74
|
+
'15.square.fill' = '15.square.fill',
|
|
75
|
+
'16.circle' = '16.circle',
|
|
76
|
+
'16.circle.fill' = '16.circle.fill',
|
|
77
|
+
'16.square' = '16.square',
|
|
78
|
+
'16.square.fill' = '16.square.fill',
|
|
79
|
+
'17.circle' = '17.circle',
|
|
80
|
+
'17.circle.fill' = '17.circle.fill',
|
|
81
|
+
'17.square' = '17.square',
|
|
82
|
+
'17.square.fill' = '17.square.fill',
|
|
83
|
+
'18.circle' = '18.circle',
|
|
84
|
+
'18.circle.fill' = '18.circle.fill',
|
|
85
|
+
'18.square' = '18.square',
|
|
86
|
+
'18.square.fill' = '18.square.fill',
|
|
87
|
+
'19.circle' = '19.circle',
|
|
88
|
+
'19.circle.fill' = '19.circle.fill',
|
|
89
|
+
'19.square' = '19.square',
|
|
90
|
+
'19.square.fill' = '19.square.fill',
|
|
91
|
+
'2.circle' = '2.circle',
|
|
92
|
+
'2.circle.fill' = '2.circle.fill',
|
|
93
|
+
'2.square' = '2.square',
|
|
94
|
+
'2.square.fill' = '2.square.fill',
|
|
95
|
+
'20.circle' = '20.circle',
|
|
96
|
+
'20.circle.fill' = '20.circle.fill',
|
|
97
|
+
'20.square' = '20.square',
|
|
98
|
+
'20.square.fill' = '20.square.fill',
|
|
99
|
+
'21.circle' = '21.circle',
|
|
100
|
+
'21.circle.fill' = '21.circle.fill',
|
|
101
|
+
'21.square' = '21.square',
|
|
102
|
+
'21.square.fill' = '21.square.fill',
|
|
103
|
+
'22.circle' = '22.circle',
|
|
104
|
+
'22.circle.fill' = '22.circle.fill',
|
|
105
|
+
'22.square' = '22.square',
|
|
106
|
+
'22.square.fill' = '22.square.fill',
|
|
107
|
+
'23.circle' = '23.circle',
|
|
108
|
+
'23.circle.fill' = '23.circle.fill',
|
|
109
|
+
'23.square' = '23.square',
|
|
110
|
+
'23.square.fill' = '23.square.fill',
|
|
111
|
+
'24.circle' = '24.circle',
|
|
112
|
+
'24.circle.fill' = '24.circle.fill',
|
|
113
|
+
'24.square' = '24.square',
|
|
114
|
+
'24.square.fill' = '24.square.fill',
|
|
115
|
+
'25.circle' = '25.circle',
|
|
116
|
+
'25.circle.fill' = '25.circle.fill',
|
|
117
|
+
'25.square' = '25.square',
|
|
118
|
+
'25.square.fill' = '25.square.fill',
|
|
119
|
+
'26.circle' = '26.circle',
|
|
120
|
+
'26.circle.fill' = '26.circle.fill',
|
|
121
|
+
'26.square' = '26.square',
|
|
122
|
+
'26.square.fill' = '26.square.fill',
|
|
123
|
+
'27.circle' = '27.circle',
|
|
124
|
+
'27.circle.fill' = '27.circle.fill',
|
|
125
|
+
'27.square' = '27.square',
|
|
126
|
+
'27.square.fill' = '27.square.fill',
|
|
127
|
+
'28.circle' = '28.circle',
|
|
128
|
+
'28.circle.fill' = '28.circle.fill',
|
|
129
|
+
'28.square' = '28.square',
|
|
130
|
+
'28.square.fill' = '28.square.fill',
|
|
131
|
+
'29.circle' = '29.circle',
|
|
132
|
+
'29.circle.fill' = '29.circle.fill',
|
|
133
|
+
'29.square' = '29.square',
|
|
134
|
+
'29.square.fill' = '29.square.fill',
|
|
135
|
+
'3.circle' = '3.circle',
|
|
136
|
+
'3.circle.fill' = '3.circle.fill',
|
|
137
|
+
'3.square' = '3.square',
|
|
138
|
+
'3.square.fill' = '3.square.fill',
|
|
139
|
+
'30.circle' = '30.circle',
|
|
140
|
+
'30.circle.fill' = '30.circle.fill',
|
|
141
|
+
'30.square' = '30.square',
|
|
142
|
+
'30.square.fill' = '30.square.fill',
|
|
143
|
+
'31.circle' = '31.circle',
|
|
144
|
+
'31.circle.fill' = '31.circle.fill',
|
|
145
|
+
'31.square' = '31.square',
|
|
146
|
+
'31.square.fill' = '31.square.fill',
|
|
147
|
+
'32.circle' = '32.circle',
|
|
148
|
+
'32.circle.fill' = '32.circle.fill',
|
|
149
|
+
'32.square' = '32.square',
|
|
150
|
+
'32.square.fill' = '32.square.fill',
|
|
151
|
+
'33.circle' = '33.circle',
|
|
152
|
+
'33.circle.fill' = '33.circle.fill',
|
|
153
|
+
'33.square' = '33.square',
|
|
154
|
+
'33.square.fill' = '33.square.fill',
|
|
155
|
+
'34.circle' = '34.circle',
|
|
156
|
+
'34.circle.fill' = '34.circle.fill',
|
|
157
|
+
'34.square' = '34.square',
|
|
158
|
+
'34.square.fill' = '34.square.fill',
|
|
159
|
+
'35.circle' = '35.circle',
|
|
160
|
+
'35.circle.fill' = '35.circle.fill',
|
|
161
|
+
'35.square' = '35.square',
|
|
162
|
+
'35.square.fill' = '35.square.fill',
|
|
163
|
+
'36.circle' = '36.circle',
|
|
164
|
+
'36.circle.fill' = '36.circle.fill',
|
|
165
|
+
'36.square' = '36.square',
|
|
166
|
+
'36.square.fill' = '36.square.fill',
|
|
167
|
+
'37.circle' = '37.circle',
|
|
168
|
+
'37.circle.fill' = '37.circle.fill',
|
|
169
|
+
'37.square' = '37.square',
|
|
170
|
+
'37.square.fill' = '37.square.fill',
|
|
171
|
+
'38.circle' = '38.circle',
|
|
172
|
+
'38.circle.fill' = '38.circle.fill',
|
|
173
|
+
'38.square' = '38.square',
|
|
174
|
+
'38.square.fill' = '38.square.fill',
|
|
175
|
+
'39.circle' = '39.circle',
|
|
176
|
+
'39.circle.fill' = '39.circle.fill',
|
|
177
|
+
'39.square' = '39.square',
|
|
178
|
+
'39.square.fill' = '39.square.fill',
|
|
179
|
+
'4.alt.circle' = '4.alt.circle',
|
|
180
|
+
'4.alt.circle.fill' = '4.alt.circle.fill',
|
|
181
|
+
'4.alt.square' = '4.alt.square',
|
|
182
|
+
'4.alt.square.fill' = '4.alt.square.fill',
|
|
183
|
+
'4.circle' = '4.circle',
|
|
184
|
+
'4.circle.fill' = '4.circle.fill',
|
|
185
|
+
'4.square' = '4.square',
|
|
186
|
+
'4.square.fill' = '4.square.fill',
|
|
187
|
+
'40.circle' = '40.circle',
|
|
188
|
+
'40.circle.fill' = '40.circle.fill',
|
|
189
|
+
'40.square' = '40.square',
|
|
190
|
+
'40.square.fill' = '40.square.fill',
|
|
191
|
+
'41.circle' = '41.circle',
|
|
192
|
+
'41.circle.fill' = '41.circle.fill',
|
|
193
|
+
'41.square' = '41.square',
|
|
194
|
+
'41.square.fill' = '41.square.fill',
|
|
195
|
+
'42.circle' = '42.circle',
|
|
196
|
+
'42.circle.fill' = '42.circle.fill',
|
|
197
|
+
'42.square' = '42.square',
|
|
198
|
+
'42.square.fill' = '42.square.fill',
|
|
199
|
+
'43.circle' = '43.circle',
|
|
200
|
+
'43.circle.fill' = '43.circle.fill',
|
|
201
|
+
'43.square' = '43.square',
|
|
202
|
+
'43.square.fill' = '43.square.fill',
|
|
203
|
+
'44.circle' = '44.circle',
|
|
204
|
+
'44.circle.fill' = '44.circle.fill',
|
|
205
|
+
'44.square' = '44.square',
|
|
206
|
+
'44.square.fill' = '44.square.fill',
|
|
207
|
+
'45.circle' = '45.circle',
|
|
208
|
+
'45.circle.fill' = '45.circle.fill',
|
|
209
|
+
'45.square' = '45.square',
|
|
210
|
+
'45.square.fill' = '45.square.fill',
|
|
211
|
+
'46.circle' = '46.circle',
|
|
212
|
+
'46.circle.fill' = '46.circle.fill',
|
|
213
|
+
'46.square' = '46.square',
|
|
214
|
+
'46.square.fill' = '46.square.fill',
|
|
215
|
+
'47.circle' = '47.circle',
|
|
216
|
+
'47.circle.fill' = '47.circle.fill',
|
|
217
|
+
'47.square' = '47.square',
|
|
218
|
+
'47.square.fill' = '47.square.fill',
|
|
219
|
+
'48.circle' = '48.circle',
|
|
220
|
+
'48.circle.fill' = '48.circle.fill',
|
|
221
|
+
'48.square' = '48.square',
|
|
222
|
+
'48.square.fill' = '48.square.fill',
|
|
223
|
+
'49.circle' = '49.circle',
|
|
224
|
+
'49.circle.fill' = '49.circle.fill',
|
|
225
|
+
'49.square' = '49.square',
|
|
226
|
+
'49.square.fill' = '49.square.fill',
|
|
227
|
+
'4k.tv' = '4k.tv',
|
|
228
|
+
'4k.tv.fill' = '4k.tv.fill',
|
|
229
|
+
'5.circle' = '5.circle',
|
|
230
|
+
'5.circle.fill' = '5.circle.fill',
|
|
231
|
+
'5.square' = '5.square',
|
|
232
|
+
'5.square.fill' = '5.square.fill',
|
|
233
|
+
'50.circle' = '50.circle',
|
|
234
|
+
'50.circle.fill' = '50.circle.fill',
|
|
235
|
+
'50.square' = '50.square',
|
|
236
|
+
'50.square.fill' = '50.square.fill',
|
|
237
|
+
'6.alt.circle' = '6.alt.circle',
|
|
238
|
+
'6.alt.circle.fill' = '6.alt.circle.fill',
|
|
239
|
+
'6.alt.square' = '6.alt.square',
|
|
240
|
+
'6.alt.square.fill' = '6.alt.square.fill',
|
|
241
|
+
'6.circle' = '6.circle',
|
|
242
|
+
'6.circle.fill' = '6.circle.fill',
|
|
243
|
+
'6.square' = '6.square',
|
|
244
|
+
'6.square.fill' = '6.square.fill',
|
|
245
|
+
'7.circle' = '7.circle',
|
|
246
|
+
'7.circle.fill' = '7.circle.fill',
|
|
247
|
+
'7.square' = '7.square',
|
|
248
|
+
'7.square.fill' = '7.square.fill',
|
|
249
|
+
'8.circle' = '8.circle',
|
|
250
|
+
'8.circle.fill' = '8.circle.fill',
|
|
251
|
+
'8.square' = '8.square',
|
|
252
|
+
'8.square.fill' = '8.square.fill',
|
|
253
|
+
'9.alt.circle' = '9.alt.circle',
|
|
254
|
+
'9.alt.circle.fill' = '9.alt.circle.fill',
|
|
255
|
+
'9.alt.square' = '9.alt.square',
|
|
256
|
+
'9.alt.square.fill' = '9.alt.square.fill',
|
|
257
|
+
'9.circle' = '9.circle',
|
|
258
|
+
'9.circle.fill' = '9.circle.fill',
|
|
259
|
+
'9.square' = '9.square',
|
|
260
|
+
'9.square.fill' = '9.square.fill',
|
|
261
|
+
'a.circle' = 'a.circle',
|
|
262
|
+
'a.circle.fill' = 'a.circle.fill',
|
|
263
|
+
'a.magnify' = 'a.magnify',
|
|
264
|
+
'a.square' = 'a.square',
|
|
265
|
+
'a.square.fill' = 'a.square.fill',
|
|
266
|
+
'abc' = 'abc',
|
|
267
|
+
'airplane' = 'airplane',
|
|
268
|
+
'airplane.circle' = 'airplane.circle',
|
|
269
|
+
'airplane.circle.fill' = 'airplane.circle.fill',
|
|
270
|
+
'airplayaudio' = 'airplayaudio',
|
|
271
|
+
'airplayvideo' = 'airplayvideo',
|
|
272
|
+
'airpod.left' = 'airpod.left',
|
|
273
|
+
'airpod.right' = 'airpod.right',
|
|
274
|
+
'airpodpro.left' = 'airpodpro.left',
|
|
275
|
+
'airpodpro.right' = 'airpodpro.right',
|
|
276
|
+
'airpods' = 'airpods',
|
|
277
|
+
'airpodspro' = 'airpodspro',
|
|
278
|
+
'airport.express' = 'airport.express',
|
|
279
|
+
'airport.extreme' = 'airport.extreme',
|
|
280
|
+
'airport.extreme.tower' = 'airport.extreme.tower',
|
|
281
|
+
'alarm' = 'alarm',
|
|
282
|
+
'alarm.fill' = 'alarm.fill',
|
|
283
|
+
'alt' = 'alt',
|
|
284
|
+
'amplifier' = 'amplifier',
|
|
285
|
+
'ant' = 'ant',
|
|
286
|
+
'ant.circle' = 'ant.circle',
|
|
287
|
+
'ant.circle.fill' = 'ant.circle.fill',
|
|
288
|
+
'ant.fill' = 'ant.fill',
|
|
289
|
+
'antenna.radiowaves.left.and.right' = 'antenna.radiowaves.left.and.right',
|
|
290
|
+
'app' = 'app',
|
|
291
|
+
'app.badge' = 'app.badge',
|
|
292
|
+
'app.badge.fill' = 'app.badge.fill',
|
|
293
|
+
'app.fill' = 'app.fill',
|
|
294
|
+
'app.gift' = 'app.gift',
|
|
295
|
+
'app.gift.fill' = 'app.gift.fill',
|
|
296
|
+
'appclip' = 'appclip',
|
|
297
|
+
'applelogo' = 'applelogo',
|
|
298
|
+
'applescript' = 'applescript',
|
|
299
|
+
'applescript.fill' = 'applescript.fill',
|
|
300
|
+
'appletv' = 'appletv',
|
|
301
|
+
'appletv.fill' = 'appletv.fill',
|
|
302
|
+
'applewatch' = 'applewatch',
|
|
303
|
+
'applewatch.radiowaves.left.and.right' = 'applewatch.radiowaves.left.and.right',
|
|
304
|
+
'applewatch.slash' = 'applewatch.slash',
|
|
305
|
+
'applewatch.watchface' = 'applewatch.watchface',
|
|
306
|
+
'apps.ipad' = 'apps.ipad',
|
|
307
|
+
'apps.ipad.landscape' = 'apps.ipad.landscape',
|
|
308
|
+
'apps.iphone' = 'apps.iphone',
|
|
309
|
+
'apps.iphone.badge.plus' = 'apps.iphone.badge.plus',
|
|
310
|
+
'apps.iphone.landscape' = 'apps.iphone.landscape',
|
|
311
|
+
'aqi.high' = 'aqi.high',
|
|
312
|
+
'aqi.low' = 'aqi.low',
|
|
313
|
+
'aqi.medium' = 'aqi.medium',
|
|
314
|
+
'archivebox' = 'archivebox',
|
|
315
|
+
'archivebox.circle' = 'archivebox.circle',
|
|
316
|
+
'archivebox.circle.fill' = 'archivebox.circle.fill',
|
|
317
|
+
'archivebox.fill' = 'archivebox.fill',
|
|
318
|
+
'arkit' = 'arkit',
|
|
319
|
+
'arrow.2.squarepath' = 'arrow.2.squarepath',
|
|
320
|
+
'arrow.3.trianglepath' = 'arrow.3.trianglepath',
|
|
321
|
+
'arrow.backward' = 'arrow.backward',
|
|
322
|
+
'arrow.backward.circle' = 'arrow.backward.circle',
|
|
323
|
+
'arrow.backward.circle.fill' = 'arrow.backward.circle.fill',
|
|
324
|
+
'arrow.backward.square' = 'arrow.backward.square',
|
|
325
|
+
'arrow.backward.square.fill' = 'arrow.backward.square.fill',
|
|
326
|
+
'arrow.clockwise' = 'arrow.clockwise',
|
|
327
|
+
'arrow.clockwise.circle' = 'arrow.clockwise.circle',
|
|
328
|
+
'arrow.clockwise.circle.fill' = 'arrow.clockwise.circle.fill',
|
|
329
|
+
'arrow.clockwise.heart' = 'arrow.clockwise.heart',
|
|
330
|
+
'arrow.clockwise.heart.fill' = 'arrow.clockwise.heart.fill',
|
|
331
|
+
'arrow.clockwise.icloud' = 'arrow.clockwise.icloud',
|
|
332
|
+
'arrow.clockwise.icloud.fill' = 'arrow.clockwise.icloud.fill',
|
|
333
|
+
'arrow.counterclockwise' = 'arrow.counterclockwise',
|
|
334
|
+
'arrow.counterclockwise.circle' = 'arrow.counterclockwise.circle',
|
|
335
|
+
'arrow.counterclockwise.circle.fill' = 'arrow.counterclockwise.circle.fill',
|
|
336
|
+
'arrow.counterclockwise.icloud' = 'arrow.counterclockwise.icloud',
|
|
337
|
+
'arrow.counterclockwise.icloud.fill' = 'arrow.counterclockwise.icloud.fill',
|
|
338
|
+
'arrow.down' = 'arrow.down',
|
|
339
|
+
'arrow.down.app' = 'arrow.down.app',
|
|
340
|
+
'arrow.down.app.fill' = 'arrow.down.app.fill',
|
|
341
|
+
'arrow.down.backward' = 'arrow.down.backward',
|
|
342
|
+
'arrow.down.backward.circle' = 'arrow.down.backward.circle',
|
|
343
|
+
'arrow.down.backward.circle.fill' = 'arrow.down.backward.circle.fill',
|
|
344
|
+
'arrow.down.backward.square' = 'arrow.down.backward.square',
|
|
345
|
+
'arrow.down.backward.square.fill' = 'arrow.down.backward.square.fill',
|
|
346
|
+
'arrow.down.circle' = 'arrow.down.circle',
|
|
347
|
+
'arrow.down.circle.fill' = 'arrow.down.circle.fill',
|
|
348
|
+
'arrow.down.doc' = 'arrow.down.doc',
|
|
349
|
+
'arrow.down.doc.fill' = 'arrow.down.doc.fill',
|
|
350
|
+
'arrow.down.forward' = 'arrow.down.forward',
|
|
351
|
+
'arrow.down.forward.and.arrow.up.backward' = 'arrow.down.forward.and.arrow.up.backward',
|
|
352
|
+
'arrow.down.forward.and.arrow.up.backward.circle' = 'arrow.down.forward.and.arrow.up.backward.circle',
|
|
353
|
+
'arrow.down.forward.and.arrow.up.backward.circle.fill' = 'arrow.down.forward.and.arrow.up.backward.circle.fill',
|
|
354
|
+
'arrow.down.forward.circle' = 'arrow.down.forward.circle',
|
|
355
|
+
'arrow.down.forward.circle.fill' = 'arrow.down.forward.circle.fill',
|
|
356
|
+
'arrow.down.forward.square' = 'arrow.down.forward.square',
|
|
357
|
+
'arrow.down.forward.square.fill' = 'arrow.down.forward.square.fill',
|
|
358
|
+
'arrow.down.heart' = 'arrow.down.heart',
|
|
359
|
+
'arrow.down.heart.fill' = 'arrow.down.heart.fill',
|
|
360
|
+
'arrow.down.left' = 'arrow.down.left',
|
|
361
|
+
'arrow.down.left.circle' = 'arrow.down.left.circle',
|
|
362
|
+
'arrow.down.left.circle.fill' = 'arrow.down.left.circle.fill',
|
|
363
|
+
'arrow.down.left.square' = 'arrow.down.left.square',
|
|
364
|
+
'arrow.down.left.square.fill' = 'arrow.down.left.square.fill',
|
|
365
|
+
'arrow.down.left.video' = 'arrow.down.left.video',
|
|
366
|
+
'arrow.down.left.video.fill' = 'arrow.down.left.video.fill',
|
|
367
|
+
'arrow.down.right' = 'arrow.down.right',
|
|
368
|
+
'arrow.down.right.and.arrow.up.left' = 'arrow.down.right.and.arrow.up.left',
|
|
369
|
+
'arrow.down.right.and.arrow.up.left.circle' = 'arrow.down.right.and.arrow.up.left.circle',
|
|
370
|
+
'arrow.down.right.and.arrow.up.left.circle.fill' = 'arrow.down.right.and.arrow.up.left.circle.fill',
|
|
371
|
+
'arrow.down.right.circle' = 'arrow.down.right.circle',
|
|
372
|
+
'arrow.down.right.circle.fill' = 'arrow.down.right.circle.fill',
|
|
373
|
+
'arrow.down.right.square' = 'arrow.down.right.square',
|
|
374
|
+
'arrow.down.right.square.fill' = 'arrow.down.right.square.fill',
|
|
375
|
+
'arrow.down.square' = 'arrow.down.square',
|
|
376
|
+
'arrow.down.square.fill' = 'arrow.down.square.fill',
|
|
377
|
+
'arrow.down.to.line' = 'arrow.down.to.line',
|
|
378
|
+
'arrow.down.to.line.alt' = 'arrow.down.to.line.alt',
|
|
379
|
+
'arrow.forward' = 'arrow.forward',
|
|
380
|
+
'arrow.forward.circle' = 'arrow.forward.circle',
|
|
381
|
+
'arrow.forward.circle.fill' = 'arrow.forward.circle.fill',
|
|
382
|
+
'arrow.forward.square' = 'arrow.forward.square',
|
|
383
|
+
'arrow.forward.square.fill' = 'arrow.forward.square.fill',
|
|
384
|
+
'arrow.left' = 'arrow.left',
|
|
385
|
+
'arrow.left.and.right' = 'arrow.left.and.right',
|
|
386
|
+
'arrow.left.and.right.circle' = 'arrow.left.and.right.circle',
|
|
387
|
+
'arrow.left.and.right.circle.fill' = 'arrow.left.and.right.circle.fill',
|
|
388
|
+
'arrow.left.and.right.righttriangle.left.righttriangle.right' = 'arrow.left.and.right.righttriangle.left.righttriangle.right',
|
|
389
|
+
'arrow.left.and.right.righttriangle.left.righttriangle.right.fill' = 'arrow.left.and.right.righttriangle.left.righttriangle.right.fill',
|
|
390
|
+
'arrow.left.and.right.square' = 'arrow.left.and.right.square',
|
|
391
|
+
'arrow.left.and.right.square.fill' = 'arrow.left.and.right.square.fill',
|
|
392
|
+
'arrow.left.arrow.right' = 'arrow.left.arrow.right',
|
|
393
|
+
'arrow.left.arrow.right.circle' = 'arrow.left.arrow.right.circle',
|
|
394
|
+
'arrow.left.arrow.right.circle.fill' = 'arrow.left.arrow.right.circle.fill',
|
|
395
|
+
'arrow.left.arrow.right.square' = 'arrow.left.arrow.right.square',
|
|
396
|
+
'arrow.left.arrow.right.square.fill' = 'arrow.left.arrow.right.square.fill',
|
|
397
|
+
'arrow.left.circle' = 'arrow.left.circle',
|
|
398
|
+
'arrow.left.circle.fill' = 'arrow.left.circle.fill',
|
|
399
|
+
'arrow.left.square' = 'arrow.left.square',
|
|
400
|
+
'arrow.left.square.fill' = 'arrow.left.square.fill',
|
|
401
|
+
'arrow.left.to.line' = 'arrow.left.to.line',
|
|
402
|
+
'arrow.left.to.line.alt' = 'arrow.left.to.line.alt',
|
|
403
|
+
'arrow.rectanglepath' = 'arrow.rectanglepath',
|
|
404
|
+
'arrow.right' = 'arrow.right',
|
|
405
|
+
'arrow.right.circle' = 'arrow.right.circle',
|
|
406
|
+
'arrow.right.circle.fill' = 'arrow.right.circle.fill',
|
|
407
|
+
'arrow.right.doc.on.clipboard' = 'arrow.right.doc.on.clipboard',
|
|
408
|
+
'arrow.right.square' = 'arrow.right.square',
|
|
409
|
+
'arrow.right.square.fill' = 'arrow.right.square.fill',
|
|
410
|
+
'arrow.right.to.line' = 'arrow.right.to.line',
|
|
411
|
+
'arrow.right.to.line.alt' = 'arrow.right.to.line.alt',
|
|
412
|
+
'arrow.triangle.2.circlepath' = 'arrow.triangle.2.circlepath',
|
|
413
|
+
'arrow.triangle.2.circlepath.camera' = 'arrow.triangle.2.circlepath.camera',
|
|
414
|
+
'arrow.triangle.2.circlepath.camera.fill' = 'arrow.triangle.2.circlepath.camera.fill',
|
|
415
|
+
'arrow.triangle.2.circlepath.circle' = 'arrow.triangle.2.circlepath.circle',
|
|
416
|
+
'arrow.triangle.2.circlepath.circle.fill' = 'arrow.triangle.2.circlepath.circle.fill',
|
|
417
|
+
'arrow.triangle.2.circlepath.doc.on.clipboard' = 'arrow.triangle.2.circlepath.doc.on.clipboard',
|
|
418
|
+
'arrow.triangle.branch' = 'arrow.triangle.branch',
|
|
419
|
+
'arrow.triangle.capsulepath' = 'arrow.triangle.capsulepath',
|
|
420
|
+
'arrow.triangle.merge' = 'arrow.triangle.merge',
|
|
421
|
+
'arrow.triangle.pull' = 'arrow.triangle.pull',
|
|
422
|
+
'arrow.triangle.swap' = 'arrow.triangle.swap',
|
|
423
|
+
'arrow.triangle.turn.up.right.circle' = 'arrow.triangle.turn.up.right.circle',
|
|
424
|
+
'arrow.triangle.turn.up.right.circle.fill' = 'arrow.triangle.turn.up.right.circle.fill',
|
|
425
|
+
'arrow.triangle.turn.up.right.diamond' = 'arrow.triangle.turn.up.right.diamond',
|
|
426
|
+
'arrow.triangle.turn.up.right.diamond.fill' = 'arrow.triangle.turn.up.right.diamond.fill',
|
|
427
|
+
'arrow.turn.down.left' = 'arrow.turn.down.left',
|
|
428
|
+
'arrow.turn.down.right' = 'arrow.turn.down.right',
|
|
429
|
+
'arrow.turn.left.down' = 'arrow.turn.left.down',
|
|
430
|
+
'arrow.turn.left.up' = 'arrow.turn.left.up',
|
|
431
|
+
'arrow.turn.right.down' = 'arrow.turn.right.down',
|
|
432
|
+
'arrow.turn.right.up' = 'arrow.turn.right.up',
|
|
433
|
+
'arrow.turn.up.forward.iphone' = 'arrow.turn.up.forward.iphone',
|
|
434
|
+
'arrow.turn.up.forward.iphone.fill' = 'arrow.turn.up.forward.iphone.fill',
|
|
435
|
+
'arrow.turn.up.left' = 'arrow.turn.up.left',
|
|
436
|
+
'arrow.turn.up.right' = 'arrow.turn.up.right',
|
|
437
|
+
'arrow.up' = 'arrow.up',
|
|
438
|
+
'arrow.up.and.down' = 'arrow.up.and.down',
|
|
439
|
+
'arrow.up.and.down.and.arrow.left.and.right' = 'arrow.up.and.down.and.arrow.left.and.right',
|
|
440
|
+
'arrow.up.and.down.circle' = 'arrow.up.and.down.circle',
|
|
441
|
+
'arrow.up.and.down.circle.fill' = 'arrow.up.and.down.circle.fill',
|
|
442
|
+
'arrow.up.and.down.righttriangle.up.fill.righttriangle.down.fill' = 'arrow.up.and.down.righttriangle.up.fill.righttriangle.down.fill',
|
|
443
|
+
'arrow.up.and.down.righttriangle.up.righttriangle.down' = 'arrow.up.and.down.righttriangle.up.righttriangle.down',
|
|
444
|
+
'arrow.up.and.down.square' = 'arrow.up.and.down.square',
|
|
445
|
+
'arrow.up.and.down.square.fill' = 'arrow.up.and.down.square.fill',
|
|
446
|
+
'arrow.up.and.person.rectangle.portrait' = 'arrow.up.and.person.rectangle.portrait',
|
|
447
|
+
'arrow.up.and.person.rectangle.turn.left' = 'arrow.up.and.person.rectangle.turn.left',
|
|
448
|
+
'arrow.up.and.person.rectangle.turn.right' = 'arrow.up.and.person.rectangle.turn.right',
|
|
449
|
+
'arrow.up.arrow.down' = 'arrow.up.arrow.down',
|
|
450
|
+
'arrow.up.arrow.down.circle' = 'arrow.up.arrow.down.circle',
|
|
451
|
+
'arrow.up.arrow.down.circle.fill' = 'arrow.up.arrow.down.circle.fill',
|
|
452
|
+
'arrow.up.arrow.down.square' = 'arrow.up.arrow.down.square',
|
|
453
|
+
'arrow.up.arrow.down.square.fill' = 'arrow.up.arrow.down.square.fill',
|
|
454
|
+
'arrow.up.backward' = 'arrow.up.backward',
|
|
455
|
+
'arrow.up.backward.and.arrow.down.forward' = 'arrow.up.backward.and.arrow.down.forward',
|
|
456
|
+
'arrow.up.backward.and.arrow.down.forward.circle' = 'arrow.up.backward.and.arrow.down.forward.circle',
|
|
457
|
+
'arrow.up.backward.and.arrow.down.forward.circle.fill' = 'arrow.up.backward.and.arrow.down.forward.circle.fill',
|
|
458
|
+
'arrow.up.backward.circle' = 'arrow.up.backward.circle',
|
|
459
|
+
'arrow.up.backward.circle.fill' = 'arrow.up.backward.circle.fill',
|
|
460
|
+
'arrow.up.backward.square' = 'arrow.up.backward.square',
|
|
461
|
+
'arrow.up.backward.square.fill' = 'arrow.up.backward.square.fill',
|
|
462
|
+
'arrow.up.bin' = 'arrow.up.bin',
|
|
463
|
+
'arrow.up.bin.fill' = 'arrow.up.bin.fill',
|
|
464
|
+
'arrow.up.circle' = 'arrow.up.circle',
|
|
465
|
+
'arrow.up.circle.fill' = 'arrow.up.circle.fill',
|
|
466
|
+
'arrow.up.doc' = 'arrow.up.doc',
|
|
467
|
+
'arrow.up.doc.fill' = 'arrow.up.doc.fill',
|
|
468
|
+
'arrow.up.doc.on.clipboard' = 'arrow.up.doc.on.clipboard',
|
|
469
|
+
'arrow.up.forward' = 'arrow.up.forward',
|
|
470
|
+
'arrow.up.forward.app' = 'arrow.up.forward.app',
|
|
471
|
+
'arrow.up.forward.app.fill' = 'arrow.up.forward.app.fill',
|
|
472
|
+
'arrow.up.forward.circle' = 'arrow.up.forward.circle',
|
|
473
|
+
'arrow.up.forward.circle.fill' = 'arrow.up.forward.circle.fill',
|
|
474
|
+
'arrow.up.forward.square' = 'arrow.up.forward.square',
|
|
475
|
+
'arrow.up.forward.square.fill' = 'arrow.up.forward.square.fill',
|
|
476
|
+
'arrow.up.heart' = 'arrow.up.heart',
|
|
477
|
+
'arrow.up.heart.fill' = 'arrow.up.heart.fill',
|
|
478
|
+
'arrow.up.left' = 'arrow.up.left',
|
|
479
|
+
'arrow.up.left.and.arrow.down.right' = 'arrow.up.left.and.arrow.down.right',
|
|
480
|
+
'arrow.up.left.and.arrow.down.right.circle' = 'arrow.up.left.and.arrow.down.right.circle',
|
|
481
|
+
'arrow.up.left.and.arrow.down.right.circle.fill' = 'arrow.up.left.and.arrow.down.right.circle.fill',
|
|
482
|
+
'arrow.up.left.and.down.right.and.arrow.up.right.and.down.left' = 'arrow.up.left.and.down.right.and.arrow.up.right.and.down.left',
|
|
483
|
+
'arrow.up.left.and.down.right.magnifyingglass' = 'arrow.up.left.and.down.right.magnifyingglass',
|
|
484
|
+
'arrow.up.left.circle' = 'arrow.up.left.circle',
|
|
485
|
+
'arrow.up.left.circle.fill' = 'arrow.up.left.circle.fill',
|
|
486
|
+
'arrow.up.left.square' = 'arrow.up.left.square',
|
|
487
|
+
'arrow.up.left.square.fill' = 'arrow.up.left.square.fill',
|
|
488
|
+
'arrow.up.message' = 'arrow.up.message',
|
|
489
|
+
'arrow.up.message.fill' = 'arrow.up.message.fill',
|
|
490
|
+
'arrow.up.right' = 'arrow.up.right',
|
|
491
|
+
'arrow.up.right.and.arrow.down.left.rectangle' = 'arrow.up.right.and.arrow.down.left.rectangle',
|
|
492
|
+
'arrow.up.right.and.arrow.down.left.rectangle.fill' = 'arrow.up.right.and.arrow.down.left.rectangle.fill',
|
|
493
|
+
'arrow.up.right.circle' = 'arrow.up.right.circle',
|
|
494
|
+
'arrow.up.right.circle.fill' = 'arrow.up.right.circle.fill',
|
|
495
|
+
'arrow.up.right.square' = 'arrow.up.right.square',
|
|
496
|
+
'arrow.up.right.square.fill' = 'arrow.up.right.square.fill',
|
|
497
|
+
'arrow.up.right.video' = 'arrow.up.right.video',
|
|
498
|
+
'arrow.up.right.video.fill' = 'arrow.up.right.video.fill',
|
|
499
|
+
'arrow.up.square' = 'arrow.up.square',
|
|
500
|
+
'arrow.up.square.fill' = 'arrow.up.square.fill',
|
|
501
|
+
'arrow.up.to.line' = 'arrow.up.to.line',
|
|
502
|
+
'arrow.up.to.line.alt' = 'arrow.up.to.line.alt',
|
|
503
|
+
'arrow.uturn.backward' = 'arrow.uturn.backward',
|
|
504
|
+
'arrow.uturn.backward.circle' = 'arrow.uturn.backward.circle',
|
|
505
|
+
'arrow.uturn.backward.circle.badge.ellipsis' = 'arrow.uturn.backward.circle.badge.ellipsis',
|
|
506
|
+
'arrow.uturn.backward.circle.fill' = 'arrow.uturn.backward.circle.fill',
|
|
507
|
+
'arrow.uturn.backward.square' = 'arrow.uturn.backward.square',
|
|
508
|
+
'arrow.uturn.backward.square.fill' = 'arrow.uturn.backward.square.fill',
|
|
509
|
+
'arrow.uturn.down' = 'arrow.uturn.down',
|
|
510
|
+
'arrow.uturn.down.circle' = 'arrow.uturn.down.circle',
|
|
511
|
+
'arrow.uturn.down.circle.fill' = 'arrow.uturn.down.circle.fill',
|
|
512
|
+
'arrow.uturn.down.square' = 'arrow.uturn.down.square',
|
|
513
|
+
'arrow.uturn.down.square.fill' = 'arrow.uturn.down.square.fill',
|
|
514
|
+
'arrow.uturn.forward' = 'arrow.uturn.forward',
|
|
515
|
+
'arrow.uturn.forward.circle' = 'arrow.uturn.forward.circle',
|
|
516
|
+
'arrow.uturn.forward.circle.fill' = 'arrow.uturn.forward.circle.fill',
|
|
517
|
+
'arrow.uturn.forward.square' = 'arrow.uturn.forward.square',
|
|
518
|
+
'arrow.uturn.forward.square.fill' = 'arrow.uturn.forward.square.fill',
|
|
519
|
+
'arrow.uturn.left' = 'arrow.uturn.left',
|
|
520
|
+
'arrow.uturn.left.circle' = 'arrow.uturn.left.circle',
|
|
521
|
+
'arrow.uturn.left.circle.badge.ellipsis' = 'arrow.uturn.left.circle.badge.ellipsis',
|
|
522
|
+
'arrow.uturn.left.circle.fill' = 'arrow.uturn.left.circle.fill',
|
|
523
|
+
'arrow.uturn.left.square' = 'arrow.uturn.left.square',
|
|
524
|
+
'arrow.uturn.left.square.fill' = 'arrow.uturn.left.square.fill',
|
|
525
|
+
'arrow.uturn.right' = 'arrow.uturn.right',
|
|
526
|
+
'arrow.uturn.right.circle' = 'arrow.uturn.right.circle',
|
|
527
|
+
'arrow.uturn.right.circle.fill' = 'arrow.uturn.right.circle.fill',
|
|
528
|
+
'arrow.uturn.right.square' = 'arrow.uturn.right.square',
|
|
529
|
+
'arrow.uturn.right.square.fill' = 'arrow.uturn.right.square.fill',
|
|
530
|
+
'arrow.uturn.up' = 'arrow.uturn.up',
|
|
531
|
+
'arrow.uturn.up.circle' = 'arrow.uturn.up.circle',
|
|
532
|
+
'arrow.uturn.up.circle.fill' = 'arrow.uturn.up.circle.fill',
|
|
533
|
+
'arrow.uturn.up.square' = 'arrow.uturn.up.square',
|
|
534
|
+
'arrow.uturn.up.square.fill' = 'arrow.uturn.up.square.fill',
|
|
535
|
+
'arrowshape.bounce.forward' = 'arrowshape.bounce.forward',
|
|
536
|
+
'arrowshape.bounce.forward.fill' = 'arrowshape.bounce.forward.fill',
|
|
537
|
+
'arrowshape.bounce.right' = 'arrowshape.bounce.right',
|
|
538
|
+
'arrowshape.bounce.right.fill' = 'arrowshape.bounce.right.fill',
|
|
539
|
+
'arrowshape.turn.up.backward' = 'arrowshape.turn.up.backward',
|
|
540
|
+
'arrowshape.turn.up.backward.2' = 'arrowshape.turn.up.backward.2',
|
|
541
|
+
'arrowshape.turn.up.backward.2.circle' = 'arrowshape.turn.up.backward.2.circle',
|
|
542
|
+
'arrowshape.turn.up.backward.2.circle.fill' = 'arrowshape.turn.up.backward.2.circle.fill',
|
|
543
|
+
'arrowshape.turn.up.backward.2.fill' = 'arrowshape.turn.up.backward.2.fill',
|
|
544
|
+
'arrowshape.turn.up.backward.circle' = 'arrowshape.turn.up.backward.circle',
|
|
545
|
+
'arrowshape.turn.up.backward.circle.fill' = 'arrowshape.turn.up.backward.circle.fill',
|
|
546
|
+
'arrowshape.turn.up.backward.fill' = 'arrowshape.turn.up.backward.fill',
|
|
547
|
+
'arrowshape.turn.up.forward' = 'arrowshape.turn.up.forward',
|
|
548
|
+
'arrowshape.turn.up.forward.circle' = 'arrowshape.turn.up.forward.circle',
|
|
549
|
+
'arrowshape.turn.up.forward.circle.fill' = 'arrowshape.turn.up.forward.circle.fill',
|
|
550
|
+
'arrowshape.turn.up.forward.fill' = 'arrowshape.turn.up.forward.fill',
|
|
551
|
+
'arrowshape.turn.up.left' = 'arrowshape.turn.up.left',
|
|
552
|
+
'arrowshape.turn.up.left.2' = 'arrowshape.turn.up.left.2',
|
|
553
|
+
'arrowshape.turn.up.left.2.circle' = 'arrowshape.turn.up.left.2.circle',
|
|
554
|
+
'arrowshape.turn.up.left.2.circle.fill' = 'arrowshape.turn.up.left.2.circle.fill',
|
|
555
|
+
'arrowshape.turn.up.left.2.fill' = 'arrowshape.turn.up.left.2.fill',
|
|
556
|
+
'arrowshape.turn.up.left.circle' = 'arrowshape.turn.up.left.circle',
|
|
557
|
+
'arrowshape.turn.up.left.circle.fill' = 'arrowshape.turn.up.left.circle.fill',
|
|
558
|
+
'arrowshape.turn.up.left.fill' = 'arrowshape.turn.up.left.fill',
|
|
559
|
+
'arrowshape.turn.up.right' = 'arrowshape.turn.up.right',
|
|
560
|
+
'arrowshape.turn.up.right.circle' = 'arrowshape.turn.up.right.circle',
|
|
561
|
+
'arrowshape.turn.up.right.circle.fill' = 'arrowshape.turn.up.right.circle.fill',
|
|
562
|
+
'arrowshape.turn.up.right.fill' = 'arrowshape.turn.up.right.fill',
|
|
563
|
+
'arrowshape.zigzag.forward' = 'arrowshape.zigzag.forward',
|
|
564
|
+
'arrowshape.zigzag.forward.fill' = 'arrowshape.zigzag.forward.fill',
|
|
565
|
+
'arrowshape.zigzag.right' = 'arrowshape.zigzag.right',
|
|
566
|
+
'arrowshape.zigzag.right.fill' = 'arrowshape.zigzag.right.fill',
|
|
567
|
+
'arrowtriangle.backward' = 'arrowtriangle.backward',
|
|
568
|
+
'arrowtriangle.backward.circle' = 'arrowtriangle.backward.circle',
|
|
569
|
+
'arrowtriangle.backward.circle.fill' = 'arrowtriangle.backward.circle.fill',
|
|
570
|
+
'arrowtriangle.backward.fill' = 'arrowtriangle.backward.fill',
|
|
571
|
+
'arrowtriangle.backward.square' = 'arrowtriangle.backward.square',
|
|
572
|
+
'arrowtriangle.backward.square.fill' = 'arrowtriangle.backward.square.fill',
|
|
573
|
+
'arrowtriangle.down' = 'arrowtriangle.down',
|
|
574
|
+
'arrowtriangle.down.circle' = 'arrowtriangle.down.circle',
|
|
575
|
+
'arrowtriangle.down.circle.fill' = 'arrowtriangle.down.circle.fill',
|
|
576
|
+
'arrowtriangle.down.fill' = 'arrowtriangle.down.fill',
|
|
577
|
+
'arrowtriangle.down.square' = 'arrowtriangle.down.square',
|
|
578
|
+
'arrowtriangle.down.square.fill' = 'arrowtriangle.down.square.fill',
|
|
579
|
+
'arrowtriangle.forward' = 'arrowtriangle.forward',
|
|
580
|
+
'arrowtriangle.forward.circle' = 'arrowtriangle.forward.circle',
|
|
581
|
+
'arrowtriangle.forward.circle.fill' = 'arrowtriangle.forward.circle.fill',
|
|
582
|
+
'arrowtriangle.forward.fill' = 'arrowtriangle.forward.fill',
|
|
583
|
+
'arrowtriangle.forward.square' = 'arrowtriangle.forward.square',
|
|
584
|
+
'arrowtriangle.forward.square.fill' = 'arrowtriangle.forward.square.fill',
|
|
585
|
+
'arrowtriangle.left' = 'arrowtriangle.left',
|
|
586
|
+
'arrowtriangle.left.and.line.vertical.and.arrowtriangle.right' = 'arrowtriangle.left.and.line.vertical.and.arrowtriangle.right',
|
|
587
|
+
'arrowtriangle.left.circle' = 'arrowtriangle.left.circle',
|
|
588
|
+
'arrowtriangle.left.circle.fill' = 'arrowtriangle.left.circle.fill',
|
|
589
|
+
'arrowtriangle.left.fill' = 'arrowtriangle.left.fill',
|
|
590
|
+
'arrowtriangle.left.fill.and.line.vertical.and.arrowtriangle.right.fill' = 'arrowtriangle.left.fill.and.line.vertical.and.arrowtriangle.right.fill',
|
|
591
|
+
'arrowtriangle.left.square' = 'arrowtriangle.left.square',
|
|
592
|
+
'arrowtriangle.left.square.fill' = 'arrowtriangle.left.square.fill',
|
|
593
|
+
'arrowtriangle.right' = 'arrowtriangle.right',
|
|
594
|
+
'arrowtriangle.right.and.line.vertical.and.arrowtriangle.left' = 'arrowtriangle.right.and.line.vertical.and.arrowtriangle.left',
|
|
595
|
+
'arrowtriangle.right.circle' = 'arrowtriangle.right.circle',
|
|
596
|
+
'arrowtriangle.right.circle.fill' = 'arrowtriangle.right.circle.fill',
|
|
597
|
+
'arrowtriangle.right.fill' = 'arrowtriangle.right.fill',
|
|
598
|
+
'arrowtriangle.right.fill.and.line.vertical.and.arrowtriangle.left.fill' = 'arrowtriangle.right.fill.and.line.vertical.and.arrowtriangle.left.fill',
|
|
599
|
+
'arrowtriangle.right.square' = 'arrowtriangle.right.square',
|
|
600
|
+
'arrowtriangle.right.square.fill' = 'arrowtriangle.right.square.fill',
|
|
601
|
+
'arrowtriangle.up' = 'arrowtriangle.up',
|
|
602
|
+
'arrowtriangle.up.circle' = 'arrowtriangle.up.circle',
|
|
603
|
+
'arrowtriangle.up.circle.fill' = 'arrowtriangle.up.circle.fill',
|
|
604
|
+
'arrowtriangle.up.fill' = 'arrowtriangle.up.fill',
|
|
605
|
+
'arrowtriangle.up.square' = 'arrowtriangle.up.square',
|
|
606
|
+
'arrowtriangle.up.square.fill' = 'arrowtriangle.up.square.fill',
|
|
607
|
+
'aspectratio' = 'aspectratio',
|
|
608
|
+
'aspectratio.fill' = 'aspectratio.fill',
|
|
609
|
+
'asterisk.circle' = 'asterisk.circle',
|
|
610
|
+
'asterisk.circle.fill' = 'asterisk.circle.fill',
|
|
611
|
+
'at' = 'at',
|
|
612
|
+
'at.badge.minus' = 'at.badge.minus',
|
|
613
|
+
'at.badge.plus' = 'at.badge.plus',
|
|
614
|
+
'at.circle' = 'at.circle',
|
|
615
|
+
'at.circle.fill' = 'at.circle.fill',
|
|
616
|
+
'atom' = 'atom',
|
|
617
|
+
'australsign.circle' = 'australsign.circle',
|
|
618
|
+
'australsign.circle.fill' = 'australsign.circle.fill',
|
|
619
|
+
'australsign.square' = 'australsign.square',
|
|
620
|
+
'australsign.square.fill' = 'australsign.square.fill',
|
|
621
|
+
'b.circle' = 'b.circle',
|
|
622
|
+
'b.circle.fill' = 'b.circle.fill',
|
|
623
|
+
'b.square' = 'b.square',
|
|
624
|
+
'b.square.fill' = 'b.square.fill',
|
|
625
|
+
'backward' = 'backward',
|
|
626
|
+
'backward.end' = 'backward.end',
|
|
627
|
+
'backward.end.alt' = 'backward.end.alt',
|
|
628
|
+
'backward.end.alt.fill' = 'backward.end.alt.fill',
|
|
629
|
+
'backward.end.fill' = 'backward.end.fill',
|
|
630
|
+
'backward.fill' = 'backward.fill',
|
|
631
|
+
'backward.frame' = 'backward.frame',
|
|
632
|
+
'backward.frame.fill' = 'backward.frame.fill',
|
|
633
|
+
'badge.plus.radiowaves.forward' = 'badge.plus.radiowaves.forward',
|
|
634
|
+
'badge.plus.radiowaves.right' = 'badge.plus.radiowaves.right',
|
|
635
|
+
'bag' = 'bag',
|
|
636
|
+
'bag.badge.minus' = 'bag.badge.minus',
|
|
637
|
+
'bag.badge.plus' = 'bag.badge.plus',
|
|
638
|
+
'bag.circle' = 'bag.circle',
|
|
639
|
+
'bag.circle.fill' = 'bag.circle.fill',
|
|
640
|
+
'bag.fill' = 'bag.fill',
|
|
641
|
+
'bag.fill.badge.minus' = 'bag.fill.badge.minus',
|
|
642
|
+
'bag.fill.badge.plus' = 'bag.fill.badge.plus',
|
|
643
|
+
'bahtsign.circle' = 'bahtsign.circle',
|
|
644
|
+
'bahtsign.circle.fill' = 'bahtsign.circle.fill',
|
|
645
|
+
'bahtsign.square' = 'bahtsign.square',
|
|
646
|
+
'bahtsign.square.fill' = 'bahtsign.square.fill',
|
|
647
|
+
'bandage' = 'bandage',
|
|
648
|
+
'bandage.fill' = 'bandage.fill',
|
|
649
|
+
'banknote' = 'banknote',
|
|
650
|
+
'banknote.fill' = 'banknote.fill',
|
|
651
|
+
'barcode' = 'barcode',
|
|
652
|
+
'barcode.viewfinder' = 'barcode.viewfinder',
|
|
653
|
+
'barometer' = 'barometer',
|
|
654
|
+
'battery.0' = 'battery.0',
|
|
655
|
+
'battery.100' = 'battery.100',
|
|
656
|
+
'battery.100.bolt' = 'battery.100.bolt',
|
|
657
|
+
'battery.25' = 'battery.25',
|
|
658
|
+
'bed.double' = 'bed.double',
|
|
659
|
+
'bed.double.fill' = 'bed.double.fill',
|
|
660
|
+
'bell' = 'bell',
|
|
661
|
+
'bell.badge' = 'bell.badge',
|
|
662
|
+
'bell.badge.fill' = 'bell.badge.fill',
|
|
663
|
+
'bell.circle' = 'bell.circle',
|
|
664
|
+
'bell.circle.fill' = 'bell.circle.fill',
|
|
665
|
+
'bell.fill' = 'bell.fill',
|
|
666
|
+
'bell.slash' = 'bell.slash',
|
|
667
|
+
'bell.slash.circle' = 'bell.slash.circle',
|
|
668
|
+
'bell.slash.circle.fill' = 'bell.slash.circle.fill',
|
|
669
|
+
'bell.slash.fill' = 'bell.slash.fill',
|
|
670
|
+
'bicycle' = 'bicycle',
|
|
671
|
+
'bicycle.circle' = 'bicycle.circle',
|
|
672
|
+
'bicycle.circle.fill' = 'bicycle.circle.fill',
|
|
673
|
+
'binoculars' = 'binoculars',
|
|
674
|
+
'binoculars.fill' = 'binoculars.fill',
|
|
675
|
+
'bitcoinsign.circle' = 'bitcoinsign.circle',
|
|
676
|
+
'bitcoinsign.circle.fill' = 'bitcoinsign.circle.fill',
|
|
677
|
+
'bitcoinsign.square' = 'bitcoinsign.square',
|
|
678
|
+
'bitcoinsign.square.fill' = 'bitcoinsign.square.fill',
|
|
679
|
+
'bold' = 'bold',
|
|
680
|
+
'bold.italic.underline' = 'bold.italic.underline',
|
|
681
|
+
'bold.underline' = 'bold.underline',
|
|
682
|
+
'bolt' = 'bolt',
|
|
683
|
+
'bolt.badge.a' = 'bolt.badge.a',
|
|
684
|
+
'bolt.badge.a.fill' = 'bolt.badge.a.fill',
|
|
685
|
+
'bolt.car' = 'bolt.car',
|
|
686
|
+
'bolt.car.fill' = 'bolt.car.fill',
|
|
687
|
+
'bolt.circle' = 'bolt.circle',
|
|
688
|
+
'bolt.circle.fill' = 'bolt.circle.fill',
|
|
689
|
+
'bolt.fill' = 'bolt.fill',
|
|
690
|
+
'bolt.fill.batteryblock' = 'bolt.fill.batteryblock',
|
|
691
|
+
'bolt.fill.batteryblock.fill' = 'bolt.fill.batteryblock.fill',
|
|
692
|
+
'bolt.heart' = 'bolt.heart',
|
|
693
|
+
'bolt.heart.fill' = 'bolt.heart.fill',
|
|
694
|
+
'bolt.horizontal' = 'bolt.horizontal',
|
|
695
|
+
'bolt.horizontal.circle' = 'bolt.horizontal.circle',
|
|
696
|
+
'bolt.horizontal.circle.fill' = 'bolt.horizontal.circle.fill',
|
|
697
|
+
'bolt.horizontal.fill' = 'bolt.horizontal.fill',
|
|
698
|
+
'bolt.horizontal.icloud' = 'bolt.horizontal.icloud',
|
|
699
|
+
'bolt.horizontal.icloud.fill' = 'bolt.horizontal.icloud.fill',
|
|
700
|
+
'bolt.slash' = 'bolt.slash',
|
|
701
|
+
'bolt.slash.circle' = 'bolt.slash.circle',
|
|
702
|
+
'bolt.slash.circle.fill' = 'bolt.slash.circle.fill',
|
|
703
|
+
'bolt.slash.fill' = 'bolt.slash.fill',
|
|
704
|
+
'bonjour' = 'bonjour',
|
|
705
|
+
'book' = 'book',
|
|
706
|
+
'book.circle' = 'book.circle',
|
|
707
|
+
'book.circle.fill' = 'book.circle.fill',
|
|
708
|
+
'book.closed' = 'book.closed',
|
|
709
|
+
'book.closed.fill' = 'book.closed.fill',
|
|
710
|
+
'book.fill' = 'book.fill',
|
|
711
|
+
'bookmark' = 'bookmark',
|
|
712
|
+
'bookmark.circle' = 'bookmark.circle',
|
|
713
|
+
'bookmark.circle.fill' = 'bookmark.circle.fill',
|
|
714
|
+
'bookmark.fill' = 'bookmark.fill',
|
|
715
|
+
'bookmark.slash' = 'bookmark.slash',
|
|
716
|
+
'bookmark.slash.fill' = 'bookmark.slash.fill',
|
|
717
|
+
'books.vertical' = 'books.vertical',
|
|
718
|
+
'books.vertical.fill' = 'books.vertical.fill',
|
|
719
|
+
'brazilianrealsign.circle' = 'brazilianrealsign.circle',
|
|
720
|
+
'brazilianrealsign.circle.fill' = 'brazilianrealsign.circle.fill',
|
|
721
|
+
'brazilianrealsign.square' = 'brazilianrealsign.square',
|
|
722
|
+
'brazilianrealsign.square.fill' = 'brazilianrealsign.square.fill',
|
|
723
|
+
'briefcase' = 'briefcase',
|
|
724
|
+
'briefcase.fill' = 'briefcase.fill',
|
|
725
|
+
'bubble.left' = 'bubble.left',
|
|
726
|
+
'bubble.left.and.bubble.right' = 'bubble.left.and.bubble.right',
|
|
727
|
+
'bubble.left.and.bubble.right.fill' = 'bubble.left.and.bubble.right.fill',
|
|
728
|
+
'bubble.left.fill' = 'bubble.left.fill',
|
|
729
|
+
'bubble.middle.bottom' = 'bubble.middle.bottom',
|
|
730
|
+
'bubble.middle.bottom.fill' = 'bubble.middle.bottom.fill',
|
|
731
|
+
'bubble.middle.top' = 'bubble.middle.top',
|
|
732
|
+
'bubble.middle.top.fill' = 'bubble.middle.top.fill',
|
|
733
|
+
'bubble.right' = 'bubble.right',
|
|
734
|
+
'bubble.right.fill' = 'bubble.right.fill',
|
|
735
|
+
'building' = 'building',
|
|
736
|
+
'building.2' = 'building.2',
|
|
737
|
+
'building.2.crop.circle' = 'building.2.crop.circle',
|
|
738
|
+
'building.2.crop.circle.fill' = 'building.2.crop.circle.fill',
|
|
739
|
+
'building.2.fill' = 'building.2.fill',
|
|
740
|
+
'building.columns' = 'building.columns',
|
|
741
|
+
'building.columns.fill' = 'building.columns.fill',
|
|
742
|
+
'building.fill' = 'building.fill',
|
|
743
|
+
'burn' = 'burn',
|
|
744
|
+
'burst' = 'burst',
|
|
745
|
+
'burst.fill' = 'burst.fill',
|
|
746
|
+
'bus' = 'bus',
|
|
747
|
+
'bus.doubledecker' = 'bus.doubledecker',
|
|
748
|
+
'bus.doubledecker.fill' = 'bus.doubledecker.fill',
|
|
749
|
+
'bus.fill' = 'bus.fill',
|
|
750
|
+
'c.circle' = 'c.circle',
|
|
751
|
+
'c.circle.fill' = 'c.circle.fill',
|
|
752
|
+
'c.square' = 'c.square',
|
|
753
|
+
'c.square.fill' = 'c.square.fill',
|
|
754
|
+
'calendar' = 'calendar',
|
|
755
|
+
'calendar.badge.clock' = 'calendar.badge.clock',
|
|
756
|
+
'calendar.badge.exclamationmark' = 'calendar.badge.exclamationmark',
|
|
757
|
+
'calendar.badge.minus' = 'calendar.badge.minus',
|
|
758
|
+
'calendar.badge.plus' = 'calendar.badge.plus',
|
|
759
|
+
'calendar.circle' = 'calendar.circle',
|
|
760
|
+
'calendar.circle.fill' = 'calendar.circle.fill',
|
|
761
|
+
'camera' = 'camera',
|
|
762
|
+
'camera.aperture' = 'camera.aperture',
|
|
763
|
+
'camera.badge.ellipsis' = 'camera.badge.ellipsis',
|
|
764
|
+
'camera.circle' = 'camera.circle',
|
|
765
|
+
'camera.circle.fill' = 'camera.circle.fill',
|
|
766
|
+
'camera.fill' = 'camera.fill',
|
|
767
|
+
'camera.fill.badge.ellipsis' = 'camera.fill.badge.ellipsis',
|
|
768
|
+
'camera.filters' = 'camera.filters',
|
|
769
|
+
'camera.metering.center.weighted' = 'camera.metering.center.weighted',
|
|
770
|
+
'camera.metering.center.weighted.average' = 'camera.metering.center.weighted.average',
|
|
771
|
+
'camera.metering.matrix' = 'camera.metering.matrix',
|
|
772
|
+
'camera.metering.multispot' = 'camera.metering.multispot',
|
|
773
|
+
'camera.metering.none' = 'camera.metering.none',
|
|
774
|
+
'camera.metering.partial' = 'camera.metering.partial',
|
|
775
|
+
'camera.metering.spot' = 'camera.metering.spot',
|
|
776
|
+
'camera.metering.unknown' = 'camera.metering.unknown',
|
|
777
|
+
'camera.on.rectangle' = 'camera.on.rectangle',
|
|
778
|
+
'camera.on.rectangle.fill' = 'camera.on.rectangle.fill',
|
|
779
|
+
'camera.viewfinder' = 'camera.viewfinder',
|
|
780
|
+
'candybarphone' = 'candybarphone',
|
|
781
|
+
'capslock' = 'capslock',
|
|
782
|
+
'capslock.fill' = 'capslock.fill',
|
|
783
|
+
'capsule' = 'capsule',
|
|
784
|
+
'capsule.fill' = 'capsule.fill',
|
|
785
|
+
'capsule.portrait' = 'capsule.portrait',
|
|
786
|
+
'capsule.portrait.fill' = 'capsule.portrait.fill',
|
|
787
|
+
'captions.bubble' = 'captions.bubble',
|
|
788
|
+
'captions.bubble.fill' = 'captions.bubble.fill',
|
|
789
|
+
'car' = 'car',
|
|
790
|
+
'car.2' = 'car.2',
|
|
791
|
+
'car.2.fill' = 'car.2.fill',
|
|
792
|
+
'car.circle' = 'car.circle',
|
|
793
|
+
'car.circle.fill' = 'car.circle.fill',
|
|
794
|
+
'car.fill' = 'car.fill',
|
|
795
|
+
'cart' = 'cart',
|
|
796
|
+
'cart.badge.minus' = 'cart.badge.minus',
|
|
797
|
+
'cart.badge.plus' = 'cart.badge.plus',
|
|
798
|
+
'cart.circle' = 'cart.circle',
|
|
799
|
+
'cart.circle.fill' = 'cart.circle.fill',
|
|
800
|
+
'cart.fill' = 'cart.fill',
|
|
801
|
+
'cart.fill.badge.minus' = 'cart.fill.badge.minus',
|
|
802
|
+
'cart.fill.badge.plus' = 'cart.fill.badge.plus',
|
|
803
|
+
'case' = 'case',
|
|
804
|
+
'case.fill' = 'case.fill',
|
|
805
|
+
'cedisign.circle' = 'cedisign.circle',
|
|
806
|
+
'cedisign.circle.fill' = 'cedisign.circle.fill',
|
|
807
|
+
'cedisign.square' = 'cedisign.square',
|
|
808
|
+
'cedisign.square.fill' = 'cedisign.square.fill',
|
|
809
|
+
'centsign.circle' = 'centsign.circle',
|
|
810
|
+
'centsign.circle.fill' = 'centsign.circle.fill',
|
|
811
|
+
'centsign.square' = 'centsign.square',
|
|
812
|
+
'centsign.square.fill' = 'centsign.square.fill',
|
|
813
|
+
'character' = 'character',
|
|
814
|
+
'character.book.closed' = 'character.book.closed',
|
|
815
|
+
'character.book.closed.fill' = 'character.book.closed.fill',
|
|
816
|
+
'chart.bar' = 'chart.bar',
|
|
817
|
+
'chart.bar.doc.horizontal' = 'chart.bar.doc.horizontal',
|
|
818
|
+
'chart.bar.doc.horizontal.fill' = 'chart.bar.doc.horizontal.fill',
|
|
819
|
+
'chart.bar.fill' = 'chart.bar.fill',
|
|
820
|
+
'chart.bar.xaxis' = 'chart.bar.xaxis',
|
|
821
|
+
'chart.pie' = 'chart.pie',
|
|
822
|
+
'chart.pie.fill' = 'chart.pie.fill',
|
|
823
|
+
'checkerboard.rectangle' = 'checkerboard.rectangle',
|
|
824
|
+
'checkmark' = 'checkmark',
|
|
825
|
+
'checkmark.circle' = 'checkmark.circle',
|
|
826
|
+
'checkmark.circle.fill' = 'checkmark.circle.fill',
|
|
827
|
+
'checkmark.icloud' = 'checkmark.icloud',
|
|
828
|
+
'checkmark.icloud.fill' = 'checkmark.icloud.fill',
|
|
829
|
+
'checkmark.rectangle' = 'checkmark.rectangle',
|
|
830
|
+
'checkmark.rectangle.fill' = 'checkmark.rectangle.fill',
|
|
831
|
+
'checkmark.rectangle.portrait' = 'checkmark.rectangle.portrait',
|
|
832
|
+
'checkmark.rectangle.portrait.fill' = 'checkmark.rectangle.portrait.fill',
|
|
833
|
+
'checkmark.seal' = 'checkmark.seal',
|
|
834
|
+
'checkmark.seal.fill' = 'checkmark.seal.fill',
|
|
835
|
+
'checkmark.shield' = 'checkmark.shield',
|
|
836
|
+
'checkmark.shield.fill' = 'checkmark.shield.fill',
|
|
837
|
+
'checkmark.square' = 'checkmark.square',
|
|
838
|
+
'checkmark.square.fill' = 'checkmark.square.fill',
|
|
839
|
+
'chevron.backward' = 'chevron.backward',
|
|
840
|
+
'chevron.backward.2' = 'chevron.backward.2',
|
|
841
|
+
'chevron.backward.circle' = 'chevron.backward.circle',
|
|
842
|
+
'chevron.backward.circle.fill' = 'chevron.backward.circle.fill',
|
|
843
|
+
'chevron.backward.square' = 'chevron.backward.square',
|
|
844
|
+
'chevron.backward.square.fill' = 'chevron.backward.square.fill',
|
|
845
|
+
'chevron.compact.down' = 'chevron.compact.down',
|
|
846
|
+
'chevron.compact.left' = 'chevron.compact.left',
|
|
847
|
+
'chevron.compact.right' = 'chevron.compact.right',
|
|
848
|
+
'chevron.compact.up' = 'chevron.compact.up',
|
|
849
|
+
'chevron.down' = 'chevron.down',
|
|
850
|
+
'chevron.down.circle' = 'chevron.down.circle',
|
|
851
|
+
'chevron.down.circle.fill' = 'chevron.down.circle.fill',
|
|
852
|
+
'chevron.down.square' = 'chevron.down.square',
|
|
853
|
+
'chevron.down.square.fill' = 'chevron.down.square.fill',
|
|
854
|
+
'chevron.forward' = 'chevron.forward',
|
|
855
|
+
'chevron.forward.2' = 'chevron.forward.2',
|
|
856
|
+
'chevron.forward.circle' = 'chevron.forward.circle',
|
|
857
|
+
'chevron.forward.circle.fill' = 'chevron.forward.circle.fill',
|
|
858
|
+
'chevron.forward.square' = 'chevron.forward.square',
|
|
859
|
+
'chevron.forward.square.fill' = 'chevron.forward.square.fill',
|
|
860
|
+
'chevron.left' = 'chevron.left',
|
|
861
|
+
'chevron.left.2' = 'chevron.left.2',
|
|
862
|
+
'chevron.left.circle' = 'chevron.left.circle',
|
|
863
|
+
'chevron.left.circle.fill' = 'chevron.left.circle.fill',
|
|
864
|
+
'chevron.left.slash.chevron.right' = 'chevron.left.slash.chevron.right',
|
|
865
|
+
'chevron.left.square' = 'chevron.left.square',
|
|
866
|
+
'chevron.left.square.fill' = 'chevron.left.square.fill',
|
|
867
|
+
'chevron.right' = 'chevron.right',
|
|
868
|
+
'chevron.right.2' = 'chevron.right.2',
|
|
869
|
+
'chevron.right.circle' = 'chevron.right.circle',
|
|
870
|
+
'chevron.right.circle.fill' = 'chevron.right.circle.fill',
|
|
871
|
+
'chevron.right.square' = 'chevron.right.square',
|
|
872
|
+
'chevron.right.square.fill' = 'chevron.right.square.fill',
|
|
873
|
+
'chevron.up' = 'chevron.up',
|
|
874
|
+
'chevron.up.chevron.down' = 'chevron.up.chevron.down',
|
|
875
|
+
'chevron.up.circle' = 'chevron.up.circle',
|
|
876
|
+
'chevron.up.circle.fill' = 'chevron.up.circle.fill',
|
|
877
|
+
'chevron.up.square' = 'chevron.up.square',
|
|
878
|
+
'chevron.up.square.fill' = 'chevron.up.square.fill',
|
|
879
|
+
'circle' = 'circle',
|
|
880
|
+
'circle.bottomhalf.fill' = 'circle.bottomhalf.fill',
|
|
881
|
+
'circle.circle' = 'circle.circle',
|
|
882
|
+
'circle.circle.fill' = 'circle.circle.fill',
|
|
883
|
+
'circle.dashed' = 'circle.dashed',
|
|
884
|
+
'circle.dashed.inset.fill' = 'circle.dashed.inset.fill',
|
|
885
|
+
'circle.fill' = 'circle.fill',
|
|
886
|
+
'circle.fill.square.fill' = 'circle.fill.square.fill',
|
|
887
|
+
'circle.grid.2x2' = 'circle.grid.2x2',
|
|
888
|
+
'circle.grid.2x2.fill' = 'circle.grid.2x2.fill',
|
|
889
|
+
'circle.grid.3x3' = 'circle.grid.3x3',
|
|
890
|
+
'circle.grid.3x3.fill' = 'circle.grid.3x3.fill',
|
|
891
|
+
'circle.grid.cross' = 'circle.grid.cross',
|
|
892
|
+
'circle.grid.cross.down.fill' = 'circle.grid.cross.down.fill',
|
|
893
|
+
'circle.grid.cross.fill' = 'circle.grid.cross.fill',
|
|
894
|
+
'circle.grid.cross.left.fill' = 'circle.grid.cross.left.fill',
|
|
895
|
+
'circle.grid.cross.right.fill' = 'circle.grid.cross.right.fill',
|
|
896
|
+
'circle.grid.cross.up.fill' = 'circle.grid.cross.up.fill',
|
|
897
|
+
'circle.lefthalf.fill' = 'circle.lefthalf.fill',
|
|
898
|
+
'circle.righthalf.fill' = 'circle.righthalf.fill',
|
|
899
|
+
'circle.square' = 'circle.square',
|
|
900
|
+
'circle.tophalf.fill' = 'circle.tophalf.fill',
|
|
901
|
+
'circlebadge' = 'circlebadge',
|
|
902
|
+
'circlebadge.2' = 'circlebadge.2',
|
|
903
|
+
'circlebadge.2.fill' = 'circlebadge.2.fill',
|
|
904
|
+
'circlebadge.fill' = 'circlebadge.fill',
|
|
905
|
+
'circles.hexagongrid' = 'circles.hexagongrid',
|
|
906
|
+
'circles.hexagongrid.fill' = 'circles.hexagongrid.fill',
|
|
907
|
+
'circles.hexagonpath' = 'circles.hexagonpath',
|
|
908
|
+
'circles.hexagonpath.fill' = 'circles.hexagonpath.fill',
|
|
909
|
+
'clear' = 'clear',
|
|
910
|
+
'clear.fill' = 'clear.fill',
|
|
911
|
+
'clock' = 'clock',
|
|
912
|
+
'clock.arrow.2.circlepath' = 'clock.arrow.2.circlepath',
|
|
913
|
+
'clock.arrow.circlepath' = 'clock.arrow.circlepath',
|
|
914
|
+
'clock.fill' = 'clock.fill',
|
|
915
|
+
'cloud' = 'cloud',
|
|
916
|
+
'cloud.bolt' = 'cloud.bolt',
|
|
917
|
+
'cloud.bolt.fill' = 'cloud.bolt.fill',
|
|
918
|
+
'cloud.bolt.rain' = 'cloud.bolt.rain',
|
|
919
|
+
'cloud.bolt.rain.fill' = 'cloud.bolt.rain.fill',
|
|
920
|
+
'cloud.drizzle' = 'cloud.drizzle',
|
|
921
|
+
'cloud.drizzle.fill' = 'cloud.drizzle.fill',
|
|
922
|
+
'cloud.fill' = 'cloud.fill',
|
|
923
|
+
'cloud.fog' = 'cloud.fog',
|
|
924
|
+
'cloud.fog.fill' = 'cloud.fog.fill',
|
|
925
|
+
'cloud.hail' = 'cloud.hail',
|
|
926
|
+
'cloud.hail.fill' = 'cloud.hail.fill',
|
|
927
|
+
'cloud.heavyrain' = 'cloud.heavyrain',
|
|
928
|
+
'cloud.heavyrain.fill' = 'cloud.heavyrain.fill',
|
|
929
|
+
'cloud.moon' = 'cloud.moon',
|
|
930
|
+
'cloud.moon.bolt' = 'cloud.moon.bolt',
|
|
931
|
+
'cloud.moon.bolt.fill' = 'cloud.moon.bolt.fill',
|
|
932
|
+
'cloud.moon.fill' = 'cloud.moon.fill',
|
|
933
|
+
'cloud.moon.rain' = 'cloud.moon.rain',
|
|
934
|
+
'cloud.moon.rain.fill' = 'cloud.moon.rain.fill',
|
|
935
|
+
'cloud.rain' = 'cloud.rain',
|
|
936
|
+
'cloud.rain.fill' = 'cloud.rain.fill',
|
|
937
|
+
'cloud.sleet' = 'cloud.sleet',
|
|
938
|
+
'cloud.sleet.fill' = 'cloud.sleet.fill',
|
|
939
|
+
'cloud.snow' = 'cloud.snow',
|
|
940
|
+
'cloud.snow.fill' = 'cloud.snow.fill',
|
|
941
|
+
'cloud.sun' = 'cloud.sun',
|
|
942
|
+
'cloud.sun.bolt' = 'cloud.sun.bolt',
|
|
943
|
+
'cloud.sun.bolt.fill' = 'cloud.sun.bolt.fill',
|
|
944
|
+
'cloud.sun.fill' = 'cloud.sun.fill',
|
|
945
|
+
'cloud.sun.rain' = 'cloud.sun.rain',
|
|
946
|
+
'cloud.sun.rain.fill' = 'cloud.sun.rain.fill',
|
|
947
|
+
'coloncurrencysign.circle' = 'coloncurrencysign.circle',
|
|
948
|
+
'coloncurrencysign.circle.fill' = 'coloncurrencysign.circle.fill',
|
|
949
|
+
'coloncurrencysign.square' = 'coloncurrencysign.square',
|
|
950
|
+
'coloncurrencysign.square.fill' = 'coloncurrencysign.square.fill',
|
|
951
|
+
'comb' = 'comb',
|
|
952
|
+
'comb.fill' = 'comb.fill',
|
|
953
|
+
'command' = 'command',
|
|
954
|
+
'command.circle' = 'command.circle',
|
|
955
|
+
'command.circle.fill' = 'command.circle.fill',
|
|
956
|
+
'command.square' = 'command.square',
|
|
957
|
+
'command.square.fill' = 'command.square.fill',
|
|
958
|
+
'cone' = 'cone',
|
|
959
|
+
'cone.fill' = 'cone.fill',
|
|
960
|
+
'contextualmenu.and.cursorarrow' = 'contextualmenu.and.cursorarrow',
|
|
961
|
+
'control' = 'control',
|
|
962
|
+
'cpu' = 'cpu',
|
|
963
|
+
'creditcard' = 'creditcard',
|
|
964
|
+
'creditcard.circle' = 'creditcard.circle',
|
|
965
|
+
'creditcard.circle.fill' = 'creditcard.circle.fill',
|
|
966
|
+
'creditcard.fill' = 'creditcard.fill',
|
|
967
|
+
'crop' = 'crop',
|
|
968
|
+
'crop.rotate' = 'crop.rotate',
|
|
969
|
+
'cross' = 'cross',
|
|
970
|
+
'cross.case' = 'cross.case',
|
|
971
|
+
'cross.case.fill' = 'cross.case.fill',
|
|
972
|
+
'cross.circle' = 'cross.circle',
|
|
973
|
+
'cross.circle.fill' = 'cross.circle.fill',
|
|
974
|
+
'cross.fill' = 'cross.fill',
|
|
975
|
+
'crown' = 'crown',
|
|
976
|
+
'crown.fill' = 'crown.fill',
|
|
977
|
+
'cruzeirosign.circle' = 'cruzeirosign.circle',
|
|
978
|
+
'cruzeirosign.circle.fill' = 'cruzeirosign.circle.fill',
|
|
979
|
+
'cruzeirosign.square' = 'cruzeirosign.square',
|
|
980
|
+
'cruzeirosign.square.fill' = 'cruzeirosign.square.fill',
|
|
981
|
+
'cube' = 'cube',
|
|
982
|
+
'cube.fill' = 'cube.fill',
|
|
983
|
+
'cube.transparent' = 'cube.transparent',
|
|
984
|
+
'cube.transparent.fill' = 'cube.transparent.fill',
|
|
985
|
+
'curlybraces' = 'curlybraces',
|
|
986
|
+
'curlybraces.square' = 'curlybraces.square',
|
|
987
|
+
'curlybraces.square.fill' = 'curlybraces.square.fill',
|
|
988
|
+
'cursorarrow' = 'cursorarrow',
|
|
989
|
+
'cursorarrow.and.square.on.square.dashed' = 'cursorarrow.and.square.on.square.dashed',
|
|
990
|
+
'cursorarrow.click' = 'cursorarrow.click',
|
|
991
|
+
'cursorarrow.click.2' = 'cursorarrow.click.2',
|
|
992
|
+
'cursorarrow.click.badge.clock' = 'cursorarrow.click.badge.clock',
|
|
993
|
+
'cursorarrow.motionlines' = 'cursorarrow.motionlines',
|
|
994
|
+
'cursorarrow.motionlines.click' = 'cursorarrow.motionlines.click',
|
|
995
|
+
'cursorarrow.rays' = 'cursorarrow.rays',
|
|
996
|
+
'cursorarrow.square' = 'cursorarrow.square',
|
|
997
|
+
'cylinder' = 'cylinder',
|
|
998
|
+
'cylinder.fill' = 'cylinder.fill',
|
|
999
|
+
'cylinder.split.1x2' = 'cylinder.split.1x2',
|
|
1000
|
+
'cylinder.split.1x2.fill' = 'cylinder.split.1x2.fill',
|
|
1001
|
+
'd.circle' = 'd.circle',
|
|
1002
|
+
'd.circle.fill' = 'd.circle.fill',
|
|
1003
|
+
'd.square' = 'd.square',
|
|
1004
|
+
'd.square.fill' = 'd.square.fill',
|
|
1005
|
+
'decrease.indent' = 'decrease.indent',
|
|
1006
|
+
'decrease.quotelevel' = 'decrease.quotelevel',
|
|
1007
|
+
'delete.left' = 'delete.left',
|
|
1008
|
+
'delete.left.fill' = 'delete.left.fill',
|
|
1009
|
+
'delete.right' = 'delete.right',
|
|
1010
|
+
'delete.right.fill' = 'delete.right.fill',
|
|
1011
|
+
'deskclock' = 'deskclock',
|
|
1012
|
+
'deskclock.fill' = 'deskclock.fill',
|
|
1013
|
+
'desktopcomputer' = 'desktopcomputer',
|
|
1014
|
+
'dial.max' = 'dial.max',
|
|
1015
|
+
'dial.max.fill' = 'dial.max.fill',
|
|
1016
|
+
'dial.min' = 'dial.min',
|
|
1017
|
+
'dial.min.fill' = 'dial.min.fill',
|
|
1018
|
+
'diamond' = 'diamond',
|
|
1019
|
+
'diamond.fill' = 'diamond.fill',
|
|
1020
|
+
'die.face.1' = 'die.face.1',
|
|
1021
|
+
'die.face.1.fill' = 'die.face.1.fill',
|
|
1022
|
+
'die.face.2' = 'die.face.2',
|
|
1023
|
+
'die.face.2.fill' = 'die.face.2.fill',
|
|
1024
|
+
'die.face.3' = 'die.face.3',
|
|
1025
|
+
'die.face.3.fill' = 'die.face.3.fill',
|
|
1026
|
+
'die.face.4' = 'die.face.4',
|
|
1027
|
+
'die.face.4.fill' = 'die.face.4.fill',
|
|
1028
|
+
'die.face.5' = 'die.face.5',
|
|
1029
|
+
'die.face.5.fill' = 'die.face.5.fill',
|
|
1030
|
+
'die.face.6' = 'die.face.6',
|
|
1031
|
+
'die.face.6.fill' = 'die.face.6.fill',
|
|
1032
|
+
'directcurrent' = 'directcurrent',
|
|
1033
|
+
'display' = 'display',
|
|
1034
|
+
'display.2' = 'display.2',
|
|
1035
|
+
'display.trianglebadge.exclamationmark' = 'display.trianglebadge.exclamationmark',
|
|
1036
|
+
'divide' = 'divide',
|
|
1037
|
+
'divide.circle' = 'divide.circle',
|
|
1038
|
+
'divide.circle.fill' = 'divide.circle.fill',
|
|
1039
|
+
'divide.square' = 'divide.square',
|
|
1040
|
+
'divide.square.fill' = 'divide.square.fill',
|
|
1041
|
+
'doc' = 'doc',
|
|
1042
|
+
'doc.append' = 'doc.append',
|
|
1043
|
+
'doc.append.fill' = 'doc.append.fill',
|
|
1044
|
+
'doc.badge.ellipsis' = 'doc.badge.ellipsis',
|
|
1045
|
+
'doc.badge.gearshape' = 'doc.badge.gearshape',
|
|
1046
|
+
'doc.badge.gearshape.fill' = 'doc.badge.gearshape.fill',
|
|
1047
|
+
'doc.badge.plus' = 'doc.badge.plus',
|
|
1048
|
+
'doc.circle' = 'doc.circle',
|
|
1049
|
+
'doc.circle.fill' = 'doc.circle.fill',
|
|
1050
|
+
'doc.fill' = 'doc.fill',
|
|
1051
|
+
'doc.fill.badge.ellipsis' = 'doc.fill.badge.ellipsis',
|
|
1052
|
+
'doc.fill.badge.plus' = 'doc.fill.badge.plus',
|
|
1053
|
+
'doc.on.clipboard' = 'doc.on.clipboard',
|
|
1054
|
+
'doc.on.clipboard.fill' = 'doc.on.clipboard.fill',
|
|
1055
|
+
'doc.on.doc' = 'doc.on.doc',
|
|
1056
|
+
'doc.on.doc.fill' = 'doc.on.doc.fill',
|
|
1057
|
+
'doc.plaintext' = 'doc.plaintext',
|
|
1058
|
+
'doc.plaintext.fill' = 'doc.plaintext.fill',
|
|
1059
|
+
'doc.richtext' = 'doc.richtext',
|
|
1060
|
+
'doc.richtext.fill' = 'doc.richtext.fill',
|
|
1061
|
+
'doc.text' = 'doc.text',
|
|
1062
|
+
'doc.text.below.ecg' = 'doc.text.below.ecg',
|
|
1063
|
+
'doc.text.below.ecg.fill' = 'doc.text.below.ecg.fill',
|
|
1064
|
+
'doc.text.fill' = 'doc.text.fill',
|
|
1065
|
+
'doc.text.fill.viewfinder' = 'doc.text.fill.viewfinder',
|
|
1066
|
+
'doc.text.magnifyingglass' = 'doc.text.magnifyingglass',
|
|
1067
|
+
'doc.text.viewfinder' = 'doc.text.viewfinder',
|
|
1068
|
+
'doc.zipper' = 'doc.zipper',
|
|
1069
|
+
'dock.arrow.down.rectangle' = 'dock.arrow.down.rectangle',
|
|
1070
|
+
'dock.arrow.up.rectangle' = 'dock.arrow.up.rectangle',
|
|
1071
|
+
'dock.rectangle' = 'dock.rectangle',
|
|
1072
|
+
'dollarsign.circle' = 'dollarsign.circle',
|
|
1073
|
+
'dollarsign.circle.fill' = 'dollarsign.circle.fill',
|
|
1074
|
+
'dollarsign.square' = 'dollarsign.square',
|
|
1075
|
+
'dollarsign.square.fill' = 'dollarsign.square.fill',
|
|
1076
|
+
'dongsign.circle' = 'dongsign.circle',
|
|
1077
|
+
'dongsign.circle.fill' = 'dongsign.circle.fill',
|
|
1078
|
+
'dongsign.square' = 'dongsign.square',
|
|
1079
|
+
'dongsign.square.fill' = 'dongsign.square.fill',
|
|
1080
|
+
'dot.arrowtriangles.up.right.down.left.circle' = 'dot.arrowtriangles.up.right.down.left.circle',
|
|
1081
|
+
'dot.circle.and.cursorarrow' = 'dot.circle.and.cursorarrow',
|
|
1082
|
+
'dot.radiowaves.forward' = 'dot.radiowaves.forward',
|
|
1083
|
+
'dot.radiowaves.left.and.right' = 'dot.radiowaves.left.and.right',
|
|
1084
|
+
'dot.radiowaves.right' = 'dot.radiowaves.right',
|
|
1085
|
+
'dot.square' = 'dot.square',
|
|
1086
|
+
'dot.square.fill' = 'dot.square.fill',
|
|
1087
|
+
'dot.squareshape' = 'dot.squareshape',
|
|
1088
|
+
'dot.squareshape.fill' = 'dot.squareshape.fill',
|
|
1089
|
+
'dot.squareshape.split.2x2' = 'dot.squareshape.split.2x2',
|
|
1090
|
+
'dpad' = 'dpad',
|
|
1091
|
+
'dpad.down.fill' = 'dpad.down.fill',
|
|
1092
|
+
'dpad.fill' = 'dpad.fill',
|
|
1093
|
+
'dpad.left.fill' = 'dpad.left.fill',
|
|
1094
|
+
'dpad.right.fill' = 'dpad.right.fill',
|
|
1095
|
+
'dpad.up.fill' = 'dpad.up.fill',
|
|
1096
|
+
'drop' = 'drop',
|
|
1097
|
+
'drop.fill' = 'drop.fill',
|
|
1098
|
+
'drop.triangle' = 'drop.triangle',
|
|
1099
|
+
'drop.triangle.fill' = 'drop.triangle.fill',
|
|
1100
|
+
'e.circle' = 'e.circle',
|
|
1101
|
+
'e.circle.fill' = 'e.circle.fill',
|
|
1102
|
+
'e.square' = 'e.square',
|
|
1103
|
+
'e.square.fill' = 'e.square.fill',
|
|
1104
|
+
'ear' = 'ear',
|
|
1105
|
+
'ear.badge.checkmark' = 'ear.badge.checkmark',
|
|
1106
|
+
'ear.fill' = 'ear.fill',
|
|
1107
|
+
'ear.trianglebadge.exclamationmark' = 'ear.trianglebadge.exclamationmark',
|
|
1108
|
+
'earpods' = 'earpods',
|
|
1109
|
+
'eject' = 'eject',
|
|
1110
|
+
'eject.circle' = 'eject.circle',
|
|
1111
|
+
'eject.circle.fill' = 'eject.circle.fill',
|
|
1112
|
+
'eject.fill' = 'eject.fill',
|
|
1113
|
+
'ellipsis' = 'ellipsis',
|
|
1114
|
+
'ellipsis.bubble' = 'ellipsis.bubble',
|
|
1115
|
+
'ellipsis.bubble.fill' = 'ellipsis.bubble.fill',
|
|
1116
|
+
'ellipsis.circle' = 'ellipsis.circle',
|
|
1117
|
+
'ellipsis.circle.fill' = 'ellipsis.circle.fill',
|
|
1118
|
+
'ellipsis.rectangle' = 'ellipsis.rectangle',
|
|
1119
|
+
'ellipsis.rectangle.fill' = 'ellipsis.rectangle.fill',
|
|
1120
|
+
'envelope' = 'envelope',
|
|
1121
|
+
'envelope.arrow.triangle.branch' = 'envelope.arrow.triangle.branch',
|
|
1122
|
+
'envelope.arrow.triangle.branch.fill' = 'envelope.arrow.triangle.branch.fill',
|
|
1123
|
+
'envelope.badge' = 'envelope.badge',
|
|
1124
|
+
'envelope.badge.fill' = 'envelope.badge.fill',
|
|
1125
|
+
'envelope.badge.shield.leadinghalf.fill' = 'envelope.badge.shield.leadinghalf.fill',
|
|
1126
|
+
'envelope.circle' = 'envelope.circle',
|
|
1127
|
+
'envelope.circle.fill' = 'envelope.circle.fill',
|
|
1128
|
+
'envelope.fill' = 'envelope.fill',
|
|
1129
|
+
'envelope.fill.badge.shield.trailinghalf.fill' = 'envelope.fill.badge.shield.trailinghalf.fill',
|
|
1130
|
+
'envelope.open' = 'envelope.open',
|
|
1131
|
+
'envelope.open.fill' = 'envelope.open.fill',
|
|
1132
|
+
'equal' = 'equal',
|
|
1133
|
+
'equal.circle' = 'equal.circle',
|
|
1134
|
+
'equal.circle.fill' = 'equal.circle.fill',
|
|
1135
|
+
'equal.square' = 'equal.square',
|
|
1136
|
+
'equal.square.fill' = 'equal.square.fill',
|
|
1137
|
+
'escape' = 'escape',
|
|
1138
|
+
'esim' = 'esim',
|
|
1139
|
+
'esim.fill' = 'esim.fill',
|
|
1140
|
+
'eurosign.circle' = 'eurosign.circle',
|
|
1141
|
+
'eurosign.circle.fill' = 'eurosign.circle.fill',
|
|
1142
|
+
'eurosign.square' = 'eurosign.square',
|
|
1143
|
+
'eurosign.square.fill' = 'eurosign.square.fill',
|
|
1144
|
+
'exclamationmark' = 'exclamationmark',
|
|
1145
|
+
'exclamationmark.2' = 'exclamationmark.2',
|
|
1146
|
+
'exclamationmark.3' = 'exclamationmark.3',
|
|
1147
|
+
'exclamationmark.applewatch' = 'exclamationmark.applewatch',
|
|
1148
|
+
'exclamationmark.arrow.circlepath' = 'exclamationmark.arrow.circlepath',
|
|
1149
|
+
'exclamationmark.arrow.triangle.2.circlepath' = 'exclamationmark.arrow.triangle.2.circlepath',
|
|
1150
|
+
'exclamationmark.bubble' = 'exclamationmark.bubble',
|
|
1151
|
+
'exclamationmark.bubble.fill' = 'exclamationmark.bubble.fill',
|
|
1152
|
+
'exclamationmark.circle' = 'exclamationmark.circle',
|
|
1153
|
+
'exclamationmark.circle.fill' = 'exclamationmark.circle.fill',
|
|
1154
|
+
'exclamationmark.icloud' = 'exclamationmark.icloud',
|
|
1155
|
+
'exclamationmark.icloud.fill' = 'exclamationmark.icloud.fill',
|
|
1156
|
+
'exclamationmark.octagon' = 'exclamationmark.octagon',
|
|
1157
|
+
'exclamationmark.octagon.fill' = 'exclamationmark.octagon.fill',
|
|
1158
|
+
'exclamationmark.shield' = 'exclamationmark.shield',
|
|
1159
|
+
'exclamationmark.shield.fill' = 'exclamationmark.shield.fill',
|
|
1160
|
+
'exclamationmark.square' = 'exclamationmark.square',
|
|
1161
|
+
'exclamationmark.square.fill' = 'exclamationmark.square.fill',
|
|
1162
|
+
'exclamationmark.triangle' = 'exclamationmark.triangle',
|
|
1163
|
+
'exclamationmark.triangle.fill' = 'exclamationmark.triangle.fill',
|
|
1164
|
+
'externaldrive' = 'externaldrive',
|
|
1165
|
+
'externaldrive.badge.checkmark' = 'externaldrive.badge.checkmark',
|
|
1166
|
+
'externaldrive.badge.icloud' = 'externaldrive.badge.icloud',
|
|
1167
|
+
'externaldrive.badge.minus' = 'externaldrive.badge.minus',
|
|
1168
|
+
'externaldrive.badge.person.crop' = 'externaldrive.badge.person.crop',
|
|
1169
|
+
'externaldrive.badge.plus' = 'externaldrive.badge.plus',
|
|
1170
|
+
'externaldrive.badge.timemachine' = 'externaldrive.badge.timemachine',
|
|
1171
|
+
'externaldrive.badge.wifi' = 'externaldrive.badge.wifi',
|
|
1172
|
+
'externaldrive.badge.xmark' = 'externaldrive.badge.xmark',
|
|
1173
|
+
'externaldrive.connected.to.line.below' = 'externaldrive.connected.to.line.below',
|
|
1174
|
+
'externaldrive.connected.to.line.below.fill' = 'externaldrive.connected.to.line.below.fill',
|
|
1175
|
+
'externaldrive.fill' = 'externaldrive.fill',
|
|
1176
|
+
'externaldrive.fill.badge.checkmark' = 'externaldrive.fill.badge.checkmark',
|
|
1177
|
+
'externaldrive.fill.badge.icloud' = 'externaldrive.fill.badge.icloud',
|
|
1178
|
+
'externaldrive.fill.badge.minus' = 'externaldrive.fill.badge.minus',
|
|
1179
|
+
'externaldrive.fill.badge.person.crop' = 'externaldrive.fill.badge.person.crop',
|
|
1180
|
+
'externaldrive.fill.badge.plus' = 'externaldrive.fill.badge.plus',
|
|
1181
|
+
'externaldrive.fill.badge.timemachine' = 'externaldrive.fill.badge.timemachine',
|
|
1182
|
+
'externaldrive.fill.badge.wifi' = 'externaldrive.fill.badge.wifi',
|
|
1183
|
+
'externaldrive.fill.badge.xmark' = 'externaldrive.fill.badge.xmark',
|
|
1184
|
+
'eye' = 'eye',
|
|
1185
|
+
'eye.circle' = 'eye.circle',
|
|
1186
|
+
'eye.circle.fill' = 'eye.circle.fill',
|
|
1187
|
+
'eye.fill' = 'eye.fill',
|
|
1188
|
+
'eye.slash' = 'eye.slash',
|
|
1189
|
+
'eye.slash.fill' = 'eye.slash.fill',
|
|
1190
|
+
'eyebrow' = 'eyebrow',
|
|
1191
|
+
'eyedropper' = 'eyedropper',
|
|
1192
|
+
'eyedropper.full' = 'eyedropper.full',
|
|
1193
|
+
'eyedropper.halffull' = 'eyedropper.halffull',
|
|
1194
|
+
'eyeglasses' = 'eyeglasses',
|
|
1195
|
+
'eyes' = 'eyes',
|
|
1196
|
+
'eyes.inverse' = 'eyes.inverse',
|
|
1197
|
+
'f.circle' = 'f.circle',
|
|
1198
|
+
'f.circle.fill' = 'f.circle.fill',
|
|
1199
|
+
'f.cursive' = 'f.cursive',
|
|
1200
|
+
'f.cursive.circle' = 'f.cursive.circle',
|
|
1201
|
+
'f.cursive.circle.fill' = 'f.cursive.circle.fill',
|
|
1202
|
+
'f.square' = 'f.square',
|
|
1203
|
+
'f.square.fill' = 'f.square.fill',
|
|
1204
|
+
'face.dashed' = 'face.dashed',
|
|
1205
|
+
'face.dashed.fill' = 'face.dashed.fill',
|
|
1206
|
+
'face.smiling' = 'face.smiling',
|
|
1207
|
+
'face.smiling.fill' = 'face.smiling.fill',
|
|
1208
|
+
'faceid' = 'faceid',
|
|
1209
|
+
'faxmachine' = 'faxmachine',
|
|
1210
|
+
'fiberchannel' = 'fiberchannel',
|
|
1211
|
+
'figure.stand' = 'figure.stand',
|
|
1212
|
+
'figure.stand.line.dotted.figure.stand' = 'figure.stand.line.dotted.figure.stand',
|
|
1213
|
+
'figure.walk' = 'figure.walk',
|
|
1214
|
+
'figure.walk.circle' = 'figure.walk.circle',
|
|
1215
|
+
'figure.walk.circle.fill' = 'figure.walk.circle.fill',
|
|
1216
|
+
'figure.walk.diamond' = 'figure.walk.diamond',
|
|
1217
|
+
'figure.walk.diamond.fill' = 'figure.walk.diamond.fill',
|
|
1218
|
+
'figure.wave' = 'figure.wave',
|
|
1219
|
+
'figure.wave.circle' = 'figure.wave.circle',
|
|
1220
|
+
'figure.wave.circle.fill' = 'figure.wave.circle.fill',
|
|
1221
|
+
'filemenu.and.cursorarrow' = 'filemenu.and.cursorarrow',
|
|
1222
|
+
'filemenu.and.selection' = 'filemenu.and.selection',
|
|
1223
|
+
'film' = 'film',
|
|
1224
|
+
'film.fill' = 'film.fill',
|
|
1225
|
+
'flag' = 'flag',
|
|
1226
|
+
'flag.badge.ellipsis' = 'flag.badge.ellipsis',
|
|
1227
|
+
'flag.badge.ellipsis.fill' = 'flag.badge.ellipsis.fill',
|
|
1228
|
+
'flag.circle' = 'flag.circle',
|
|
1229
|
+
'flag.circle.fill' = 'flag.circle.fill',
|
|
1230
|
+
'flag.fill' = 'flag.fill',
|
|
1231
|
+
'flag.slash' = 'flag.slash',
|
|
1232
|
+
'flag.slash.circle' = 'flag.slash.circle',
|
|
1233
|
+
'flag.slash.circle.fill' = 'flag.slash.circle.fill',
|
|
1234
|
+
'flag.slash.fill' = 'flag.slash.fill',
|
|
1235
|
+
'flame' = 'flame',
|
|
1236
|
+
'flame.fill' = 'flame.fill',
|
|
1237
|
+
'flashlight.off.fill' = 'flashlight.off.fill',
|
|
1238
|
+
'flashlight.on.fill' = 'flashlight.on.fill',
|
|
1239
|
+
'flipphone' = 'flipphone',
|
|
1240
|
+
'florinsign.circle' = 'florinsign.circle',
|
|
1241
|
+
'florinsign.circle.fill' = 'florinsign.circle.fill',
|
|
1242
|
+
'florinsign.square' = 'florinsign.square',
|
|
1243
|
+
'florinsign.square.fill' = 'florinsign.square.fill',
|
|
1244
|
+
'flowchart' = 'flowchart',
|
|
1245
|
+
'flowchart.fill' = 'flowchart.fill',
|
|
1246
|
+
'fn' = 'fn',
|
|
1247
|
+
'folder' = 'folder',
|
|
1248
|
+
'folder.badge.gear' = 'folder.badge.gear',
|
|
1249
|
+
'folder.badge.minus' = 'folder.badge.minus',
|
|
1250
|
+
'folder.badge.person.crop' = 'folder.badge.person.crop',
|
|
1251
|
+
'folder.badge.plus' = 'folder.badge.plus',
|
|
1252
|
+
'folder.badge.questionmark' = 'folder.badge.questionmark',
|
|
1253
|
+
'folder.circle' = 'folder.circle',
|
|
1254
|
+
'folder.circle.fill' = 'folder.circle.fill',
|
|
1255
|
+
'folder.fill' = 'folder.fill',
|
|
1256
|
+
'folder.fill.badge.gear' = 'folder.fill.badge.gear',
|
|
1257
|
+
'folder.fill.badge.minus' = 'folder.fill.badge.minus',
|
|
1258
|
+
'folder.fill.badge.person.crop' = 'folder.fill.badge.person.crop',
|
|
1259
|
+
'folder.fill.badge.plus' = 'folder.fill.badge.plus',
|
|
1260
|
+
'folder.fill.badge.questionmark' = 'folder.fill.badge.questionmark',
|
|
1261
|
+
'forward' = 'forward',
|
|
1262
|
+
'forward.end' = 'forward.end',
|
|
1263
|
+
'forward.end.alt' = 'forward.end.alt',
|
|
1264
|
+
'forward.end.alt.fill' = 'forward.end.alt.fill',
|
|
1265
|
+
'forward.end.fill' = 'forward.end.fill',
|
|
1266
|
+
'forward.fill' = 'forward.fill',
|
|
1267
|
+
'forward.frame' = 'forward.frame',
|
|
1268
|
+
'forward.frame.fill' = 'forward.frame.fill',
|
|
1269
|
+
'francsign.circle' = 'francsign.circle',
|
|
1270
|
+
'francsign.circle.fill' = 'francsign.circle.fill',
|
|
1271
|
+
'francsign.square' = 'francsign.square',
|
|
1272
|
+
'francsign.square.fill' = 'francsign.square.fill',
|
|
1273
|
+
'function' = 'function',
|
|
1274
|
+
'fx' = 'fx',
|
|
1275
|
+
'g.circle' = 'g.circle',
|
|
1276
|
+
'g.circle.fill' = 'g.circle.fill',
|
|
1277
|
+
'g.square' = 'g.square',
|
|
1278
|
+
'g.square.fill' = 'g.square.fill',
|
|
1279
|
+
'gamecontroller' = 'gamecontroller',
|
|
1280
|
+
'gamecontroller.fill' = 'gamecontroller.fill',
|
|
1281
|
+
'gauge' = 'gauge',
|
|
1282
|
+
'gauge.badge.minus' = 'gauge.badge.minus',
|
|
1283
|
+
'gauge.badge.plus' = 'gauge.badge.plus',
|
|
1284
|
+
'gear' = 'gear',
|
|
1285
|
+
'gearshape' = 'gearshape',
|
|
1286
|
+
'gearshape.2' = 'gearshape.2',
|
|
1287
|
+
'gearshape.2.fill' = 'gearshape.2.fill',
|
|
1288
|
+
'gearshape.fill' = 'gearshape.fill',
|
|
1289
|
+
'gift' = 'gift',
|
|
1290
|
+
'gift.circle' = 'gift.circle',
|
|
1291
|
+
'gift.circle.fill' = 'gift.circle.fill',
|
|
1292
|
+
'gift.fill' = 'gift.fill',
|
|
1293
|
+
'giftcard' = 'giftcard',
|
|
1294
|
+
'giftcard.fill' = 'giftcard.fill',
|
|
1295
|
+
'globe' = 'globe',
|
|
1296
|
+
'gobackward' = 'gobackward',
|
|
1297
|
+
'gobackward.10' = 'gobackward.10',
|
|
1298
|
+
'gobackward.15' = 'gobackward.15',
|
|
1299
|
+
'gobackward.30' = 'gobackward.30',
|
|
1300
|
+
'gobackward.45' = 'gobackward.45',
|
|
1301
|
+
'gobackward.60' = 'gobackward.60',
|
|
1302
|
+
'gobackward.75' = 'gobackward.75',
|
|
1303
|
+
'gobackward.90' = 'gobackward.90',
|
|
1304
|
+
'gobackward.minus' = 'gobackward.minus',
|
|
1305
|
+
'goforward' = 'goforward',
|
|
1306
|
+
'goforward.10' = 'goforward.10',
|
|
1307
|
+
'goforward.15' = 'goforward.15',
|
|
1308
|
+
'goforward.30' = 'goforward.30',
|
|
1309
|
+
'goforward.45' = 'goforward.45',
|
|
1310
|
+
'goforward.60' = 'goforward.60',
|
|
1311
|
+
'goforward.75' = 'goforward.75',
|
|
1312
|
+
'goforward.90' = 'goforward.90',
|
|
1313
|
+
'goforward.plus' = 'goforward.plus',
|
|
1314
|
+
'graduationcap' = 'graduationcap',
|
|
1315
|
+
'graduationcap.fill' = 'graduationcap.fill',
|
|
1316
|
+
'greaterthan' = 'greaterthan',
|
|
1317
|
+
'greaterthan.circle' = 'greaterthan.circle',
|
|
1318
|
+
'greaterthan.circle.fill' = 'greaterthan.circle.fill',
|
|
1319
|
+
'greaterthan.square' = 'greaterthan.square',
|
|
1320
|
+
'greaterthan.square.fill' = 'greaterthan.square.fill',
|
|
1321
|
+
'greetingcard' = 'greetingcard',
|
|
1322
|
+
'greetingcard.fill' = 'greetingcard.fill',
|
|
1323
|
+
'grid' = 'grid',
|
|
1324
|
+
'grid.circle' = 'grid.circle',
|
|
1325
|
+
'grid.circle.fill' = 'grid.circle.fill',
|
|
1326
|
+
'guaranisign.circle' = 'guaranisign.circle',
|
|
1327
|
+
'guaranisign.circle.fill' = 'guaranisign.circle.fill',
|
|
1328
|
+
'guaranisign.square' = 'guaranisign.square',
|
|
1329
|
+
'guaranisign.square.fill' = 'guaranisign.square.fill',
|
|
1330
|
+
'guitars' = 'guitars',
|
|
1331
|
+
'guitars.fill' = 'guitars.fill',
|
|
1332
|
+
'gyroscope' = 'gyroscope',
|
|
1333
|
+
'h.circle' = 'h.circle',
|
|
1334
|
+
'h.circle.fill' = 'h.circle.fill',
|
|
1335
|
+
'h.square' = 'h.square',
|
|
1336
|
+
'h.square.fill' = 'h.square.fill',
|
|
1337
|
+
'h.square.fill.on.square.fill' = 'h.square.fill.on.square.fill',
|
|
1338
|
+
'h.square.on.square' = 'h.square.on.square',
|
|
1339
|
+
'hammer' = 'hammer',
|
|
1340
|
+
'hammer.fill' = 'hammer.fill',
|
|
1341
|
+
'hand.draw' = 'hand.draw',
|
|
1342
|
+
'hand.draw.fill' = 'hand.draw.fill',
|
|
1343
|
+
'hand.point.down' = 'hand.point.down',
|
|
1344
|
+
'hand.point.down.fill' = 'hand.point.down.fill',
|
|
1345
|
+
'hand.point.left' = 'hand.point.left',
|
|
1346
|
+
'hand.point.left.fill' = 'hand.point.left.fill',
|
|
1347
|
+
'hand.point.right' = 'hand.point.right',
|
|
1348
|
+
'hand.point.right.fill' = 'hand.point.right.fill',
|
|
1349
|
+
'hand.point.up' = 'hand.point.up',
|
|
1350
|
+
'hand.point.up.braille' = 'hand.point.up.braille',
|
|
1351
|
+
'hand.point.up.braille.fill' = 'hand.point.up.braille.fill',
|
|
1352
|
+
'hand.point.up.fill' = 'hand.point.up.fill',
|
|
1353
|
+
'hand.point.up.left' = 'hand.point.up.left',
|
|
1354
|
+
'hand.point.up.left.fill' = 'hand.point.up.left.fill',
|
|
1355
|
+
'hand.raised' = 'hand.raised',
|
|
1356
|
+
'hand.raised.fill' = 'hand.raised.fill',
|
|
1357
|
+
'hand.raised.slash' = 'hand.raised.slash',
|
|
1358
|
+
'hand.raised.slash.fill' = 'hand.raised.slash.fill',
|
|
1359
|
+
'hand.tap' = 'hand.tap',
|
|
1360
|
+
'hand.tap.fill' = 'hand.tap.fill',
|
|
1361
|
+
'hand.thumbsdown' = 'hand.thumbsdown',
|
|
1362
|
+
'hand.thumbsdown.fill' = 'hand.thumbsdown.fill',
|
|
1363
|
+
'hand.thumbsup' = 'hand.thumbsup',
|
|
1364
|
+
'hand.thumbsup.fill' = 'hand.thumbsup.fill',
|
|
1365
|
+
'hand.wave' = 'hand.wave',
|
|
1366
|
+
'hand.wave.fill' = 'hand.wave.fill',
|
|
1367
|
+
'hands.clap' = 'hands.clap',
|
|
1368
|
+
'hands.clap.fill' = 'hands.clap.fill',
|
|
1369
|
+
'hands.sparkles' = 'hands.sparkles',
|
|
1370
|
+
'hands.sparkles.fill' = 'hands.sparkles.fill',
|
|
1371
|
+
'hare' = 'hare',
|
|
1372
|
+
'hare.fill' = 'hare.fill',
|
|
1373
|
+
'headphones' = 'headphones',
|
|
1374
|
+
'headphones.circle' = 'headphones.circle',
|
|
1375
|
+
'headphones.circle.fill' = 'headphones.circle.fill',
|
|
1376
|
+
'hearingaid.ear' = 'hearingaid.ear',
|
|
1377
|
+
'heart' = 'heart',
|
|
1378
|
+
'heart.circle' = 'heart.circle',
|
|
1379
|
+
'heart.circle.fill' = 'heart.circle.fill',
|
|
1380
|
+
'heart.fill' = 'heart.fill',
|
|
1381
|
+
'heart.slash' = 'heart.slash',
|
|
1382
|
+
'heart.slash.circle' = 'heart.slash.circle',
|
|
1383
|
+
'heart.slash.circle.fill' = 'heart.slash.circle.fill',
|
|
1384
|
+
'heart.slash.fill' = 'heart.slash.fill',
|
|
1385
|
+
'heart.text.square' = 'heart.text.square',
|
|
1386
|
+
'heart.text.square.fill' = 'heart.text.square.fill',
|
|
1387
|
+
'helm' = 'helm',
|
|
1388
|
+
'hexagon' = 'hexagon',
|
|
1389
|
+
'hexagon.fill' = 'hexagon.fill',
|
|
1390
|
+
'hifispeaker' = 'hifispeaker',
|
|
1391
|
+
'hifispeaker.2' = 'hifispeaker.2',
|
|
1392
|
+
'hifispeaker.2.fill' = 'hifispeaker.2.fill',
|
|
1393
|
+
'hifispeaker.and.homepod' = 'hifispeaker.and.homepod',
|
|
1394
|
+
'hifispeaker.and.homepod.fill' = 'hifispeaker.and.homepod.fill',
|
|
1395
|
+
'hifispeaker.fill' = 'hifispeaker.fill',
|
|
1396
|
+
'highlighter' = 'highlighter',
|
|
1397
|
+
'homekit' = 'homekit',
|
|
1398
|
+
'homepod' = 'homepod',
|
|
1399
|
+
'homepod.2' = 'homepod.2',
|
|
1400
|
+
'homepod.2.fill' = 'homepod.2.fill',
|
|
1401
|
+
'homepod.fill' = 'homepod.fill',
|
|
1402
|
+
'hourglass' = 'hourglass',
|
|
1403
|
+
'hourglass.badge.plus' = 'hourglass.badge.plus',
|
|
1404
|
+
'hourglass.bottomhalf.fill' = 'hourglass.bottomhalf.fill',
|
|
1405
|
+
'hourglass.tophalf.fill' = 'hourglass.tophalf.fill',
|
|
1406
|
+
'house' = 'house',
|
|
1407
|
+
'house.circle' = 'house.circle',
|
|
1408
|
+
'house.circle.fill' = 'house.circle.fill',
|
|
1409
|
+
'house.fill' = 'house.fill',
|
|
1410
|
+
'hryvniasign.circle' = 'hryvniasign.circle',
|
|
1411
|
+
'hryvniasign.circle.fill' = 'hryvniasign.circle.fill',
|
|
1412
|
+
'hryvniasign.square' = 'hryvniasign.square',
|
|
1413
|
+
'hryvniasign.square.fill' = 'hryvniasign.square.fill',
|
|
1414
|
+
'hurricane' = 'hurricane',
|
|
1415
|
+
'i.circle' = 'i.circle',
|
|
1416
|
+
'i.circle.fill' = 'i.circle.fill',
|
|
1417
|
+
'i.square' = 'i.square',
|
|
1418
|
+
'i.square.fill' = 'i.square.fill',
|
|
1419
|
+
'icloud' = 'icloud',
|
|
1420
|
+
'icloud.and.arrow.down' = 'icloud.and.arrow.down',
|
|
1421
|
+
'icloud.and.arrow.down.fill' = 'icloud.and.arrow.down.fill',
|
|
1422
|
+
'icloud.and.arrow.up' = 'icloud.and.arrow.up',
|
|
1423
|
+
'icloud.and.arrow.up.fill' = 'icloud.and.arrow.up.fill',
|
|
1424
|
+
'icloud.circle' = 'icloud.circle',
|
|
1425
|
+
'icloud.circle.fill' = 'icloud.circle.fill',
|
|
1426
|
+
'icloud.fill' = 'icloud.fill',
|
|
1427
|
+
'icloud.slash' = 'icloud.slash',
|
|
1428
|
+
'icloud.slash.fill' = 'icloud.slash.fill',
|
|
1429
|
+
'increase.indent' = 'increase.indent',
|
|
1430
|
+
'increase.quotelevel' = 'increase.quotelevel',
|
|
1431
|
+
'indianrupeesign.circle' = 'indianrupeesign.circle',
|
|
1432
|
+
'indianrupeesign.circle.fill' = 'indianrupeesign.circle.fill',
|
|
1433
|
+
'indianrupeesign.square' = 'indianrupeesign.square',
|
|
1434
|
+
'indianrupeesign.square.fill' = 'indianrupeesign.square.fill',
|
|
1435
|
+
'infinity' = 'infinity',
|
|
1436
|
+
'infinity.circle' = 'infinity.circle',
|
|
1437
|
+
'infinity.circle.fill' = 'infinity.circle.fill',
|
|
1438
|
+
'info' = 'info',
|
|
1439
|
+
'info.circle' = 'info.circle',
|
|
1440
|
+
'info.circle.fill' = 'info.circle.fill',
|
|
1441
|
+
'internaldrive' = 'internaldrive',
|
|
1442
|
+
'internaldrive.fill' = 'internaldrive.fill',
|
|
1443
|
+
'ipad' = 'ipad',
|
|
1444
|
+
'ipad.badge.play' = 'ipad.badge.play',
|
|
1445
|
+
'ipad.homebutton' = 'ipad.homebutton',
|
|
1446
|
+
'ipad.homebutton.badge.play' = 'ipad.homebutton.badge.play',
|
|
1447
|
+
'ipad.homebutton.landscape' = 'ipad.homebutton.landscape',
|
|
1448
|
+
'ipad.homebutton.landscape.badge.play' = 'ipad.homebutton.landscape.badge.play',
|
|
1449
|
+
'ipad.landscape' = 'ipad.landscape',
|
|
1450
|
+
'ipad.landscape.badge.play' = 'ipad.landscape.badge.play',
|
|
1451
|
+
'iphone' = 'iphone',
|
|
1452
|
+
'iphone.badge.play' = 'iphone.badge.play',
|
|
1453
|
+
'iphone.homebutton' = 'iphone.homebutton',
|
|
1454
|
+
'iphone.homebutton.badge.play' = 'iphone.homebutton.badge.play',
|
|
1455
|
+
'iphone.homebutton.landscape' = 'iphone.homebutton.landscape',
|
|
1456
|
+
'iphone.homebutton.radiowaves.left.and.right' = 'iphone.homebutton.radiowaves.left.and.right',
|
|
1457
|
+
'iphone.homebutton.slash' = 'iphone.homebutton.slash',
|
|
1458
|
+
'iphone.landscape' = 'iphone.landscape',
|
|
1459
|
+
'iphone.radiowaves.left.and.right' = 'iphone.radiowaves.left.and.right',
|
|
1460
|
+
'iphone.slash' = 'iphone.slash',
|
|
1461
|
+
'ipod' = 'ipod',
|
|
1462
|
+
'ipodshuffle.gen1' = 'ipodshuffle.gen1',
|
|
1463
|
+
'ipodshuffle.gen2' = 'ipodshuffle.gen2',
|
|
1464
|
+
'ipodshuffle.gen3' = 'ipodshuffle.gen3',
|
|
1465
|
+
'ipodshuffle.gen4' = 'ipodshuffle.gen4',
|
|
1466
|
+
'ipodtouch' = 'ipodtouch',
|
|
1467
|
+
'ipodtouch.landscape' = 'ipodtouch.landscape',
|
|
1468
|
+
'italic' = 'italic',
|
|
1469
|
+
'j.circle' = 'j.circle',
|
|
1470
|
+
'j.circle.fill' = 'j.circle.fill',
|
|
1471
|
+
'j.square' = 'j.square',
|
|
1472
|
+
'j.square.fill' = 'j.square.fill',
|
|
1473
|
+
'j.square.fill.on.square.fill' = 'j.square.fill.on.square.fill',
|
|
1474
|
+
'j.square.on.square' = 'j.square.on.square',
|
|
1475
|
+
'k' = 'k',
|
|
1476
|
+
'k.circle' = 'k.circle',
|
|
1477
|
+
'k.circle.fill' = 'k.circle.fill',
|
|
1478
|
+
'k.square' = 'k.square',
|
|
1479
|
+
'k.square.fill' = 'k.square.fill',
|
|
1480
|
+
'key' = 'key',
|
|
1481
|
+
'key.fill' = 'key.fill',
|
|
1482
|
+
'key.icloud' = 'key.icloud',
|
|
1483
|
+
'key.icloud.fill' = 'key.icloud.fill',
|
|
1484
|
+
'keyboard' = 'keyboard',
|
|
1485
|
+
'keyboard.badge.ellipsis' = 'keyboard.badge.ellipsis',
|
|
1486
|
+
'keyboard.chevron.compact.down' = 'keyboard.chevron.compact.down',
|
|
1487
|
+
'keyboard.chevron.compact.left' = 'keyboard.chevron.compact.left',
|
|
1488
|
+
'keyboard.macwindow' = 'keyboard.macwindow',
|
|
1489
|
+
'keyboard.onehanded.left' = 'keyboard.onehanded.left',
|
|
1490
|
+
'keyboard.onehanded.right' = 'keyboard.onehanded.right',
|
|
1491
|
+
'kipsign.circle' = 'kipsign.circle',
|
|
1492
|
+
'kipsign.circle.fill' = 'kipsign.circle.fill',
|
|
1493
|
+
'kipsign.square' = 'kipsign.square',
|
|
1494
|
+
'kipsign.square.fill' = 'kipsign.square.fill',
|
|
1495
|
+
'l.circle' = 'l.circle',
|
|
1496
|
+
'l.circle.fill' = 'l.circle.fill',
|
|
1497
|
+
'l.joystick' = 'l.joystick',
|
|
1498
|
+
'l.joystick.down' = 'l.joystick.down',
|
|
1499
|
+
'l.joystick.down.fill' = 'l.joystick.down.fill',
|
|
1500
|
+
'l.joystick.fill' = 'l.joystick.fill',
|
|
1501
|
+
'l.rectangle.roundedbottom' = 'l.rectangle.roundedbottom',
|
|
1502
|
+
'l.rectangle.roundedbottom.fill' = 'l.rectangle.roundedbottom.fill',
|
|
1503
|
+
'l.square' = 'l.square',
|
|
1504
|
+
'l.square.fill' = 'l.square.fill',
|
|
1505
|
+
'l1.rectangle.roundedbottom' = 'l1.rectangle.roundedbottom',
|
|
1506
|
+
'l1.rectangle.roundedbottom.fill' = 'l1.rectangle.roundedbottom.fill',
|
|
1507
|
+
'l2.rectangle.roundedtop' = 'l2.rectangle.roundedtop',
|
|
1508
|
+
'l2.rectangle.roundedtop.fill' = 'l2.rectangle.roundedtop.fill',
|
|
1509
|
+
'ladybug' = 'ladybug',
|
|
1510
|
+
'ladybug.fill' = 'ladybug.fill',
|
|
1511
|
+
'laptopcomputer' = 'laptopcomputer',
|
|
1512
|
+
'laptopcomputer.and.iphone' = 'laptopcomputer.and.iphone',
|
|
1513
|
+
'largecircle.fill.circle' = 'largecircle.fill.circle',
|
|
1514
|
+
'larisign.circle' = 'larisign.circle',
|
|
1515
|
+
'larisign.circle.fill' = 'larisign.circle.fill',
|
|
1516
|
+
'larisign.square' = 'larisign.square',
|
|
1517
|
+
'larisign.square.fill' = 'larisign.square.fill',
|
|
1518
|
+
'lasso' = 'lasso',
|
|
1519
|
+
'lasso.sparkles' = 'lasso.sparkles',
|
|
1520
|
+
'latch.2.case' = 'latch.2.case',
|
|
1521
|
+
'latch.2.case.fill' = 'latch.2.case.fill',
|
|
1522
|
+
'lb.rectangle.roundedbottom' = 'lb.rectangle.roundedbottom',
|
|
1523
|
+
'lb.rectangle.roundedbottom.fill' = 'lb.rectangle.roundedbottom.fill',
|
|
1524
|
+
'leaf' = 'leaf',
|
|
1525
|
+
'leaf.arrow.triangle.circlepath' = 'leaf.arrow.triangle.circlepath',
|
|
1526
|
+
'leaf.fill' = 'leaf.fill',
|
|
1527
|
+
'lessthan' = 'lessthan',
|
|
1528
|
+
'lessthan.circle' = 'lessthan.circle',
|
|
1529
|
+
'lessthan.circle.fill' = 'lessthan.circle.fill',
|
|
1530
|
+
'lessthan.square' = 'lessthan.square',
|
|
1531
|
+
'lessthan.square.fill' = 'lessthan.square.fill',
|
|
1532
|
+
'level' = 'level',
|
|
1533
|
+
'level.fill' = 'level.fill',
|
|
1534
|
+
'lifepreserver' = 'lifepreserver',
|
|
1535
|
+
'lifepreserver.fill' = 'lifepreserver.fill',
|
|
1536
|
+
'light.max' = 'light.max',
|
|
1537
|
+
'light.min' = 'light.min',
|
|
1538
|
+
'lightbulb' = 'lightbulb',
|
|
1539
|
+
'lightbulb.fill' = 'lightbulb.fill',
|
|
1540
|
+
'lightbulb.slash' = 'lightbulb.slash',
|
|
1541
|
+
'lightbulb.slash.fill' = 'lightbulb.slash.fill',
|
|
1542
|
+
'line.3.crossed.swirl.circle' = 'line.3.crossed.swirl.circle',
|
|
1543
|
+
'line.3.crossed.swirl.circle.fill' = 'line.3.crossed.swirl.circle.fill',
|
|
1544
|
+
'line.diagonal' = 'line.diagonal',
|
|
1545
|
+
'line.diagonal.arrow' = 'line.diagonal.arrow',
|
|
1546
|
+
'line.horizontal.2.decrease.circle' = 'line.horizontal.2.decrease.circle',
|
|
1547
|
+
'line.horizontal.2.decrease.circle.fill' = 'line.horizontal.2.decrease.circle.fill',
|
|
1548
|
+
'line.horizontal.3' = 'line.horizontal.3',
|
|
1549
|
+
'line.horizontal.3.circle' = 'line.horizontal.3.circle',
|
|
1550
|
+
'line.horizontal.3.circle.fill' = 'line.horizontal.3.circle.fill',
|
|
1551
|
+
'line.horizontal.3.decrease' = 'line.horizontal.3.decrease',
|
|
1552
|
+
'line.horizontal.3.decrease.circle' = 'line.horizontal.3.decrease.circle',
|
|
1553
|
+
'line.horizontal.3.decrease.circle.fill' = 'line.horizontal.3.decrease.circle.fill',
|
|
1554
|
+
'line.horizontal.star.fill.line.horizontal' = 'line.horizontal.star.fill.line.horizontal',
|
|
1555
|
+
'lineweight' = 'lineweight',
|
|
1556
|
+
'link' = 'link',
|
|
1557
|
+
'link.badge.plus' = 'link.badge.plus',
|
|
1558
|
+
'link.circle' = 'link.circle',
|
|
1559
|
+
'link.circle.fill' = 'link.circle.fill',
|
|
1560
|
+
'link.icloud' = 'link.icloud',
|
|
1561
|
+
'link.icloud.fill' = 'link.icloud.fill',
|
|
1562
|
+
'lirasign.circle' = 'lirasign.circle',
|
|
1563
|
+
'lirasign.circle.fill' = 'lirasign.circle.fill',
|
|
1564
|
+
'lirasign.square' = 'lirasign.square',
|
|
1565
|
+
'lirasign.square.fill' = 'lirasign.square.fill',
|
|
1566
|
+
'list.and.film' = 'list.and.film',
|
|
1567
|
+
'list.bullet' = 'list.bullet',
|
|
1568
|
+
'list.bullet.below.rectangle' = 'list.bullet.below.rectangle',
|
|
1569
|
+
'list.bullet.indent' = 'list.bullet.indent',
|
|
1570
|
+
'list.bullet.rectangle' = 'list.bullet.rectangle',
|
|
1571
|
+
'list.dash' = 'list.dash',
|
|
1572
|
+
'list.number' = 'list.number',
|
|
1573
|
+
'list.star' = 'list.star',
|
|
1574
|
+
'list.triangle' = 'list.triangle',
|
|
1575
|
+
'livephoto' = 'livephoto',
|
|
1576
|
+
'livephoto.badge.a' = 'livephoto.badge.a',
|
|
1577
|
+
'livephoto.play' = 'livephoto.play',
|
|
1578
|
+
'livephoto.slash' = 'livephoto.slash',
|
|
1579
|
+
'location' = 'location',
|
|
1580
|
+
'location.circle' = 'location.circle',
|
|
1581
|
+
'location.circle.fill' = 'location.circle.fill',
|
|
1582
|
+
'location.fill' = 'location.fill',
|
|
1583
|
+
'location.fill.viewfinder' = 'location.fill.viewfinder',
|
|
1584
|
+
'location.north' = 'location.north',
|
|
1585
|
+
'location.north.fill' = 'location.north.fill',
|
|
1586
|
+
'location.north.line' = 'location.north.line',
|
|
1587
|
+
'location.north.line.fill' = 'location.north.line.fill',
|
|
1588
|
+
'location.slash' = 'location.slash',
|
|
1589
|
+
'location.slash.fill' = 'location.slash.fill',
|
|
1590
|
+
'location.viewfinder' = 'location.viewfinder',
|
|
1591
|
+
'lock' = 'lock',
|
|
1592
|
+
'lock.applewatch' = 'lock.applewatch',
|
|
1593
|
+
'lock.circle' = 'lock.circle',
|
|
1594
|
+
'lock.circle.fill' = 'lock.circle.fill',
|
|
1595
|
+
'lock.doc' = 'lock.doc',
|
|
1596
|
+
'lock.doc.fill' = 'lock.doc.fill',
|
|
1597
|
+
'lock.fill' = 'lock.fill',
|
|
1598
|
+
'lock.icloud' = 'lock.icloud',
|
|
1599
|
+
'lock.icloud.fill' = 'lock.icloud.fill',
|
|
1600
|
+
'lock.open' = 'lock.open',
|
|
1601
|
+
'lock.open.fill' = 'lock.open.fill',
|
|
1602
|
+
'lock.rectangle' = 'lock.rectangle',
|
|
1603
|
+
'lock.rectangle.fill' = 'lock.rectangle.fill',
|
|
1604
|
+
'lock.rectangle.on.rectangle' = 'lock.rectangle.on.rectangle',
|
|
1605
|
+
'lock.rectangle.on.rectangle.fill' = 'lock.rectangle.on.rectangle.fill',
|
|
1606
|
+
'lock.rectangle.stack' = 'lock.rectangle.stack',
|
|
1607
|
+
'lock.rectangle.stack.fill' = 'lock.rectangle.stack.fill',
|
|
1608
|
+
'lock.rotation' = 'lock.rotation',
|
|
1609
|
+
'lock.rotation.open' = 'lock.rotation.open',
|
|
1610
|
+
'lock.shield' = 'lock.shield',
|
|
1611
|
+
'lock.shield.fill' = 'lock.shield.fill',
|
|
1612
|
+
'lock.slash' = 'lock.slash',
|
|
1613
|
+
'lock.slash.fill' = 'lock.slash.fill',
|
|
1614
|
+
'lock.square' = 'lock.square',
|
|
1615
|
+
'lock.square.fill' = 'lock.square.fill',
|
|
1616
|
+
'lock.square.stack' = 'lock.square.stack',
|
|
1617
|
+
'lock.square.stack.fill' = 'lock.square.stack.fill',
|
|
1618
|
+
'loupe' = 'loupe',
|
|
1619
|
+
'lt.rectangle.roundedtop' = 'lt.rectangle.roundedtop',
|
|
1620
|
+
'lt.rectangle.roundedtop.fill' = 'lt.rectangle.roundedtop.fill',
|
|
1621
|
+
'lungs' = 'lungs',
|
|
1622
|
+
'lungs.fill' = 'lungs.fill',
|
|
1623
|
+
'm.circle' = 'm.circle',
|
|
1624
|
+
'm.circle.fill' = 'm.circle.fill',
|
|
1625
|
+
'm.square' = 'm.square',
|
|
1626
|
+
'm.square.fill' = 'm.square.fill',
|
|
1627
|
+
'macmini' = 'macmini',
|
|
1628
|
+
'macmini.fill' = 'macmini.fill',
|
|
1629
|
+
'macpro.gen1' = 'macpro.gen1',
|
|
1630
|
+
'macpro.gen2' = 'macpro.gen2',
|
|
1631
|
+
'macpro.gen2.fill' = 'macpro.gen2.fill',
|
|
1632
|
+
'macpro.gen3' = 'macpro.gen3',
|
|
1633
|
+
'macpro.gen3.server' = 'macpro.gen3.server',
|
|
1634
|
+
'macwindow' = 'macwindow',
|
|
1635
|
+
'macwindow.badge.plus' = 'macwindow.badge.plus',
|
|
1636
|
+
'macwindow.on.rectangle' = 'macwindow.on.rectangle',
|
|
1637
|
+
'magnifyingglass' = 'magnifyingglass',
|
|
1638
|
+
'magnifyingglass.circle' = 'magnifyingglass.circle',
|
|
1639
|
+
'magnifyingglass.circle.fill' = 'magnifyingglass.circle.fill',
|
|
1640
|
+
'mail' = 'mail',
|
|
1641
|
+
'mail.and.text.magnifyingglass' = 'mail.and.text.magnifyingglass',
|
|
1642
|
+
'mail.fill' = 'mail.fill',
|
|
1643
|
+
'mail.stack' = 'mail.stack',
|
|
1644
|
+
'mail.stack.fill' = 'mail.stack.fill',
|
|
1645
|
+
'manatsign.circle' = 'manatsign.circle',
|
|
1646
|
+
'manatsign.circle.fill' = 'manatsign.circle.fill',
|
|
1647
|
+
'manatsign.square' = 'manatsign.square',
|
|
1648
|
+
'manatsign.square.fill' = 'manatsign.square.fill',
|
|
1649
|
+
'map' = 'map',
|
|
1650
|
+
'map.fill' = 'map.fill',
|
|
1651
|
+
'mappin' = 'mappin',
|
|
1652
|
+
'mappin.and.ellipse' = 'mappin.and.ellipse',
|
|
1653
|
+
'mappin.circle' = 'mappin.circle',
|
|
1654
|
+
'mappin.circle.fill' = 'mappin.circle.fill',
|
|
1655
|
+
'mappin.slash' = 'mappin.slash',
|
|
1656
|
+
'megaphone' = 'megaphone',
|
|
1657
|
+
'megaphone.fill' = 'megaphone.fill',
|
|
1658
|
+
'memories' = 'memories',
|
|
1659
|
+
'memories.badge.minus' = 'memories.badge.minus',
|
|
1660
|
+
'memories.badge.plus' = 'memories.badge.plus',
|
|
1661
|
+
'memorychip' = 'memorychip',
|
|
1662
|
+
'menubar.arrow.down.rectangle' = 'menubar.arrow.down.rectangle',
|
|
1663
|
+
'menubar.arrow.up.rectangle' = 'menubar.arrow.up.rectangle',
|
|
1664
|
+
'menubar.dock.rectangle' = 'menubar.dock.rectangle',
|
|
1665
|
+
'menubar.dock.rectangle.badge.record' = 'menubar.dock.rectangle.badge.record',
|
|
1666
|
+
'menubar.rectangle' = 'menubar.rectangle',
|
|
1667
|
+
'message' = 'message',
|
|
1668
|
+
'message.circle' = 'message.circle',
|
|
1669
|
+
'message.circle.fill' = 'message.circle.fill',
|
|
1670
|
+
'message.fill' = 'message.fill',
|
|
1671
|
+
'metronome' = 'metronome',
|
|
1672
|
+
'metronome.fill' = 'metronome.fill',
|
|
1673
|
+
'mic' = 'mic',
|
|
1674
|
+
'mic.circle' = 'mic.circle',
|
|
1675
|
+
'mic.circle.fill' = 'mic.circle.fill',
|
|
1676
|
+
'mic.fill' = 'mic.fill',
|
|
1677
|
+
'mic.slash' = 'mic.slash',
|
|
1678
|
+
'mic.slash.fill' = 'mic.slash.fill',
|
|
1679
|
+
'millsign.circle' = 'millsign.circle',
|
|
1680
|
+
'millsign.circle.fill' = 'millsign.circle.fill',
|
|
1681
|
+
'millsign.square' = 'millsign.square',
|
|
1682
|
+
'millsign.square.fill' = 'millsign.square.fill',
|
|
1683
|
+
'minus' = 'minus',
|
|
1684
|
+
'minus.circle' = 'minus.circle',
|
|
1685
|
+
'minus.circle.fill' = 'minus.circle.fill',
|
|
1686
|
+
'minus.diamond' = 'minus.diamond',
|
|
1687
|
+
'minus.diamond.fill' = 'minus.diamond.fill',
|
|
1688
|
+
'minus.magnifyingglass' = 'minus.magnifyingglass',
|
|
1689
|
+
'minus.plus.batteryblock' = 'minus.plus.batteryblock',
|
|
1690
|
+
'minus.plus.batteryblock.fill' = 'minus.plus.batteryblock.fill',
|
|
1691
|
+
'minus.rectangle' = 'minus.rectangle',
|
|
1692
|
+
'minus.rectangle.fill' = 'minus.rectangle.fill',
|
|
1693
|
+
'minus.rectangle.portrait' = 'minus.rectangle.portrait',
|
|
1694
|
+
'minus.rectangle.portrait.fill' = 'minus.rectangle.portrait.fill',
|
|
1695
|
+
'minus.slash.plus' = 'minus.slash.plus',
|
|
1696
|
+
'minus.square' = 'minus.square',
|
|
1697
|
+
'minus.square.fill' = 'minus.square.fill',
|
|
1698
|
+
'moon' = 'moon',
|
|
1699
|
+
'moon.circle' = 'moon.circle',
|
|
1700
|
+
'moon.circle.fill' = 'moon.circle.fill',
|
|
1701
|
+
'moon.fill' = 'moon.fill',
|
|
1702
|
+
'moon.stars' = 'moon.stars',
|
|
1703
|
+
'moon.stars.fill' = 'moon.stars.fill',
|
|
1704
|
+
'moon.zzz' = 'moon.zzz',
|
|
1705
|
+
'moon.zzz.fill' = 'moon.zzz.fill',
|
|
1706
|
+
'mosaic' = 'mosaic',
|
|
1707
|
+
'mosaic.fill' = 'mosaic.fill',
|
|
1708
|
+
'mount' = 'mount',
|
|
1709
|
+
'mount.fill' = 'mount.fill',
|
|
1710
|
+
'mouth' = 'mouth',
|
|
1711
|
+
'mouth.fill' = 'mouth.fill',
|
|
1712
|
+
'move.3d' = 'move.3d',
|
|
1713
|
+
'multiply' = 'multiply',
|
|
1714
|
+
'multiply.circle' = 'multiply.circle',
|
|
1715
|
+
'multiply.circle.fill' = 'multiply.circle.fill',
|
|
1716
|
+
'multiply.square' = 'multiply.square',
|
|
1717
|
+
'multiply.square.fill' = 'multiply.square.fill',
|
|
1718
|
+
'music.mic' = 'music.mic',
|
|
1719
|
+
'music.note' = 'music.note',
|
|
1720
|
+
'music.note.house' = 'music.note.house',
|
|
1721
|
+
'music.note.house.fill' = 'music.note.house.fill',
|
|
1722
|
+
'music.note.list' = 'music.note.list',
|
|
1723
|
+
'music.quarternote.3' = 'music.quarternote.3',
|
|
1724
|
+
'mustache' = 'mustache',
|
|
1725
|
+
'mustache.fill' = 'mustache.fill',
|
|
1726
|
+
'n.circle' = 'n.circle',
|
|
1727
|
+
'n.circle.fill' = 'n.circle.fill',
|
|
1728
|
+
'n.square' = 'n.square',
|
|
1729
|
+
'n.square.fill' = 'n.square.fill',
|
|
1730
|
+
'nairasign.circle' = 'nairasign.circle',
|
|
1731
|
+
'nairasign.circle.fill' = 'nairasign.circle.fill',
|
|
1732
|
+
'nairasign.square' = 'nairasign.square',
|
|
1733
|
+
'nairasign.square.fill' = 'nairasign.square.fill',
|
|
1734
|
+
'network' = 'network',
|
|
1735
|
+
'newspaper' = 'newspaper',
|
|
1736
|
+
'newspaper.fill' = 'newspaper.fill',
|
|
1737
|
+
'nose' = 'nose',
|
|
1738
|
+
'nose.fill' = 'nose.fill',
|
|
1739
|
+
'nosign' = 'nosign',
|
|
1740
|
+
'note' = 'note',
|
|
1741
|
+
'note.text' = 'note.text',
|
|
1742
|
+
'note.text.badge.plus' = 'note.text.badge.plus',
|
|
1743
|
+
'number' = 'number',
|
|
1744
|
+
'number.circle' = 'number.circle',
|
|
1745
|
+
'number.circle.fill' = 'number.circle.fill',
|
|
1746
|
+
'number.square' = 'number.square',
|
|
1747
|
+
'number.square.fill' = 'number.square.fill',
|
|
1748
|
+
'o.circle' = 'o.circle',
|
|
1749
|
+
'o.circle.fill' = 'o.circle.fill',
|
|
1750
|
+
'o.square' = 'o.square',
|
|
1751
|
+
'o.square.fill' = 'o.square.fill',
|
|
1752
|
+
'octagon' = 'octagon',
|
|
1753
|
+
'octagon.fill' = 'octagon.fill',
|
|
1754
|
+
'opticaldisc' = 'opticaldisc',
|
|
1755
|
+
'opticaldiscdrive' = 'opticaldiscdrive',
|
|
1756
|
+
'opticaldiscdrive.fill' = 'opticaldiscdrive.fill',
|
|
1757
|
+
'option' = 'option',
|
|
1758
|
+
'oval' = 'oval',
|
|
1759
|
+
'oval.fill' = 'oval.fill',
|
|
1760
|
+
'oval.portrait' = 'oval.portrait',
|
|
1761
|
+
'oval.portrait.fill' = 'oval.portrait.fill',
|
|
1762
|
+
'p.circle' = 'p.circle',
|
|
1763
|
+
'p.circle.fill' = 'p.circle.fill',
|
|
1764
|
+
'p.square' = 'p.square',
|
|
1765
|
+
'p.square.fill' = 'p.square.fill',
|
|
1766
|
+
'paintbrush' = 'paintbrush',
|
|
1767
|
+
'paintbrush.fill' = 'paintbrush.fill',
|
|
1768
|
+
'paintbrush.pointed' = 'paintbrush.pointed',
|
|
1769
|
+
'paintbrush.pointed.fill' = 'paintbrush.pointed.fill',
|
|
1770
|
+
'paintpalette' = 'paintpalette',
|
|
1771
|
+
'paintpalette.fill' = 'paintpalette.fill',
|
|
1772
|
+
'pano' = 'pano',
|
|
1773
|
+
'pano.fill' = 'pano.fill',
|
|
1774
|
+
'paperclip' = 'paperclip',
|
|
1775
|
+
'paperclip.badge.ellipsis' = 'paperclip.badge.ellipsis',
|
|
1776
|
+
'paperclip.circle' = 'paperclip.circle',
|
|
1777
|
+
'paperclip.circle.fill' = 'paperclip.circle.fill',
|
|
1778
|
+
'paperplane' = 'paperplane',
|
|
1779
|
+
'paperplane.circle' = 'paperplane.circle',
|
|
1780
|
+
'paperplane.circle.fill' = 'paperplane.circle.fill',
|
|
1781
|
+
'paperplane.fill' = 'paperplane.fill',
|
|
1782
|
+
'paragraphsign' = 'paragraphsign',
|
|
1783
|
+
'pause' = 'pause',
|
|
1784
|
+
'pause.circle' = 'pause.circle',
|
|
1785
|
+
'pause.circle.fill' = 'pause.circle.fill',
|
|
1786
|
+
'pause.fill' = 'pause.fill',
|
|
1787
|
+
'pause.rectangle' = 'pause.rectangle',
|
|
1788
|
+
'pause.rectangle.fill' = 'pause.rectangle.fill',
|
|
1789
|
+
'pc' = 'pc',
|
|
1790
|
+
'pencil' = 'pencil',
|
|
1791
|
+
'pencil.and.outline' = 'pencil.and.outline',
|
|
1792
|
+
'pencil.circle' = 'pencil.circle',
|
|
1793
|
+
'pencil.circle.fill' = 'pencil.circle.fill',
|
|
1794
|
+
'pencil.slash' = 'pencil.slash',
|
|
1795
|
+
'pencil.tip' = 'pencil.tip',
|
|
1796
|
+
'pencil.tip.crop.circle' = 'pencil.tip.crop.circle',
|
|
1797
|
+
'pencil.tip.crop.circle.badge.arrow.forward' = 'pencil.tip.crop.circle.badge.arrow.forward',
|
|
1798
|
+
'pencil.tip.crop.circle.badge.minus' = 'pencil.tip.crop.circle.badge.minus',
|
|
1799
|
+
'pencil.tip.crop.circle.badge.plus' = 'pencil.tip.crop.circle.badge.plus',
|
|
1800
|
+
'percent' = 'percent',
|
|
1801
|
+
'person' = 'person',
|
|
1802
|
+
'person.2' = 'person.2',
|
|
1803
|
+
'person.2.circle' = 'person.2.circle',
|
|
1804
|
+
'person.2.circle.fill' = 'person.2.circle.fill',
|
|
1805
|
+
'person.2.fill' = 'person.2.fill',
|
|
1806
|
+
'person.2.square.stack' = 'person.2.square.stack',
|
|
1807
|
+
'person.2.square.stack.fill' = 'person.2.square.stack.fill',
|
|
1808
|
+
'person.3' = 'person.3',
|
|
1809
|
+
'person.3.fill' = 'person.3.fill',
|
|
1810
|
+
'person.and.arrow.left.and.arrow.right' = 'person.and.arrow.left.and.arrow.right',
|
|
1811
|
+
'person.badge.minus' = 'person.badge.minus',
|
|
1812
|
+
'person.badge.plus' = 'person.badge.plus',
|
|
1813
|
+
'person.circle' = 'person.circle',
|
|
1814
|
+
'person.circle.fill' = 'person.circle.fill',
|
|
1815
|
+
'person.crop.circle' = 'person.crop.circle',
|
|
1816
|
+
'person.crop.circle.badge.checkmark' = 'person.crop.circle.badge.checkmark',
|
|
1817
|
+
'person.crop.circle.badge.exclamationmark' = 'person.crop.circle.badge.exclamationmark',
|
|
1818
|
+
'person.crop.circle.badge.minus' = 'person.crop.circle.badge.minus',
|
|
1819
|
+
'person.crop.circle.badge.plus' = 'person.crop.circle.badge.plus',
|
|
1820
|
+
'person.crop.circle.badge.questionmark' = 'person.crop.circle.badge.questionmark',
|
|
1821
|
+
'person.crop.circle.badge.xmark' = 'person.crop.circle.badge.xmark',
|
|
1822
|
+
'person.crop.circle.fill' = 'person.crop.circle.fill',
|
|
1823
|
+
'person.crop.circle.fill.badge.checkmark' = 'person.crop.circle.fill.badge.checkmark',
|
|
1824
|
+
'person.crop.circle.fill.badge.exclamationmark' = 'person.crop.circle.fill.badge.exclamationmark',
|
|
1825
|
+
'person.crop.circle.fill.badge.minus' = 'person.crop.circle.fill.badge.minus',
|
|
1826
|
+
'person.crop.circle.fill.badge.plus' = 'person.crop.circle.fill.badge.plus',
|
|
1827
|
+
'person.crop.circle.fill.badge.questionmark' = 'person.crop.circle.fill.badge.questionmark',
|
|
1828
|
+
'person.crop.circle.fill.badge.xmark' = 'person.crop.circle.fill.badge.xmark',
|
|
1829
|
+
'person.crop.rectangle' = 'person.crop.rectangle',
|
|
1830
|
+
'person.crop.rectangle.fill' = 'person.crop.rectangle.fill',
|
|
1831
|
+
'person.crop.square' = 'person.crop.square',
|
|
1832
|
+
'person.crop.square.fill' = 'person.crop.square.fill',
|
|
1833
|
+
'person.crop.square.fill.and.at.rectangle' = 'person.crop.square.fill.and.at.rectangle',
|
|
1834
|
+
'person.fill' = 'person.fill',
|
|
1835
|
+
'person.fill.and.arrow.left.and.arrow.right' = 'person.fill.and.arrow.left.and.arrow.right',
|
|
1836
|
+
'person.fill.badge.minus' = 'person.fill.badge.minus',
|
|
1837
|
+
'person.fill.badge.plus' = 'person.fill.badge.plus',
|
|
1838
|
+
'person.fill.checkmark' = 'person.fill.checkmark',
|
|
1839
|
+
'person.fill.questionmark' = 'person.fill.questionmark',
|
|
1840
|
+
'person.fill.turn.down' = 'person.fill.turn.down',
|
|
1841
|
+
'person.fill.turn.left' = 'person.fill.turn.left',
|
|
1842
|
+
'person.fill.turn.right' = 'person.fill.turn.right',
|
|
1843
|
+
'person.fill.viewfinder' = 'person.fill.viewfinder',
|
|
1844
|
+
'person.fill.xmark' = 'person.fill.xmark',
|
|
1845
|
+
'person.icloud' = 'person.icloud',
|
|
1846
|
+
'person.icloud.fill' = 'person.icloud.fill',
|
|
1847
|
+
'personalhotspot' = 'personalhotspot',
|
|
1848
|
+
'perspective' = 'perspective',
|
|
1849
|
+
'pesetasign.circle' = 'pesetasign.circle',
|
|
1850
|
+
'pesetasign.circle.fill' = 'pesetasign.circle.fill',
|
|
1851
|
+
'pesetasign.square' = 'pesetasign.square',
|
|
1852
|
+
'pesetasign.square.fill' = 'pesetasign.square.fill',
|
|
1853
|
+
'pesosign.circle' = 'pesosign.circle',
|
|
1854
|
+
'pesosign.circle.fill' = 'pesosign.circle.fill',
|
|
1855
|
+
'pesosign.square' = 'pesosign.square',
|
|
1856
|
+
'pesosign.square.fill' = 'pesosign.square.fill',
|
|
1857
|
+
'phone' = 'phone',
|
|
1858
|
+
'phone.arrow.down.left' = 'phone.arrow.down.left',
|
|
1859
|
+
'phone.arrow.right' = 'phone.arrow.right',
|
|
1860
|
+
'phone.arrow.up.right' = 'phone.arrow.up.right',
|
|
1861
|
+
'phone.badge.plus' = 'phone.badge.plus',
|
|
1862
|
+
'phone.bubble.left' = 'phone.bubble.left',
|
|
1863
|
+
'phone.bubble.left.fill' = 'phone.bubble.left.fill',
|
|
1864
|
+
'phone.circle' = 'phone.circle',
|
|
1865
|
+
'phone.circle.fill' = 'phone.circle.fill',
|
|
1866
|
+
'phone.connection' = 'phone.connection',
|
|
1867
|
+
'phone.down' = 'phone.down',
|
|
1868
|
+
'phone.down.circle' = 'phone.down.circle',
|
|
1869
|
+
'phone.down.circle.fill' = 'phone.down.circle.fill',
|
|
1870
|
+
'phone.down.fill' = 'phone.down.fill',
|
|
1871
|
+
'phone.fill' = 'phone.fill',
|
|
1872
|
+
'phone.fill.arrow.down.left' = 'phone.fill.arrow.down.left',
|
|
1873
|
+
'phone.fill.arrow.right' = 'phone.fill.arrow.right',
|
|
1874
|
+
'phone.fill.arrow.up.right' = 'phone.fill.arrow.up.right',
|
|
1875
|
+
'phone.fill.badge.plus' = 'phone.fill.badge.plus',
|
|
1876
|
+
'phone.fill.connection' = 'phone.fill.connection',
|
|
1877
|
+
'photo' = 'photo',
|
|
1878
|
+
'photo.fill' = 'photo.fill',
|
|
1879
|
+
'photo.fill.on.rectangle.fill' = 'photo.fill.on.rectangle.fill',
|
|
1880
|
+
'photo.on.rectangle' = 'photo.on.rectangle',
|
|
1881
|
+
'photo.on.rectangle.angled' = 'photo.on.rectangle.angled',
|
|
1882
|
+
'photo.tv' = 'photo.tv',
|
|
1883
|
+
'pianokeys' = 'pianokeys',
|
|
1884
|
+
'pianokeys.inverse' = 'pianokeys.inverse',
|
|
1885
|
+
'pills' = 'pills',
|
|
1886
|
+
'pills.fill' = 'pills.fill',
|
|
1887
|
+
'pin' = 'pin',
|
|
1888
|
+
'pin.circle' = 'pin.circle',
|
|
1889
|
+
'pin.circle.fill' = 'pin.circle.fill',
|
|
1890
|
+
'pin.fill' = 'pin.fill',
|
|
1891
|
+
'pin.slash' = 'pin.slash',
|
|
1892
|
+
'pin.slash.fill' = 'pin.slash.fill',
|
|
1893
|
+
'pip' = 'pip',
|
|
1894
|
+
'pip.enter' = 'pip.enter',
|
|
1895
|
+
'pip.exit' = 'pip.exit',
|
|
1896
|
+
'pip.fill' = 'pip.fill',
|
|
1897
|
+
'pip.remove' = 'pip.remove',
|
|
1898
|
+
'pip.swap' = 'pip.swap',
|
|
1899
|
+
'placeholdertext.fill' = 'placeholdertext.fill',
|
|
1900
|
+
'play' = 'play',
|
|
1901
|
+
'play.circle' = 'play.circle',
|
|
1902
|
+
'play.circle.fill' = 'play.circle.fill',
|
|
1903
|
+
'play.fill' = 'play.fill',
|
|
1904
|
+
'play.rectangle' = 'play.rectangle',
|
|
1905
|
+
'play.rectangle.fill' = 'play.rectangle.fill',
|
|
1906
|
+
'play.slash' = 'play.slash',
|
|
1907
|
+
'play.slash.fill' = 'play.slash.fill',
|
|
1908
|
+
'play.tv' = 'play.tv',
|
|
1909
|
+
'play.tv.fill' = 'play.tv.fill',
|
|
1910
|
+
'playpause' = 'playpause',
|
|
1911
|
+
'playpause.fill' = 'playpause.fill',
|
|
1912
|
+
'plus' = 'plus',
|
|
1913
|
+
'plus.app' = 'plus.app',
|
|
1914
|
+
'plus.app.fill' = 'plus.app.fill',
|
|
1915
|
+
'plus.bubble' = 'plus.bubble',
|
|
1916
|
+
'plus.bubble.fill' = 'plus.bubble.fill',
|
|
1917
|
+
'plus.circle' = 'plus.circle',
|
|
1918
|
+
'plus.circle.fill' = 'plus.circle.fill',
|
|
1919
|
+
'plus.diamond' = 'plus.diamond',
|
|
1920
|
+
'plus.diamond.fill' = 'plus.diamond.fill',
|
|
1921
|
+
'plus.magnifyingglass' = 'plus.magnifyingglass',
|
|
1922
|
+
'plus.message' = 'plus.message',
|
|
1923
|
+
'plus.message.fill' = 'plus.message.fill',
|
|
1924
|
+
'plus.rectangle' = 'plus.rectangle',
|
|
1925
|
+
'plus.rectangle.fill' = 'plus.rectangle.fill',
|
|
1926
|
+
'plus.rectangle.fill.on.folder.fill' = 'plus.rectangle.fill.on.folder.fill',
|
|
1927
|
+
'plus.rectangle.fill.on.rectangle.fill' = 'plus.rectangle.fill.on.rectangle.fill',
|
|
1928
|
+
'plus.rectangle.on.folder' = 'plus.rectangle.on.folder',
|
|
1929
|
+
'plus.rectangle.on.rectangle' = 'plus.rectangle.on.rectangle',
|
|
1930
|
+
'plus.rectangle.portrait' = 'plus.rectangle.portrait',
|
|
1931
|
+
'plus.rectangle.portrait.fill' = 'plus.rectangle.portrait.fill',
|
|
1932
|
+
'plus.slash.minus' = 'plus.slash.minus',
|
|
1933
|
+
'plus.square' = 'plus.square',
|
|
1934
|
+
'plus.square.fill' = 'plus.square.fill',
|
|
1935
|
+
'plus.square.fill.on.square.fill' = 'plus.square.fill.on.square.fill',
|
|
1936
|
+
'plus.square.on.square' = 'plus.square.on.square',
|
|
1937
|
+
'plus.viewfinder' = 'plus.viewfinder',
|
|
1938
|
+
'plusminus' = 'plusminus',
|
|
1939
|
+
'plusminus.circle' = 'plusminus.circle',
|
|
1940
|
+
'plusminus.circle.fill' = 'plusminus.circle.fill',
|
|
1941
|
+
'point.fill.topleft.down.curvedto.point.fill.bottomright.up' = 'point.fill.topleft.down.curvedto.point.fill.bottomright.up',
|
|
1942
|
+
'point.topleft.down.curvedto.point.bottomright.up' = 'point.topleft.down.curvedto.point.bottomright.up',
|
|
1943
|
+
'power' = 'power',
|
|
1944
|
+
'poweroff' = 'poweroff',
|
|
1945
|
+
'poweron' = 'poweron',
|
|
1946
|
+
'powersleep' = 'powersleep',
|
|
1947
|
+
'printer' = 'printer',
|
|
1948
|
+
'printer.dotmatrix' = 'printer.dotmatrix',
|
|
1949
|
+
'printer.dotmatrix.fill' = 'printer.dotmatrix.fill',
|
|
1950
|
+
'printer.dotmatrix.fill.and.paper.fill' = 'printer.dotmatrix.fill.and.paper.fill',
|
|
1951
|
+
'printer.fill' = 'printer.fill',
|
|
1952
|
+
'printer.fill.and.paper.fill' = 'printer.fill.and.paper.fill',
|
|
1953
|
+
'projective' = 'projective',
|
|
1954
|
+
'purchased' = 'purchased',
|
|
1955
|
+
'purchased.circle' = 'purchased.circle',
|
|
1956
|
+
'purchased.circle.fill' = 'purchased.circle.fill',
|
|
1957
|
+
'puzzlepiece' = 'puzzlepiece',
|
|
1958
|
+
'puzzlepiece.fill' = 'puzzlepiece.fill',
|
|
1959
|
+
'pyramid' = 'pyramid',
|
|
1960
|
+
'pyramid.fill' = 'pyramid.fill',
|
|
1961
|
+
'q.circle' = 'q.circle',
|
|
1962
|
+
'q.circle.fill' = 'q.circle.fill',
|
|
1963
|
+
'q.square' = 'q.square',
|
|
1964
|
+
'q.square.fill' = 'q.square.fill',
|
|
1965
|
+
'qrcode' = 'qrcode',
|
|
1966
|
+
'qrcode.viewfinder' = 'qrcode.viewfinder',
|
|
1967
|
+
'questionmark' = 'questionmark',
|
|
1968
|
+
'questionmark.circle' = 'questionmark.circle',
|
|
1969
|
+
'questionmark.circle.fill' = 'questionmark.circle.fill',
|
|
1970
|
+
'questionmark.diamond' = 'questionmark.diamond',
|
|
1971
|
+
'questionmark.diamond.fill' = 'questionmark.diamond.fill',
|
|
1972
|
+
'questionmark.folder' = 'questionmark.folder',
|
|
1973
|
+
'questionmark.folder.fill' = 'questionmark.folder.fill',
|
|
1974
|
+
'questionmark.square' = 'questionmark.square',
|
|
1975
|
+
'questionmark.square.dashed' = 'questionmark.square.dashed',
|
|
1976
|
+
'questionmark.square.fill' = 'questionmark.square.fill',
|
|
1977
|
+
'questionmark.video' = 'questionmark.video',
|
|
1978
|
+
'questionmark.video.fill' = 'questionmark.video.fill',
|
|
1979
|
+
'quote.bubble' = 'quote.bubble',
|
|
1980
|
+
'quote.bubble.fill' = 'quote.bubble.fill',
|
|
1981
|
+
'r.circle' = 'r.circle',
|
|
1982
|
+
'r.circle.fill' = 'r.circle.fill',
|
|
1983
|
+
'r.joystick' = 'r.joystick',
|
|
1984
|
+
'r.joystick.down' = 'r.joystick.down',
|
|
1985
|
+
'r.joystick.down.fill' = 'r.joystick.down.fill',
|
|
1986
|
+
'r.joystick.fill' = 'r.joystick.fill',
|
|
1987
|
+
'r.rectangle.roundedbottom' = 'r.rectangle.roundedbottom',
|
|
1988
|
+
'r.rectangle.roundedbottom.fill' = 'r.rectangle.roundedbottom.fill',
|
|
1989
|
+
'r.square' = 'r.square',
|
|
1990
|
+
'r.square.fill' = 'r.square.fill',
|
|
1991
|
+
'r.square.fill.on.square.fill' = 'r.square.fill.on.square.fill',
|
|
1992
|
+
'r.square.on.square' = 'r.square.on.square',
|
|
1993
|
+
'r1.rectangle.roundedbottom' = 'r1.rectangle.roundedbottom',
|
|
1994
|
+
'r1.rectangle.roundedbottom.fill' = 'r1.rectangle.roundedbottom.fill',
|
|
1995
|
+
'r2.rectangle.roundedtop' = 'r2.rectangle.roundedtop',
|
|
1996
|
+
'r2.rectangle.roundedtop.fill' = 'r2.rectangle.roundedtop.fill',
|
|
1997
|
+
'radio' = 'radio',
|
|
1998
|
+
'radio.fill' = 'radio.fill',
|
|
1999
|
+
'rays' = 'rays',
|
|
2000
|
+
'rb.rectangle.roundedbottom' = 'rb.rectangle.roundedbottom',
|
|
2001
|
+
'rb.rectangle.roundedbottom.fill' = 'rb.rectangle.roundedbottom.fill',
|
|
2002
|
+
'record.circle' = 'record.circle',
|
|
2003
|
+
'record.circle.fill' = 'record.circle.fill',
|
|
2004
|
+
'recordingtape' = 'recordingtape',
|
|
2005
|
+
'rectangle' = 'rectangle',
|
|
2006
|
+
'rectangle.3.offgrid' = 'rectangle.3.offgrid',
|
|
2007
|
+
'rectangle.3.offgrid.bubble.left' = 'rectangle.3.offgrid.bubble.left',
|
|
2008
|
+
'rectangle.3.offgrid.bubble.left.fill' = 'rectangle.3.offgrid.bubble.left.fill',
|
|
2009
|
+
'rectangle.3.offgrid.fill' = 'rectangle.3.offgrid.fill',
|
|
2010
|
+
'rectangle.and.arrow.up.right.and.arrow.down.left' = 'rectangle.and.arrow.up.right.and.arrow.down.left',
|
|
2011
|
+
'rectangle.and.arrow.up.right.and.arrow.down.left.slash' = 'rectangle.and.arrow.up.right.and.arrow.down.left.slash',
|
|
2012
|
+
'rectangle.and.paperclip' = 'rectangle.and.paperclip',
|
|
2013
|
+
'rectangle.and.pencil.and.ellipsis' = 'rectangle.and.pencil.and.ellipsis',
|
|
2014
|
+
'rectangle.and.text.magnifyingglass' = 'rectangle.and.text.magnifyingglass',
|
|
2015
|
+
'rectangle.arrowtriangle.2.inward' = 'rectangle.arrowtriangle.2.inward',
|
|
2016
|
+
'rectangle.arrowtriangle.2.outward' = 'rectangle.arrowtriangle.2.outward',
|
|
2017
|
+
'rectangle.badge.checkmark' = 'rectangle.badge.checkmark',
|
|
2018
|
+
'rectangle.badge.minus' = 'rectangle.badge.minus',
|
|
2019
|
+
'rectangle.badge.person.crop' = 'rectangle.badge.person.crop',
|
|
2020
|
+
'rectangle.badge.plus' = 'rectangle.badge.plus',
|
|
2021
|
+
'rectangle.badge.xmark' = 'rectangle.badge.xmark',
|
|
2022
|
+
'rectangle.bottomthird.inset.fill' = 'rectangle.bottomthird.inset.fill',
|
|
2023
|
+
'rectangle.center.inset.fill' = 'rectangle.center.inset.fill',
|
|
2024
|
+
'rectangle.compress.vertical' = 'rectangle.compress.vertical',
|
|
2025
|
+
'rectangle.connected.to.line.below' = 'rectangle.connected.to.line.below',
|
|
2026
|
+
'rectangle.dashed' = 'rectangle.dashed',
|
|
2027
|
+
'rectangle.dashed.and.paperclip' = 'rectangle.dashed.and.paperclip',
|
|
2028
|
+
'rectangle.dashed.badge.record' = 'rectangle.dashed.badge.record',
|
|
2029
|
+
'rectangle.expand.vertical' = 'rectangle.expand.vertical',
|
|
2030
|
+
'rectangle.fill' = 'rectangle.fill',
|
|
2031
|
+
'rectangle.fill.badge.checkmark' = 'rectangle.fill.badge.checkmark',
|
|
2032
|
+
'rectangle.fill.badge.minus' = 'rectangle.fill.badge.minus',
|
|
2033
|
+
'rectangle.fill.badge.person.crop' = 'rectangle.fill.badge.person.crop',
|
|
2034
|
+
'rectangle.fill.badge.plus' = 'rectangle.fill.badge.plus',
|
|
2035
|
+
'rectangle.fill.badge.xmark' = 'rectangle.fill.badge.xmark',
|
|
2036
|
+
'rectangle.fill.on.rectangle.angled.fill' = 'rectangle.fill.on.rectangle.angled.fill',
|
|
2037
|
+
'rectangle.fill.on.rectangle.fill' = 'rectangle.fill.on.rectangle.fill',
|
|
2038
|
+
'rectangle.fill.on.rectangle.fill.circle' = 'rectangle.fill.on.rectangle.fill.circle',
|
|
2039
|
+
'rectangle.fill.on.rectangle.fill.circle.fill' = 'rectangle.fill.on.rectangle.fill.circle.fill',
|
|
2040
|
+
'rectangle.fill.on.rectangle.fill.slash.fill' = 'rectangle.fill.on.rectangle.fill.slash.fill',
|
|
2041
|
+
'rectangle.grid.1x2' = 'rectangle.grid.1x2',
|
|
2042
|
+
'rectangle.grid.1x2.fill' = 'rectangle.grid.1x2.fill',
|
|
2043
|
+
'rectangle.grid.2x2' = 'rectangle.grid.2x2',
|
|
2044
|
+
'rectangle.grid.2x2.fill' = 'rectangle.grid.2x2.fill',
|
|
2045
|
+
'rectangle.grid.3x2' = 'rectangle.grid.3x2',
|
|
2046
|
+
'rectangle.grid.3x2.fill' = 'rectangle.grid.3x2.fill',
|
|
2047
|
+
'rectangle.inset.bottomleft.fill' = 'rectangle.inset.bottomleft.fill',
|
|
2048
|
+
'rectangle.inset.bottomright.fill' = 'rectangle.inset.bottomright.fill',
|
|
2049
|
+
'rectangle.inset.fill' = 'rectangle.inset.fill',
|
|
2050
|
+
'rectangle.inset.topleft.fill' = 'rectangle.inset.topleft.fill',
|
|
2051
|
+
'rectangle.inset.topright.fill' = 'rectangle.inset.topright.fill',
|
|
2052
|
+
'rectangle.lefthalf.fill' = 'rectangle.lefthalf.fill',
|
|
2053
|
+
'rectangle.lefthalf.inset.fill' = 'rectangle.lefthalf.inset.fill',
|
|
2054
|
+
'rectangle.lefthalf.inset.fill.arrow.left' = 'rectangle.lefthalf.inset.fill.arrow.left',
|
|
2055
|
+
'rectangle.leftthird.inset.fill' = 'rectangle.leftthird.inset.fill',
|
|
2056
|
+
'rectangle.on.rectangle' = 'rectangle.on.rectangle',
|
|
2057
|
+
'rectangle.on.rectangle.angled' = 'rectangle.on.rectangle.angled',
|
|
2058
|
+
'rectangle.on.rectangle.slash' = 'rectangle.on.rectangle.slash',
|
|
2059
|
+
'rectangle.portrait' = 'rectangle.portrait',
|
|
2060
|
+
'rectangle.portrait.arrowtriangle.2.inward' = 'rectangle.portrait.arrowtriangle.2.inward',
|
|
2061
|
+
'rectangle.portrait.arrowtriangle.2.outward' = 'rectangle.portrait.arrowtriangle.2.outward',
|
|
2062
|
+
'rectangle.portrait.fill' = 'rectangle.portrait.fill',
|
|
2063
|
+
'rectangle.righthalf.fill' = 'rectangle.righthalf.fill',
|
|
2064
|
+
'rectangle.righthalf.inset.fill' = 'rectangle.righthalf.inset.fill',
|
|
2065
|
+
'rectangle.righthalf.inset.fill.arrow.right' = 'rectangle.righthalf.inset.fill.arrow.right',
|
|
2066
|
+
'rectangle.rightthird.inset.fill' = 'rectangle.rightthird.inset.fill',
|
|
2067
|
+
'rectangle.roundedbottom' = 'rectangle.roundedbottom',
|
|
2068
|
+
'rectangle.roundedbottom.fill' = 'rectangle.roundedbottom.fill',
|
|
2069
|
+
'rectangle.roundedtop' = 'rectangle.roundedtop',
|
|
2070
|
+
'rectangle.roundedtop.fill' = 'rectangle.roundedtop.fill',
|
|
2071
|
+
'rectangle.slash' = 'rectangle.slash',
|
|
2072
|
+
'rectangle.slash.fill' = 'rectangle.slash.fill',
|
|
2073
|
+
'rectangle.split.1x2' = 'rectangle.split.1x2',
|
|
2074
|
+
'rectangle.split.1x2.fill' = 'rectangle.split.1x2.fill',
|
|
2075
|
+
'rectangle.split.2x1' = 'rectangle.split.2x1',
|
|
2076
|
+
'rectangle.split.2x1.fill' = 'rectangle.split.2x1.fill',
|
|
2077
|
+
'rectangle.split.2x2' = 'rectangle.split.2x2',
|
|
2078
|
+
'rectangle.split.2x2.fill' = 'rectangle.split.2x2.fill',
|
|
2079
|
+
'rectangle.split.3x1' = 'rectangle.split.3x1',
|
|
2080
|
+
'rectangle.split.3x1.fill' = 'rectangle.split.3x1.fill',
|
|
2081
|
+
'rectangle.split.3x3' = 'rectangle.split.3x3',
|
|
2082
|
+
'rectangle.split.3x3.fill' = 'rectangle.split.3x3.fill',
|
|
2083
|
+
'rectangle.stack' = 'rectangle.stack',
|
|
2084
|
+
'rectangle.stack.badge.minus' = 'rectangle.stack.badge.minus',
|
|
2085
|
+
'rectangle.stack.badge.person.crop' = 'rectangle.stack.badge.person.crop',
|
|
2086
|
+
'rectangle.stack.badge.plus' = 'rectangle.stack.badge.plus',
|
|
2087
|
+
'rectangle.stack.fill' = 'rectangle.stack.fill',
|
|
2088
|
+
'rectangle.stack.fill.badge.minus' = 'rectangle.stack.fill.badge.minus',
|
|
2089
|
+
'rectangle.stack.fill.badge.person.crop' = 'rectangle.stack.fill.badge.person.crop',
|
|
2090
|
+
'rectangle.stack.fill.badge.plus' = 'rectangle.stack.fill.badge.plus',
|
|
2091
|
+
'rectangle.stack.person.crop' = 'rectangle.stack.person.crop',
|
|
2092
|
+
'rectangle.stack.person.crop.fill' = 'rectangle.stack.person.crop.fill',
|
|
2093
|
+
'rectangle.topthird.inset' = 'rectangle.topthird.inset',
|
|
2094
|
+
'repeat' = 'repeat',
|
|
2095
|
+
'repeat.1' = 'repeat.1',
|
|
2096
|
+
'repeat.1.circle' = 'repeat.1.circle',
|
|
2097
|
+
'repeat.1.circle.fill' = 'repeat.1.circle.fill',
|
|
2098
|
+
'repeat.circle' = 'repeat.circle',
|
|
2099
|
+
'repeat.circle.fill' = 'repeat.circle.fill',
|
|
2100
|
+
'restart' = 'restart',
|
|
2101
|
+
'restart.circle' = 'restart.circle',
|
|
2102
|
+
'return' = 'return',
|
|
2103
|
+
'rhombus' = 'rhombus',
|
|
2104
|
+
'rhombus.fill' = 'rhombus.fill',
|
|
2105
|
+
'rosette' = 'rosette',
|
|
2106
|
+
'rotate.3d' = 'rotate.3d',
|
|
2107
|
+
'rotate.left' = 'rotate.left',
|
|
2108
|
+
'rotate.left.fill' = 'rotate.left.fill',
|
|
2109
|
+
'rotate.right' = 'rotate.right',
|
|
2110
|
+
'rotate.right.fill' = 'rotate.right.fill',
|
|
2111
|
+
'rt.rectangle.roundedtop' = 'rt.rectangle.roundedtop',
|
|
2112
|
+
'rt.rectangle.roundedtop.fill' = 'rt.rectangle.roundedtop.fill',
|
|
2113
|
+
'rublesign.circle' = 'rublesign.circle',
|
|
2114
|
+
'rublesign.circle.fill' = 'rublesign.circle.fill',
|
|
2115
|
+
'rublesign.square' = 'rublesign.square',
|
|
2116
|
+
'rublesign.square.fill' = 'rublesign.square.fill',
|
|
2117
|
+
'ruler' = 'ruler',
|
|
2118
|
+
'ruler.fill' = 'ruler.fill',
|
|
2119
|
+
'rupeesign.circle' = 'rupeesign.circle',
|
|
2120
|
+
'rupeesign.circle.fill' = 'rupeesign.circle.fill',
|
|
2121
|
+
'rupeesign.square' = 'rupeesign.square',
|
|
2122
|
+
'rupeesign.square.fill' = 'rupeesign.square.fill',
|
|
2123
|
+
's.circle' = 's.circle',
|
|
2124
|
+
's.circle.fill' = 's.circle.fill',
|
|
2125
|
+
's.square' = 's.square',
|
|
2126
|
+
's.square.fill' = 's.square.fill',
|
|
2127
|
+
'safari' = 'safari',
|
|
2128
|
+
'safari.fill' = 'safari.fill',
|
|
2129
|
+
'scale.3d' = 'scale.3d',
|
|
2130
|
+
'scalemass' = 'scalemass',
|
|
2131
|
+
'scalemass.fill' = 'scalemass.fill',
|
|
2132
|
+
'scanner' = 'scanner',
|
|
2133
|
+
'scanner.fill' = 'scanner.fill',
|
|
2134
|
+
'scissors' = 'scissors',
|
|
2135
|
+
'scissors.badge.ellipsis' = 'scissors.badge.ellipsis',
|
|
2136
|
+
'scope' = 'scope',
|
|
2137
|
+
'scribble' = 'scribble',
|
|
2138
|
+
'scribble.variable' = 'scribble.variable',
|
|
2139
|
+
'scroll' = 'scroll',
|
|
2140
|
+
'scroll.fill' = 'scroll.fill',
|
|
2141
|
+
'sdcard' = 'sdcard',
|
|
2142
|
+
'sdcard.fill' = 'sdcard.fill',
|
|
2143
|
+
'seal' = 'seal',
|
|
2144
|
+
'seal.fill' = 'seal.fill',
|
|
2145
|
+
'selection.pin.in.out' = 'selection.pin.in.out',
|
|
2146
|
+
'server.rack' = 'server.rack',
|
|
2147
|
+
'shadow' = 'shadow',
|
|
2148
|
+
'shekelsign.circle' = 'shekelsign.circle',
|
|
2149
|
+
'shekelsign.circle.fill' = 'shekelsign.circle.fill',
|
|
2150
|
+
'shekelsign.square' = 'shekelsign.square',
|
|
2151
|
+
'shekelsign.square.fill' = 'shekelsign.square.fill',
|
|
2152
|
+
'shield' = 'shield',
|
|
2153
|
+
'shield.checkerboard' = 'shield.checkerboard',
|
|
2154
|
+
'shield.fill' = 'shield.fill',
|
|
2155
|
+
'shield.lefthalf.fill' = 'shield.lefthalf.fill',
|
|
2156
|
+
'shield.lefthalf.fill.slash' = 'shield.lefthalf.fill.slash',
|
|
2157
|
+
'shield.slash' = 'shield.slash',
|
|
2158
|
+
'shield.slash.fill' = 'shield.slash.fill',
|
|
2159
|
+
'shift' = 'shift',
|
|
2160
|
+
'shift.fill' = 'shift.fill',
|
|
2161
|
+
'shippingbox' = 'shippingbox',
|
|
2162
|
+
'shippingbox.fill' = 'shippingbox.fill',
|
|
2163
|
+
'shuffle' = 'shuffle',
|
|
2164
|
+
'shuffle.circle' = 'shuffle.circle',
|
|
2165
|
+
'shuffle.circle.fill' = 'shuffle.circle.fill',
|
|
2166
|
+
'sidebar.leading' = 'sidebar.leading',
|
|
2167
|
+
'sidebar.left' = 'sidebar.left',
|
|
2168
|
+
'sidebar.right' = 'sidebar.right',
|
|
2169
|
+
'sidebar.squares.leading' = 'sidebar.squares.leading',
|
|
2170
|
+
'sidebar.squares.left' = 'sidebar.squares.left',
|
|
2171
|
+
'sidebar.squares.right' = 'sidebar.squares.right',
|
|
2172
|
+
'sidebar.squares.trailing' = 'sidebar.squares.trailing',
|
|
2173
|
+
'sidebar.trailing' = 'sidebar.trailing',
|
|
2174
|
+
'signature' = 'signature',
|
|
2175
|
+
'signpost.left' = 'signpost.left',
|
|
2176
|
+
'signpost.left.fill' = 'signpost.left.fill',
|
|
2177
|
+
'signpost.right' = 'signpost.right',
|
|
2178
|
+
'signpost.right.fill' = 'signpost.right.fill',
|
|
2179
|
+
'simcard' = 'simcard',
|
|
2180
|
+
'simcard.2' = 'simcard.2',
|
|
2181
|
+
'simcard.2.fill' = 'simcard.2.fill',
|
|
2182
|
+
'simcard.fill' = 'simcard.fill',
|
|
2183
|
+
'skew' = 'skew',
|
|
2184
|
+
'slash.circle' = 'slash.circle',
|
|
2185
|
+
'slash.circle.fill' = 'slash.circle.fill',
|
|
2186
|
+
'sleep' = 'sleep',
|
|
2187
|
+
'slider.horizontal.3' = 'slider.horizontal.3',
|
|
2188
|
+
'slider.horizontal.below.rectangle' = 'slider.horizontal.below.rectangle',
|
|
2189
|
+
'slider.horizontal.below.square.fill.and.square' = 'slider.horizontal.below.square.fill.and.square',
|
|
2190
|
+
'slider.vertical.3' = 'slider.vertical.3',
|
|
2191
|
+
'slowmo' = 'slowmo',
|
|
2192
|
+
'smallcircle.circle' = 'smallcircle.circle',
|
|
2193
|
+
'smallcircle.circle.fill' = 'smallcircle.circle.fill',
|
|
2194
|
+
'smallcircle.fill.circle' = 'smallcircle.fill.circle',
|
|
2195
|
+
'smallcircle.fill.circle.fill' = 'smallcircle.fill.circle.fill',
|
|
2196
|
+
'smoke' = 'smoke',
|
|
2197
|
+
'smoke.fill' = 'smoke.fill',
|
|
2198
|
+
'snow' = 'snow',
|
|
2199
|
+
'sparkle' = 'sparkle',
|
|
2200
|
+
'sparkles' = 'sparkles',
|
|
2201
|
+
'sparkles.rectangle.stack' = 'sparkles.rectangle.stack',
|
|
2202
|
+
'sparkles.rectangle.stack.fill' = 'sparkles.rectangle.stack.fill',
|
|
2203
|
+
'sparkles.square.fill.on.square' = 'sparkles.square.fill.on.square',
|
|
2204
|
+
'speaker' = 'speaker',
|
|
2205
|
+
'speaker.fill' = 'speaker.fill',
|
|
2206
|
+
'speaker.slash' = 'speaker.slash',
|
|
2207
|
+
'speaker.slash.circle' = 'speaker.slash.circle',
|
|
2208
|
+
'speaker.slash.circle.fill' = 'speaker.slash.circle.fill',
|
|
2209
|
+
'speaker.slash.fill' = 'speaker.slash.fill',
|
|
2210
|
+
'speaker.wave.1' = 'speaker.wave.1',
|
|
2211
|
+
'speaker.wave.1.fill' = 'speaker.wave.1.fill',
|
|
2212
|
+
'speaker.wave.2' = 'speaker.wave.2',
|
|
2213
|
+
'speaker.wave.2.circle' = 'speaker.wave.2.circle',
|
|
2214
|
+
'speaker.wave.2.circle.fill' = 'speaker.wave.2.circle.fill',
|
|
2215
|
+
'speaker.wave.2.fill' = 'speaker.wave.2.fill',
|
|
2216
|
+
'speaker.wave.3' = 'speaker.wave.3',
|
|
2217
|
+
'speaker.wave.3.fill' = 'speaker.wave.3.fill',
|
|
2218
|
+
'speaker.zzz' = 'speaker.zzz',
|
|
2219
|
+
'speaker.zzz.fill' = 'speaker.zzz.fill',
|
|
2220
|
+
'speedometer' = 'speedometer',
|
|
2221
|
+
'sportscourt' = 'sportscourt',
|
|
2222
|
+
'sportscourt.fill' = 'sportscourt.fill',
|
|
2223
|
+
'square' = 'square',
|
|
2224
|
+
'square.2.stack.3d' = 'square.2.stack.3d',
|
|
2225
|
+
'square.2.stack.3d.bottom.fill' = 'square.2.stack.3d.bottom.fill',
|
|
2226
|
+
'square.2.stack.3d.top.fill' = 'square.2.stack.3d.top.fill',
|
|
2227
|
+
'square.3.stack.3d' = 'square.3.stack.3d',
|
|
2228
|
+
'square.3.stack.3d.bottom.fill' = 'square.3.stack.3d.bottom.fill',
|
|
2229
|
+
'square.3.stack.3d.middle.fill' = 'square.3.stack.3d.middle.fill',
|
|
2230
|
+
'square.3.stack.3d.top.fill' = 'square.3.stack.3d.top.fill',
|
|
2231
|
+
'square.and.arrow.down' = 'square.and.arrow.down',
|
|
2232
|
+
'square.and.arrow.down.fill' = 'square.and.arrow.down.fill',
|
|
2233
|
+
'square.and.arrow.down.on.square' = 'square.and.arrow.down.on.square',
|
|
2234
|
+
'square.and.arrow.down.on.square.fill' = 'square.and.arrow.down.on.square.fill',
|
|
2235
|
+
'square.and.arrow.up' = 'square.and.arrow.up',
|
|
2236
|
+
'square.and.arrow.up.fill' = 'square.and.arrow.up.fill',
|
|
2237
|
+
'square.and.arrow.up.on.square' = 'square.and.arrow.up.on.square',
|
|
2238
|
+
'square.and.arrow.up.on.square.fill' = 'square.and.arrow.up.on.square.fill',
|
|
2239
|
+
'square.and.at.rectangle' = 'square.and.at.rectangle',
|
|
2240
|
+
'square.and.line.vertical.and.square' = 'square.and.line.vertical.and.square',
|
|
2241
|
+
'square.and.line.vertical.and.square.fill' = 'square.and.line.vertical.and.square.fill',
|
|
2242
|
+
'square.and.pencil' = 'square.and.pencil',
|
|
2243
|
+
'square.bottomhalf.fill' = 'square.bottomhalf.fill',
|
|
2244
|
+
'square.circle' = 'square.circle',
|
|
2245
|
+
'square.circle.fill' = 'square.circle.fill',
|
|
2246
|
+
'square.dashed' = 'square.dashed',
|
|
2247
|
+
'square.dashed.inset.fill' = 'square.dashed.inset.fill',
|
|
2248
|
+
'square.fill' = 'square.fill',
|
|
2249
|
+
'square.fill.and.line.vertical.and.square' = 'square.fill.and.line.vertical.and.square',
|
|
2250
|
+
'square.fill.and.line.vertical.square.fill' = 'square.fill.and.line.vertical.square.fill',
|
|
2251
|
+
'square.fill.on.circle.fill' = 'square.fill.on.circle.fill',
|
|
2252
|
+
'square.fill.on.square' = 'square.fill.on.square',
|
|
2253
|
+
'square.fill.on.square.fill' = 'square.fill.on.square.fill',
|
|
2254
|
+
'square.fill.text.grid.1x2' = 'square.fill.text.grid.1x2',
|
|
2255
|
+
'square.grid.2x2' = 'square.grid.2x2',
|
|
2256
|
+
'square.grid.2x2.fill' = 'square.grid.2x2.fill',
|
|
2257
|
+
'square.grid.3x1.below.line.grid.1x2' = 'square.grid.3x1.below.line.grid.1x2',
|
|
2258
|
+
'square.grid.3x1.fill.below.line.grid.1x2' = 'square.grid.3x1.fill.below.line.grid.1x2',
|
|
2259
|
+
'square.grid.3x1.folder.badge.plus' = 'square.grid.3x1.folder.badge.plus',
|
|
2260
|
+
'square.grid.3x1.folder.fill.badge.plus' = 'square.grid.3x1.folder.fill.badge.plus',
|
|
2261
|
+
'square.grid.3x2' = 'square.grid.3x2',
|
|
2262
|
+
'square.grid.3x2.fill' = 'square.grid.3x2.fill',
|
|
2263
|
+
'square.grid.3x3' = 'square.grid.3x3',
|
|
2264
|
+
'square.grid.3x3.bottomleft.fill' = 'square.grid.3x3.bottomleft.fill',
|
|
2265
|
+
'square.grid.3x3.bottommiddle.fill' = 'square.grid.3x3.bottommiddle.fill',
|
|
2266
|
+
'square.grid.3x3.bottomright.fill' = 'square.grid.3x3.bottomright.fill',
|
|
2267
|
+
'square.grid.3x3.fill' = 'square.grid.3x3.fill',
|
|
2268
|
+
'square.grid.3x3.fill.square' = 'square.grid.3x3.fill.square',
|
|
2269
|
+
'square.grid.3x3.middle.fill' = 'square.grid.3x3.middle.fill',
|
|
2270
|
+
'square.grid.3x3.middleleft.fill' = 'square.grid.3x3.middleleft.fill',
|
|
2271
|
+
'square.grid.3x3.middleright.fill' = 'square.grid.3x3.middleright.fill',
|
|
2272
|
+
'square.grid.3x3.topleft.fill' = 'square.grid.3x3.topleft.fill',
|
|
2273
|
+
'square.grid.3x3.topmiddle.fill' = 'square.grid.3x3.topmiddle.fill',
|
|
2274
|
+
'square.grid.3x3.topright.fill' = 'square.grid.3x3.topright.fill',
|
|
2275
|
+
'square.grid.4x3.fill' = 'square.grid.4x3.fill',
|
|
2276
|
+
'square.lefthalf.fill' = 'square.lefthalf.fill',
|
|
2277
|
+
'square.on.circle' = 'square.on.circle',
|
|
2278
|
+
'square.on.square' = 'square.on.square',
|
|
2279
|
+
'square.on.square.dashed' = 'square.on.square.dashed',
|
|
2280
|
+
'square.on.square.squareshape.controlhandles' = 'square.on.square.squareshape.controlhandles',
|
|
2281
|
+
'square.righthalf.fill' = 'square.righthalf.fill',
|
|
2282
|
+
'square.slash' = 'square.slash',
|
|
2283
|
+
'square.slash.fill' = 'square.slash.fill',
|
|
2284
|
+
'square.split.1x2' = 'square.split.1x2',
|
|
2285
|
+
'square.split.1x2.fill' = 'square.split.1x2.fill',
|
|
2286
|
+
'square.split.2x1' = 'square.split.2x1',
|
|
2287
|
+
'square.split.2x1.fill' = 'square.split.2x1.fill',
|
|
2288
|
+
'square.split.2x2' = 'square.split.2x2',
|
|
2289
|
+
'square.split.2x2.fill' = 'square.split.2x2.fill',
|
|
2290
|
+
'square.split.bottomrightquarter' = 'square.split.bottomrightquarter',
|
|
2291
|
+
'square.split.bottomrightquarter.fill' = 'square.split.bottomrightquarter.fill',
|
|
2292
|
+
'square.split.diagonal' = 'square.split.diagonal',
|
|
2293
|
+
'square.split.diagonal.2x2' = 'square.split.diagonal.2x2',
|
|
2294
|
+
'square.split.diagonal.2x2.fill' = 'square.split.diagonal.2x2.fill',
|
|
2295
|
+
'square.split.diagonal.fill' = 'square.split.diagonal.fill',
|
|
2296
|
+
'square.stack' = 'square.stack',
|
|
2297
|
+
'square.stack.3d.down.forward' = 'square.stack.3d.down.forward',
|
|
2298
|
+
'square.stack.3d.down.forward.fill' = 'square.stack.3d.down.forward.fill',
|
|
2299
|
+
'square.stack.3d.down.right' = 'square.stack.3d.down.right',
|
|
2300
|
+
'square.stack.3d.down.right.fill' = 'square.stack.3d.down.right.fill',
|
|
2301
|
+
'square.stack.3d.forward.dottedline' = 'square.stack.3d.forward.dottedline',
|
|
2302
|
+
'square.stack.3d.forward.dottedline.fill' = 'square.stack.3d.forward.dottedline.fill',
|
|
2303
|
+
'square.stack.3d.up' = 'square.stack.3d.up',
|
|
2304
|
+
'square.stack.3d.up.badge.a' = 'square.stack.3d.up.badge.a',
|
|
2305
|
+
'square.stack.3d.up.badge.a.fill' = 'square.stack.3d.up.badge.a.fill',
|
|
2306
|
+
'square.stack.3d.up.fill' = 'square.stack.3d.up.fill',
|
|
2307
|
+
'square.stack.3d.up.slash' = 'square.stack.3d.up.slash',
|
|
2308
|
+
'square.stack.3d.up.slash.fill' = 'square.stack.3d.up.slash.fill',
|
|
2309
|
+
'square.stack.fill' = 'square.stack.fill',
|
|
2310
|
+
'square.tophalf.fill' = 'square.tophalf.fill',
|
|
2311
|
+
'squares.below.rectangle' = 'squares.below.rectangle',
|
|
2312
|
+
'squareshape' = 'squareshape',
|
|
2313
|
+
'squareshape.controlhandles.on.squareshape.controlhandles' = 'squareshape.controlhandles.on.squareshape.controlhandles',
|
|
2314
|
+
'squareshape.dashed.squareshape' = 'squareshape.dashed.squareshape',
|
|
2315
|
+
'squareshape.fill' = 'squareshape.fill',
|
|
2316
|
+
'squareshape.split.2x2' = 'squareshape.split.2x2',
|
|
2317
|
+
'squareshape.split.2x2.dotted' = 'squareshape.split.2x2.dotted',
|
|
2318
|
+
'squareshape.split.3x3' = 'squareshape.split.3x3',
|
|
2319
|
+
'squareshape.squareshape.dashed' = 'squareshape.squareshape.dashed',
|
|
2320
|
+
'star' = 'star',
|
|
2321
|
+
'star.circle' = 'star.circle',
|
|
2322
|
+
'star.circle.fill' = 'star.circle.fill',
|
|
2323
|
+
'star.fill' = 'star.fill',
|
|
2324
|
+
'star.leadinghalf.fill' = 'star.leadinghalf.fill',
|
|
2325
|
+
'star.slash' = 'star.slash',
|
|
2326
|
+
'star.slash.fill' = 'star.slash.fill',
|
|
2327
|
+
'star.square' = 'star.square',
|
|
2328
|
+
'star.square.fill' = 'star.square.fill',
|
|
2329
|
+
'staroflife' = 'staroflife',
|
|
2330
|
+
'staroflife.circle' = 'staroflife.circle',
|
|
2331
|
+
'staroflife.circle.fill' = 'staroflife.circle.fill',
|
|
2332
|
+
'staroflife.fill' = 'staroflife.fill',
|
|
2333
|
+
'sterlingsign.circle' = 'sterlingsign.circle',
|
|
2334
|
+
'sterlingsign.circle.fill' = 'sterlingsign.circle.fill',
|
|
2335
|
+
'sterlingsign.square' = 'sterlingsign.square',
|
|
2336
|
+
'sterlingsign.square.fill' = 'sterlingsign.square.fill',
|
|
2337
|
+
'stethoscope' = 'stethoscope',
|
|
2338
|
+
'stop' = 'stop',
|
|
2339
|
+
'stop.circle' = 'stop.circle',
|
|
2340
|
+
'stop.circle.fill' = 'stop.circle.fill',
|
|
2341
|
+
'stop.fill' = 'stop.fill',
|
|
2342
|
+
'stopwatch' = 'stopwatch',
|
|
2343
|
+
'stopwatch.fill' = 'stopwatch.fill',
|
|
2344
|
+
'strikethrough' = 'strikethrough',
|
|
2345
|
+
'studentdesk' = 'studentdesk',
|
|
2346
|
+
'suit.club' = 'suit.club',
|
|
2347
|
+
'suit.club.fill' = 'suit.club.fill',
|
|
2348
|
+
'suit.diamond' = 'suit.diamond',
|
|
2349
|
+
'suit.diamond.fill' = 'suit.diamond.fill',
|
|
2350
|
+
'suit.heart' = 'suit.heart',
|
|
2351
|
+
'suit.heart.fill' = 'suit.heart.fill',
|
|
2352
|
+
'suit.spade' = 'suit.spade',
|
|
2353
|
+
'suit.spade.fill' = 'suit.spade.fill',
|
|
2354
|
+
'sum' = 'sum',
|
|
2355
|
+
'sun.dust' = 'sun.dust',
|
|
2356
|
+
'sun.dust.fill' = 'sun.dust.fill',
|
|
2357
|
+
'sun.haze' = 'sun.haze',
|
|
2358
|
+
'sun.haze.fill' = 'sun.haze.fill',
|
|
2359
|
+
'sun.max' = 'sun.max',
|
|
2360
|
+
'sun.max.fill' = 'sun.max.fill',
|
|
2361
|
+
'sun.min' = 'sun.min',
|
|
2362
|
+
'sun.min.fill' = 'sun.min.fill',
|
|
2363
|
+
'sunrise' = 'sunrise',
|
|
2364
|
+
'sunrise.fill' = 'sunrise.fill',
|
|
2365
|
+
'sunset' = 'sunset',
|
|
2366
|
+
'sunset.fill' = 'sunset.fill',
|
|
2367
|
+
'swift' = 'swift',
|
|
2368
|
+
'switch.2' = 'switch.2',
|
|
2369
|
+
't.bubble' = 't.bubble',
|
|
2370
|
+
't.bubble.fill' = 't.bubble.fill',
|
|
2371
|
+
't.circle' = 't.circle',
|
|
2372
|
+
't.circle.fill' = 't.circle.fill',
|
|
2373
|
+
't.square' = 't.square',
|
|
2374
|
+
't.square.fill' = 't.square.fill',
|
|
2375
|
+
'tablecells' = 'tablecells',
|
|
2376
|
+
'tablecells.badge.ellipsis' = 'tablecells.badge.ellipsis',
|
|
2377
|
+
'tablecells.badge.ellipsis.fill' = 'tablecells.badge.ellipsis.fill',
|
|
2378
|
+
'tablecells.fill' = 'tablecells.fill',
|
|
2379
|
+
'tag' = 'tag',
|
|
2380
|
+
'tag.circle' = 'tag.circle',
|
|
2381
|
+
'tag.circle.fill' = 'tag.circle.fill',
|
|
2382
|
+
'tag.fill' = 'tag.fill',
|
|
2383
|
+
'tag.slash' = 'tag.slash',
|
|
2384
|
+
'tag.slash.fill' = 'tag.slash.fill',
|
|
2385
|
+
'target' = 'target',
|
|
2386
|
+
'teletype' = 'teletype',
|
|
2387
|
+
'teletype.answer' = 'teletype.answer',
|
|
2388
|
+
'teletype.circle' = 'teletype.circle',
|
|
2389
|
+
'teletype.circle.fill' = 'teletype.circle.fill',
|
|
2390
|
+
'tengesign.circle' = 'tengesign.circle',
|
|
2391
|
+
'tengesign.circle.fill' = 'tengesign.circle.fill',
|
|
2392
|
+
'tengesign.square' = 'tengesign.square',
|
|
2393
|
+
'tengesign.square.fill' = 'tengesign.square.fill',
|
|
2394
|
+
'terminal' = 'terminal',
|
|
2395
|
+
'terminal.fill' = 'terminal.fill',
|
|
2396
|
+
'text.aligncenter' = 'text.aligncenter',
|
|
2397
|
+
'text.alignleft' = 'text.alignleft',
|
|
2398
|
+
'text.alignright' = 'text.alignright',
|
|
2399
|
+
'text.and.command.macwindow' = 'text.and.command.macwindow',
|
|
2400
|
+
'text.append' = 'text.append',
|
|
2401
|
+
'text.badge.checkmark' = 'text.badge.checkmark',
|
|
2402
|
+
'text.badge.minus' = 'text.badge.minus',
|
|
2403
|
+
'text.badge.plus' = 'text.badge.plus',
|
|
2404
|
+
'text.badge.star' = 'text.badge.star',
|
|
2405
|
+
'text.badge.xmark' = 'text.badge.xmark',
|
|
2406
|
+
'text.below.photo' = 'text.below.photo',
|
|
2407
|
+
'text.below.photo.fill' = 'text.below.photo.fill',
|
|
2408
|
+
'text.book.closed' = 'text.book.closed',
|
|
2409
|
+
'text.book.closed.fill' = 'text.book.closed.fill',
|
|
2410
|
+
'text.bubble' = 'text.bubble',
|
|
2411
|
+
'text.bubble.fill' = 'text.bubble.fill',
|
|
2412
|
+
'text.cursor' = 'text.cursor',
|
|
2413
|
+
'text.insert' = 'text.insert',
|
|
2414
|
+
'text.justify' = 'text.justify',
|
|
2415
|
+
'text.justifyleft' = 'text.justifyleft',
|
|
2416
|
+
'text.justifyright' = 'text.justifyright',
|
|
2417
|
+
'text.magnifyingglass' = 'text.magnifyingglass',
|
|
2418
|
+
'text.quote' = 'text.quote',
|
|
2419
|
+
'text.redaction' = 'text.redaction',
|
|
2420
|
+
'textbox' = 'textbox',
|
|
2421
|
+
'textformat' = 'textformat',
|
|
2422
|
+
'textformat.123' = 'textformat.123',
|
|
2423
|
+
'textformat.abc' = 'textformat.abc',
|
|
2424
|
+
'textformat.abc.dottedunderline' = 'textformat.abc.dottedunderline',
|
|
2425
|
+
'textformat.alt' = 'textformat.alt',
|
|
2426
|
+
'textformat.size' = 'textformat.size',
|
|
2427
|
+
'textformat.size.larger' = 'textformat.size.larger',
|
|
2428
|
+
'textformat.size.smaller' = 'textformat.size.smaller',
|
|
2429
|
+
'textformat.subscript' = 'textformat.subscript',
|
|
2430
|
+
'textformat.superscript' = 'textformat.superscript',
|
|
2431
|
+
'thermometer' = 'thermometer',
|
|
2432
|
+
'thermometer.snowflake' = 'thermometer.snowflake',
|
|
2433
|
+
'thermometer.sun' = 'thermometer.sun',
|
|
2434
|
+
'thermometer.sun.fill' = 'thermometer.sun.fill',
|
|
2435
|
+
'ticket' = 'ticket',
|
|
2436
|
+
'ticket.fill' = 'ticket.fill',
|
|
2437
|
+
'timelapse' = 'timelapse',
|
|
2438
|
+
'timeline.selection' = 'timeline.selection',
|
|
2439
|
+
'timer' = 'timer',
|
|
2440
|
+
'timer.square' = 'timer.square',
|
|
2441
|
+
'togglepower' = 'togglepower',
|
|
2442
|
+
'tornado' = 'tornado',
|
|
2443
|
+
'tortoise' = 'tortoise',
|
|
2444
|
+
'tortoise.fill' = 'tortoise.fill',
|
|
2445
|
+
'torus' = 'torus',
|
|
2446
|
+
'touchid' = 'touchid',
|
|
2447
|
+
'tram' = 'tram',
|
|
2448
|
+
'tram.circle' = 'tram.circle',
|
|
2449
|
+
'tram.circle.fill' = 'tram.circle.fill',
|
|
2450
|
+
'tram.fill' = 'tram.fill',
|
|
2451
|
+
'tram.tunnel.fill' = 'tram.tunnel.fill',
|
|
2452
|
+
'trash' = 'trash',
|
|
2453
|
+
'trash.circle' = 'trash.circle',
|
|
2454
|
+
'trash.circle.fill' = 'trash.circle.fill',
|
|
2455
|
+
'trash.fill' = 'trash.fill',
|
|
2456
|
+
'trash.slash' = 'trash.slash',
|
|
2457
|
+
'trash.slash.fill' = 'trash.slash.fill',
|
|
2458
|
+
'tray' = 'tray',
|
|
2459
|
+
'tray.2' = 'tray.2',
|
|
2460
|
+
'tray.2.fill' = 'tray.2.fill',
|
|
2461
|
+
'tray.and.arrow.down' = 'tray.and.arrow.down',
|
|
2462
|
+
'tray.and.arrow.down.fill' = 'tray.and.arrow.down.fill',
|
|
2463
|
+
'tray.and.arrow.up' = 'tray.and.arrow.up',
|
|
2464
|
+
'tray.and.arrow.up.fill' = 'tray.and.arrow.up.fill',
|
|
2465
|
+
'tray.circle' = 'tray.circle',
|
|
2466
|
+
'tray.circle.fill' = 'tray.circle.fill',
|
|
2467
|
+
'tray.fill' = 'tray.fill',
|
|
2468
|
+
'tray.full' = 'tray.full',
|
|
2469
|
+
'tray.full.fill' = 'tray.full.fill',
|
|
2470
|
+
'triangle' = 'triangle',
|
|
2471
|
+
'triangle.circle' = 'triangle.circle',
|
|
2472
|
+
'triangle.circle.fill' = 'triangle.circle.fill',
|
|
2473
|
+
'triangle.fill' = 'triangle.fill',
|
|
2474
|
+
'triangle.lefthalf.fill' = 'triangle.lefthalf.fill',
|
|
2475
|
+
'triangle.righthalf.fill' = 'triangle.righthalf.fill',
|
|
2476
|
+
'tropicalstorm' = 'tropicalstorm',
|
|
2477
|
+
'tugriksign.circle' = 'tugriksign.circle',
|
|
2478
|
+
'tugriksign.circle.fill' = 'tugriksign.circle.fill',
|
|
2479
|
+
'tugriksign.square' = 'tugriksign.square',
|
|
2480
|
+
'tugriksign.square.fill' = 'tugriksign.square.fill',
|
|
2481
|
+
'tuningfork' = 'tuningfork',
|
|
2482
|
+
'turkishlirasign.circle' = 'turkishlirasign.circle',
|
|
2483
|
+
'turkishlirasign.circle.fill' = 'turkishlirasign.circle.fill',
|
|
2484
|
+
'turkishlirasign.square' = 'turkishlirasign.square',
|
|
2485
|
+
'turkishlirasign.square.fill' = 'turkishlirasign.square.fill',
|
|
2486
|
+
'tv' = 'tv',
|
|
2487
|
+
'tv.and.hifispeaker.fill' = 'tv.and.hifispeaker.fill',
|
|
2488
|
+
'tv.and.mediabox' = 'tv.and.mediabox',
|
|
2489
|
+
'tv.circle' = 'tv.circle',
|
|
2490
|
+
'tv.circle.fill' = 'tv.circle.fill',
|
|
2491
|
+
'tv.fill' = 'tv.fill',
|
|
2492
|
+
'tv.music.note' = 'tv.music.note',
|
|
2493
|
+
'tv.music.note.fill' = 'tv.music.note.fill',
|
|
2494
|
+
'u.circle' = 'u.circle',
|
|
2495
|
+
'u.circle.fill' = 'u.circle.fill',
|
|
2496
|
+
'u.square' = 'u.square',
|
|
2497
|
+
'u.square.fill' = 'u.square.fill',
|
|
2498
|
+
'uiwindow.split.2x1' = 'uiwindow.split.2x1',
|
|
2499
|
+
'umbrella' = 'umbrella',
|
|
2500
|
+
'umbrella.fill' = 'umbrella.fill',
|
|
2501
|
+
'underline' = 'underline',
|
|
2502
|
+
'v.circle' = 'v.circle',
|
|
2503
|
+
'v.circle.fill' = 'v.circle.fill',
|
|
2504
|
+
'v.square' = 'v.square',
|
|
2505
|
+
'v.square.fill' = 'v.square.fill',
|
|
2506
|
+
'video' = 'video',
|
|
2507
|
+
'video.badge.checkmark' = 'video.badge.checkmark',
|
|
2508
|
+
'video.badge.plus' = 'video.badge.plus',
|
|
2509
|
+
'video.bubble.left' = 'video.bubble.left',
|
|
2510
|
+
'video.bubble.left.fill' = 'video.bubble.left.fill',
|
|
2511
|
+
'video.circle' = 'video.circle',
|
|
2512
|
+
'video.circle.fill' = 'video.circle.fill',
|
|
2513
|
+
'video.fill' = 'video.fill',
|
|
2514
|
+
'video.fill.badge.checkmark' = 'video.fill.badge.checkmark',
|
|
2515
|
+
'video.fill.badge.plus' = 'video.fill.badge.plus',
|
|
2516
|
+
'video.slash' = 'video.slash',
|
|
2517
|
+
'video.slash.fill' = 'video.slash.fill',
|
|
2518
|
+
'view.2d' = 'view.2d',
|
|
2519
|
+
'view.3d' = 'view.3d',
|
|
2520
|
+
'viewfinder' = 'viewfinder',
|
|
2521
|
+
'viewfinder.circle' = 'viewfinder.circle',
|
|
2522
|
+
'viewfinder.circle.fill' = 'viewfinder.circle.fill',
|
|
2523
|
+
'w.circle' = 'w.circle',
|
|
2524
|
+
'w.circle.fill' = 'w.circle.fill',
|
|
2525
|
+
'w.square' = 'w.square',
|
|
2526
|
+
'w.square.fill' = 'w.square.fill',
|
|
2527
|
+
'wake' = 'wake',
|
|
2528
|
+
'wallet.pass' = 'wallet.pass',
|
|
2529
|
+
'wallet.pass.fill' = 'wallet.pass.fill',
|
|
2530
|
+
'wand.and.rays' = 'wand.and.rays',
|
|
2531
|
+
'wand.and.rays.inverse' = 'wand.and.rays.inverse',
|
|
2532
|
+
'wand.and.stars' = 'wand.and.stars',
|
|
2533
|
+
'wand.and.stars.inverse' = 'wand.and.stars.inverse',
|
|
2534
|
+
'wave.3.backward' = 'wave.3.backward',
|
|
2535
|
+
'wave.3.backward.circle' = 'wave.3.backward.circle',
|
|
2536
|
+
'wave.3.backward.circle.fill' = 'wave.3.backward.circle.fill',
|
|
2537
|
+
'wave.3.forward' = 'wave.3.forward',
|
|
2538
|
+
'wave.3.forward.circle' = 'wave.3.forward.circle',
|
|
2539
|
+
'wave.3.forward.circle.fill' = 'wave.3.forward.circle.fill',
|
|
2540
|
+
'wave.3.left' = 'wave.3.left',
|
|
2541
|
+
'wave.3.left.circle' = 'wave.3.left.circle',
|
|
2542
|
+
'wave.3.left.circle.fill' = 'wave.3.left.circle.fill',
|
|
2543
|
+
'wave.3.right' = 'wave.3.right',
|
|
2544
|
+
'wave.3.right.circle' = 'wave.3.right.circle',
|
|
2545
|
+
'wave.3.right.circle.fill' = 'wave.3.right.circle.fill',
|
|
2546
|
+
'waveform' = 'waveform',
|
|
2547
|
+
'waveform.circle' = 'waveform.circle',
|
|
2548
|
+
'waveform.circle.fill' = 'waveform.circle.fill',
|
|
2549
|
+
'waveform.path' = 'waveform.path',
|
|
2550
|
+
'waveform.path.badge.minus' = 'waveform.path.badge.minus',
|
|
2551
|
+
'waveform.path.badge.plus' = 'waveform.path.badge.plus',
|
|
2552
|
+
'waveform.path.ecg' = 'waveform.path.ecg',
|
|
2553
|
+
'waveform.path.ecg.rectangle' = 'waveform.path.ecg.rectangle',
|
|
2554
|
+
'waveform.path.ecg.rectangle.fill' = 'waveform.path.ecg.rectangle.fill',
|
|
2555
|
+
'wifi' = 'wifi',
|
|
2556
|
+
'wifi.exclamationmark' = 'wifi.exclamationmark',
|
|
2557
|
+
'wifi.slash' = 'wifi.slash',
|
|
2558
|
+
'wind' = 'wind',
|
|
2559
|
+
'wind.snow' = 'wind.snow',
|
|
2560
|
+
'wonsign.circle' = 'wonsign.circle',
|
|
2561
|
+
'wonsign.circle.fill' = 'wonsign.circle.fill',
|
|
2562
|
+
'wonsign.square' = 'wonsign.square',
|
|
2563
|
+
'wonsign.square.fill' = 'wonsign.square.fill',
|
|
2564
|
+
'wrench' = 'wrench',
|
|
2565
|
+
'wrench.and.screwdriver' = 'wrench.and.screwdriver',
|
|
2566
|
+
'wrench.and.screwdriver.fill' = 'wrench.and.screwdriver.fill',
|
|
2567
|
+
'wrench.fill' = 'wrench.fill',
|
|
2568
|
+
'x.circle' = 'x.circle',
|
|
2569
|
+
'x.circle.fill' = 'x.circle.fill',
|
|
2570
|
+
'x.square' = 'x.square',
|
|
2571
|
+
'x.square.fill' = 'x.square.fill',
|
|
2572
|
+
'x.squareroot' = 'x.squareroot',
|
|
2573
|
+
'xmark' = 'xmark',
|
|
2574
|
+
'xmark.bin' = 'xmark.bin',
|
|
2575
|
+
'xmark.bin.circle' = 'xmark.bin.circle',
|
|
2576
|
+
'xmark.bin.circle.fill' = 'xmark.bin.circle.fill',
|
|
2577
|
+
'xmark.bin.fill' = 'xmark.bin.fill',
|
|
2578
|
+
'xmark.circle' = 'xmark.circle',
|
|
2579
|
+
'xmark.circle.fill' = 'xmark.circle.fill',
|
|
2580
|
+
'xmark.diamond' = 'xmark.diamond',
|
|
2581
|
+
'xmark.diamond.fill' = 'xmark.diamond.fill',
|
|
2582
|
+
'xmark.icloud' = 'xmark.icloud',
|
|
2583
|
+
'xmark.icloud.fill' = 'xmark.icloud.fill',
|
|
2584
|
+
'xmark.octagon' = 'xmark.octagon',
|
|
2585
|
+
'xmark.octagon.fill' = 'xmark.octagon.fill',
|
|
2586
|
+
'xmark.rectangle' = 'xmark.rectangle',
|
|
2587
|
+
'xmark.rectangle.fill' = 'xmark.rectangle.fill',
|
|
2588
|
+
'xmark.rectangle.portrait' = 'xmark.rectangle.portrait',
|
|
2589
|
+
'xmark.rectangle.portrait.fill' = 'xmark.rectangle.portrait.fill',
|
|
2590
|
+
'xmark.seal' = 'xmark.seal',
|
|
2591
|
+
'xmark.seal.fill' = 'xmark.seal.fill',
|
|
2592
|
+
'xmark.shield' = 'xmark.shield',
|
|
2593
|
+
'xmark.shield.fill' = 'xmark.shield.fill',
|
|
2594
|
+
'xmark.square' = 'xmark.square',
|
|
2595
|
+
'xmark.square.fill' = 'xmark.square.fill',
|
|
2596
|
+
'xserve' = 'xserve',
|
|
2597
|
+
'y.circle' = 'y.circle',
|
|
2598
|
+
'y.circle.fill' = 'y.circle.fill',
|
|
2599
|
+
'y.square' = 'y.square',
|
|
2600
|
+
'y.square.fill' = 'y.square.fill',
|
|
2601
|
+
'yensign.circle' = 'yensign.circle',
|
|
2602
|
+
'yensign.circle.fill' = 'yensign.circle.fill',
|
|
2603
|
+
'yensign.square' = 'yensign.square',
|
|
2604
|
+
'yensign.square.fill' = 'yensign.square.fill',
|
|
2605
|
+
'z.circle' = 'z.circle',
|
|
2606
|
+
'z.circle.fill' = 'z.circle.fill',
|
|
2607
|
+
'z.square' = 'z.square',
|
|
2608
|
+
'z.square.fill' = 'z.square.fill',
|
|
2609
|
+
'zl.rectangle.roundedtop' = 'zl.rectangle.roundedtop',
|
|
2610
|
+
'zl.rectangle.roundedtop.fill' = 'zl.rectangle.roundedtop.fill',
|
|
2611
|
+
'zr.rectangle.roundedtop' = 'zr.rectangle.roundedtop',
|
|
2612
|
+
'zr.rectangle.roundedtop.fill' = 'zr.rectangle.roundedtop.fill',
|
|
2613
|
+
'zzz' = 'zzz',
|
|
2614
|
+
}
|