-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsharp.js
2812 lines (2812 loc) · 254 KB
/
sharp.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
export { default as google10kSharp } from './icons/google/10k/sharp.svg';
export { default as google10mpSharp } from './icons/google/10mp/sharp.svg';
export { default as google11mpSharp } from './icons/google/11mp/sharp.svg';
export { default as google123Sharp } from './icons/google/123/sharp.svg';
export { default as google123SharpThin } from './icons/google/123/sharp_thin.svg';
export { default as google12mpSharp } from './icons/google/12mp/sharp.svg';
export { default as google13mpSharp } from './icons/google/13mp/sharp.svg';
export { default as google14mpSharp } from './icons/google/14mp/sharp.svg';
export { default as google15mpSharp } from './icons/google/15mp/sharp.svg';
export { default as google16mpSharp } from './icons/google/16mp/sharp.svg';
export { default as google17mpSharp } from './icons/google/17mp/sharp.svg';
export { default as google18UpRatingSharp } from './icons/google/18_up_rating/sharp.svg';
export { default as google18UpRatingSharpThin } from './icons/google/18_up_rating/sharp_thin.svg';
export { default as google18mpSharp } from './icons/google/18mp/sharp.svg';
export { default as google19mpSharp } from './icons/google/19mp/sharp.svg';
export { default as google1kSharp } from './icons/google/1k/sharp.svg';
export { default as google1kPlusSharp } from './icons/google/1k_plus/sharp.svg';
export { default as google1xMobiledataSharp } from './icons/google/1x_mobiledata/sharp.svg';
export { default as google20mpSharp } from './icons/google/20mp/sharp.svg';
export { default as google21mpSharp } from './icons/google/21mp/sharp.svg';
export { default as google22mpSharp } from './icons/google/22mp/sharp.svg';
export { default as google23mpSharp } from './icons/google/23mp/sharp.svg';
export { default as google24mpSharp } from './icons/google/24mp/sharp.svg';
export { default as google2kSharp } from './icons/google/2k/sharp.svg';
export { default as google2kPlusSharp } from './icons/google/2k_plus/sharp.svg';
export { default as google2mpSharp } from './icons/google/2mp/sharp.svg';
export { default as google30fpsSharp } from './icons/google/30fps/sharp.svg';
export { default as google30fpsSelectSharp } from './icons/google/30fps_select/sharp.svg';
export { default as google360Sharp } from './icons/google/360/sharp.svg';
export { default as google3dRotationSharp } from './icons/google/3d_rotation/sharp.svg';
export { default as google3gMobiledataSharp } from './icons/google/3g_mobiledata/sharp.svg';
export { default as google3kSharp } from './icons/google/3k/sharp.svg';
export { default as google3kPlusSharp } from './icons/google/3k_plus/sharp.svg';
export { default as google3mpSharp } from './icons/google/3mp/sharp.svg';
export { default as google3pSharp } from './icons/google/3p/sharp.svg';
export { default as google4gMobiledataSharp } from './icons/google/4g_mobiledata/sharp.svg';
export { default as google4gPlusMobiledataSharp } from './icons/google/4g_plus_mobiledata/sharp.svg';
export { default as google4kSharp } from './icons/google/4k/sharp.svg';
export { default as google4kPlusSharp } from './icons/google/4k_plus/sharp.svg';
export { default as google4mpSharp } from './icons/google/4mp/sharp.svg';
export { default as google5gSharp } from './icons/google/5g/sharp.svg';
export { default as google5gSharpThin } from './icons/google/5g/sharp_thin.svg';
export { default as google5kSharp } from './icons/google/5k/sharp.svg';
export { default as google5kPlusSharp } from './icons/google/5k_plus/sharp.svg';
export { default as google5mpSharp } from './icons/google/5mp/sharp.svg';
export { default as google60fpsSharp } from './icons/google/60fps/sharp.svg';
export { default as google60fpsSelectSharp } from './icons/google/60fps_select/sharp.svg';
export { default as google6FtApartSharp } from './icons/google/6_ft_apart/sharp.svg';
export { default as google6kSharp } from './icons/google/6k/sharp.svg';
export { default as google6kPlusSharp } from './icons/google/6k_plus/sharp.svg';
export { default as google6mpSharp } from './icons/google/6mp/sharp.svg';
export { default as google7kSharp } from './icons/google/7k/sharp.svg';
export { default as google7kPlusSharp } from './icons/google/7k_plus/sharp.svg';
export { default as google7mpSharp } from './icons/google/7mp/sharp.svg';
export { default as google8kSharp } from './icons/google/8k/sharp.svg';
export { default as google8kPlusSharp } from './icons/google/8k_plus/sharp.svg';
export { default as google8mpSharp } from './icons/google/8mp/sharp.svg';
export { default as google9kSharp } from './icons/google/9k/sharp.svg';
export { default as google9kPlusSharp } from './icons/google/9k_plus/sharp.svg';
export { default as google9mpSharp } from './icons/google/9mp/sharp.svg';
export { default as googleAbcSharp } from './icons/google/abc/sharp.svg';
export { default as googleAbcSharpThin } from './icons/google/abc/sharp_thin.svg';
export { default as googleAcUnitSharp } from './icons/google/ac_unit/sharp.svg';
export { default as googleAccessAlarmSharp } from './icons/google/access_alarm/sharp.svg';
export { default as googleAccessAlarmsSharp } from './icons/google/access_alarms/sharp.svg';
export { default as googleAccessTimeSharp } from './icons/google/access_time/sharp.svg';
export { default as googleAccessTimeFilledSharp } from './icons/google/access_time_filled/sharp.svg';
export { default as googleAccessibilitySharp } from './icons/google/accessibility/sharp.svg';
export { default as googleAccessibilityNewSharp } from './icons/google/accessibility_new/sharp.svg';
export { default as googleAccessibleSharp } from './icons/google/accessible/sharp.svg';
export { default as googleAccessibleForwardSharp } from './icons/google/accessible_forward/sharp.svg';
export { default as googleAccountBalanceSharp } from './icons/google/account_balance/sharp.svg';
export { default as googleAccountBalanceWalletSharp } from './icons/google/account_balance_wallet/sharp.svg';
export { default as googleAccountBoxSharp } from './icons/google/account_box/sharp.svg';
export { default as googleAccountBoxSharpThin } from './icons/google/account_box/sharp_thin.svg';
export { default as googleAccountCircleSharp } from './icons/google/account_circle/sharp.svg';
export { default as googleAccountCircleSharpThin } from './icons/google/account_circle/sharp_thin.svg';
export { default as googleAccountTreeSharp } from './icons/google/account_tree/sharp.svg';
export { default as googleAdUnitsSharp } from './icons/google/ad_units/sharp.svg';
export { default as googleAdbSharp } from './icons/google/adb/sharp.svg';
export { default as googleAddSharp } from './icons/google/add/sharp.svg';
export { default as googleAddAPhotoSharp } from './icons/google/add_a_photo/sharp.svg';
export { default as googleAddAlarmSharp } from './icons/google/add_alarm/sharp.svg';
export { default as googleAddAlertSharp } from './icons/google/add_alert/sharp.svg';
export { default as googleAddBoxSharp } from './icons/google/add_box/sharp.svg';
export { default as googleAddBusinessSharp } from './icons/google/add_business/sharp.svg';
export { default as googleAddBusinessSharpThin } from './icons/google/add_business/sharp_thin.svg';
export { default as googleAddCardSharp } from './icons/google/add_card/sharp.svg';
export { default as googleAddCardSharpThin } from './icons/google/add_card/sharp_thin.svg';
export { default as googleAddChartSharp } from './icons/google/add_chart/sharp.svg';
export { default as googleAddCircleSharp } from './icons/google/add_circle/sharp.svg';
export { default as googleAddCircleOutlineSharp } from './icons/google/add_circle_outline/sharp.svg';
export { default as googleAddCommentSharp } from './icons/google/add_comment/sharp.svg';
export { default as googleAddHomeSharp } from './icons/google/add_home/sharp.svg';
export { default as googleAddHomeSharpThin } from './icons/google/add_home/sharp_thin.svg';
export { default as googleAddHomeWorkSharp } from './icons/google/add_home_work/sharp.svg';
export { default as googleAddHomeWorkSharpThin } from './icons/google/add_home_work/sharp_thin.svg';
export { default as googleAddIcCallSharp } from './icons/google/add_ic_call/sharp.svg';
export { default as googleAddLinkSharp } from './icons/google/add_link/sharp.svg';
export { default as googleAddLocationSharp } from './icons/google/add_location/sharp.svg';
export { default as googleAddLocationAltSharp } from './icons/google/add_location_alt/sharp.svg';
export { default as googleAddModeratorSharp } from './icons/google/add_moderator/sharp.svg';
export { default as googleAddPhotoAlternateSharp } from './icons/google/add_photo_alternate/sharp.svg';
export { default as googleAddReactionSharp } from './icons/google/add_reaction/sharp.svg';
export { default as googleAddRoadSharp } from './icons/google/add_road/sharp.svg';
export { default as googleAddRoadSharpThin } from './icons/google/add_road/sharp_thin.svg';
export { default as googleAddShoppingCartSharp } from './icons/google/add_shopping_cart/sharp.svg';
export { default as googleAddTaskSharp } from './icons/google/add_task/sharp.svg';
export { default as googleAddToDriveSharp } from './icons/google/add_to_drive/sharp.svg';
export { default as googleAddToDriveSharpThin } from './icons/google/add_to_drive/sharp_thin.svg';
export { default as googleAddToHomeScreenSharp } from './icons/google/add_to_home_screen/sharp.svg';
export { default as googleAddToPhotosSharp } from './icons/google/add_to_photos/sharp.svg';
export { default as googleAddToQueueSharp } from './icons/google/add_to_queue/sharp.svg';
export { default as googleAddchartSharp } from './icons/google/addchart/sharp.svg';
export { default as googleAdfScannerSharp } from './icons/google/adf_scanner/sharp.svg';
export { default as googleAdfScannerSharpThin } from './icons/google/adf_scanner/sharp_thin.svg';
export { default as googleAdjustSharp } from './icons/google/adjust/sharp.svg';
export { default as googleAdminPanelSettingsSharp } from './icons/google/admin_panel_settings/sharp.svg';
export { default as googleAdminPanelSettingsSharpThin } from './icons/google/admin_panel_settings/sharp_thin.svg';
export { default as googleAdsClickSharp } from './icons/google/ads_click/sharp.svg';
export { default as googleAdsClickSharpThin } from './icons/google/ads_click/sharp_thin.svg';
export { default as googleAgricultureSharp } from './icons/google/agriculture/sharp.svg';
export { default as googleAgricultureSharpThin } from './icons/google/agriculture/sharp_thin.svg';
export { default as googleAirSharp } from './icons/google/air/sharp.svg';
export { default as googleAirlineSeatFlatSharp } from './icons/google/airline_seat_flat/sharp.svg';
export { default as googleAirlineSeatFlatAngledSharp } from './icons/google/airline_seat_flat_angled/sharp.svg';
export { default as googleAirlineSeatIndividualSuiteSharp } from './icons/google/airline_seat_individual_suite/sharp.svg';
export { default as googleAirlineSeatLegroomExtraSharp } from './icons/google/airline_seat_legroom_extra/sharp.svg';
export { default as googleAirlineSeatLegroomNormalSharp } from './icons/google/airline_seat_legroom_normal/sharp.svg';
export { default as googleAirlineSeatLegroomReducedSharp } from './icons/google/airline_seat_legroom_reduced/sharp.svg';
export { default as googleAirlineSeatReclineExtraSharp } from './icons/google/airline_seat_recline_extra/sharp.svg';
export { default as googleAirlineSeatReclineNormalSharp } from './icons/google/airline_seat_recline_normal/sharp.svg';
export { default as googleAirlineStopsSharp } from './icons/google/airline_stops/sharp.svg';
export { default as googleAirlineStopsSharpThin } from './icons/google/airline_stops/sharp_thin.svg';
export { default as googleAirlinesSharp } from './icons/google/airlines/sharp.svg';
export { default as googleAirlinesSharpThin } from './icons/google/airlines/sharp_thin.svg';
export { default as googleAirplaneTicketSharp } from './icons/google/airplane_ticket/sharp.svg';
export { default as googleAirplanemodeActiveSharp } from './icons/google/airplanemode_active/sharp.svg';
export { default as googleAirplanemodeActiveSharpThin } from './icons/google/airplanemode_active/sharp_thin.svg';
export { default as googleAirplanemodeInactiveSharp } from './icons/google/airplanemode_inactive/sharp.svg';
export { default as googleAirplanemodeInactiveSharpThin } from './icons/google/airplanemode_inactive/sharp_thin.svg';
export { default as googleAirplaySharp } from './icons/google/airplay/sharp.svg';
export { default as googleAirportShuttleSharp } from './icons/google/airport_shuttle/sharp.svg';
export { default as googleAlarmSharp } from './icons/google/alarm/sharp.svg';
export { default as googleAlarmAddSharp } from './icons/google/alarm_add/sharp.svg';
export { default as googleAlarmOffSharp } from './icons/google/alarm_off/sharp.svg';
export { default as googleAlarmOnSharp } from './icons/google/alarm_on/sharp.svg';
export { default as googleAlbumSharp } from './icons/google/album/sharp.svg';
export { default as googleAlignHorizontalCenterSharp } from './icons/google/align_horizontal_center/sharp.svg';
export { default as googleAlignHorizontalLeftSharp } from './icons/google/align_horizontal_left/sharp.svg';
export { default as googleAlignHorizontalRightSharp } from './icons/google/align_horizontal_right/sharp.svg';
export { default as googleAlignVerticalBottomSharp } from './icons/google/align_vertical_bottom/sharp.svg';
export { default as googleAlignVerticalCenterSharp } from './icons/google/align_vertical_center/sharp.svg';
export { default as googleAlignVerticalTopSharp } from './icons/google/align_vertical_top/sharp.svg';
export { default as googleAllInboxSharp } from './icons/google/all_inbox/sharp.svg';
export { default as googleAllInclusiveSharp } from './icons/google/all_inclusive/sharp.svg';
export { default as googleAllOutSharp } from './icons/google/all_out/sharp.svg';
export { default as googleAltRouteSharp } from './icons/google/alt_route/sharp.svg';
export { default as googleAltRouteSharpThin } from './icons/google/alt_route/sharp_thin.svg';
export { default as googleAlternateEmailSharp } from './icons/google/alternate_email/sharp.svg';
export { default as googleAmpStoriesSharp } from './icons/google/amp_stories/sharp.svg';
export { default as googleAmpStoriesSharpThin } from './icons/google/amp_stories/sharp_thin.svg';
export { default as googleAnalyticsSharp } from './icons/google/analytics/sharp.svg';
export { default as googleAnchorSharp } from './icons/google/anchor/sharp.svg';
export { default as googleAndroidSharp } from './icons/google/android/sharp.svg';
export { default as googleAndroidSharpThin } from './icons/google/android/sharp_thin.svg';
export { default as googleAnimationSharp } from './icons/google/animation/sharp.svg';
export { default as googleAnnouncementSharp } from './icons/google/announcement/sharp.svg';
export { default as googleAodSharp } from './icons/google/aod/sharp.svg';
export { default as googleApartmentSharp } from './icons/google/apartment/sharp.svg';
export { default as googleApartmentSharpThin } from './icons/google/apartment/sharp_thin.svg';
export { default as googleApiSharp } from './icons/google/api/sharp.svg';
export { default as googleAppBlockingSharp } from './icons/google/app_blocking/sharp.svg';
export { default as googleAppRegistrationSharp } from './icons/google/app_registration/sharp.svg';
export { default as googleAppRegistrationSharpThin } from './icons/google/app_registration/sharp_thin.svg';
export { default as googleAppSettingsAltSharp } from './icons/google/app_settings_alt/sharp.svg';
export { default as googleAppShortcutSharp } from './icons/google/app_shortcut/sharp.svg';
export { default as googleAppShortcutSharpThin } from './icons/google/app_shortcut/sharp_thin.svg';
export { default as googleApprovalSharp } from './icons/google/approval/sharp.svg';
export { default as googleAppsSharp } from './icons/google/apps/sharp.svg';
export { default as googleAppsOutageSharp } from './icons/google/apps_outage/sharp.svg';
export { default as googleAppsOutageSharpThin } from './icons/google/apps_outage/sharp_thin.svg';
export { default as googleArchitectureSharp } from './icons/google/architecture/sharp.svg';
export { default as googleArchitectureSharpThin } from './icons/google/architecture/sharp_thin.svg';
export { default as googleArchiveSharp } from './icons/google/archive/sharp.svg';
export { default as googleAreaChartSharp } from './icons/google/area_chart/sharp.svg';
export { default as googleAreaChartSharpThin } from './icons/google/area_chart/sharp_thin.svg';
export { default as googleArrowBackSharp } from './icons/google/arrow_back/sharp.svg';
export { default as googleArrowBackIosSharp } from './icons/google/arrow_back_ios/sharp.svg';
export { default as googleArrowBackIosNewSharp } from './icons/google/arrow_back_ios_new/sharp.svg';
export { default as googleArrowBackIosNewSharpThin } from './icons/google/arrow_back_ios_new/sharp_thin.svg';
export { default as googleArrowCircleDownSharp } from './icons/google/arrow_circle_down/sharp.svg';
export { default as googleArrowCircleDownSharpThin } from './icons/google/arrow_circle_down/sharp_thin.svg';
export { default as googleArrowCircleLeftSharp } from './icons/google/arrow_circle_left/sharp.svg';
export { default as googleArrowCircleLeftSharpThin } from './icons/google/arrow_circle_left/sharp_thin.svg';
export { default as googleArrowCircleRightSharp } from './icons/google/arrow_circle_right/sharp.svg';
export { default as googleArrowCircleRightSharpThin } from './icons/google/arrow_circle_right/sharp_thin.svg';
export { default as googleArrowCircleUpSharp } from './icons/google/arrow_circle_up/sharp.svg';
export { default as googleArrowCircleUpSharpThin } from './icons/google/arrow_circle_up/sharp_thin.svg';
export { default as googleArrowDownwardSharp } from './icons/google/arrow_downward/sharp.svg';
export { default as googleArrowDropDownSharp } from './icons/google/arrow_drop_down/sharp.svg';
export { default as googleArrowDropDownCircleSharp } from './icons/google/arrow_drop_down_circle/sharp.svg';
export { default as googleArrowDropUpSharp } from './icons/google/arrow_drop_up/sharp.svg';
export { default as googleArrowForwardSharp } from './icons/google/arrow_forward/sharp.svg';
export { default as googleArrowForwardIosSharp } from './icons/google/arrow_forward_ios/sharp.svg';
export { default as googleArrowForwardIosSharpThin } from './icons/google/arrow_forward_ios/sharp_thin.svg';
export { default as googleArrowLeftSharp } from './icons/google/arrow_left/sharp.svg';
export { default as googleArrowOutwardSharp } from './icons/google/arrow_outward/sharp.svg';
export { default as googleArrowOutwardSharpThin } from './icons/google/arrow_outward/sharp_thin.svg';
export { default as googleArrowRightSharp } from './icons/google/arrow_right/sharp.svg';
export { default as googleArrowRightAltSharp } from './icons/google/arrow_right_alt/sharp.svg';
export { default as googleArrowUpwardSharp } from './icons/google/arrow_upward/sharp.svg';
export { default as googleArtTrackSharp } from './icons/google/art_track/sharp.svg';
export { default as googleArticleSharp } from './icons/google/article/sharp.svg';
export { default as googleAspectRatioSharp } from './icons/google/aspect_ratio/sharp.svg';
export { default as googleAssessmentSharp } from './icons/google/assessment/sharp.svg';
export { default as googleAssignmentSharp } from './icons/google/assignment/sharp.svg';
export { default as googleAssignmentIndSharp } from './icons/google/assignment_ind/sharp.svg';
export { default as googleAssignmentLateSharp } from './icons/google/assignment_late/sharp.svg';
export { default as googleAssignmentReturnSharp } from './icons/google/assignment_return/sharp.svg';
export { default as googleAssignmentReturnedSharp } from './icons/google/assignment_returned/sharp.svg';
export { default as googleAssignmentTurnedInSharp } from './icons/google/assignment_turned_in/sharp.svg';
export { default as googleAssistWalkerSharp } from './icons/google/assist_walker/sharp.svg';
export { default as googleAssistWalkerSharpThin } from './icons/google/assist_walker/sharp_thin.svg';
export { default as googleAssistantSharp } from './icons/google/assistant/sharp.svg';
export { default as googleAssistantDirectionSharp } from './icons/google/assistant_direction/sharp.svg';
export { default as googleAssistantPhotoSharp } from './icons/google/assistant_photo/sharp.svg';
export { default as googleAssuredWorkloadSharp } from './icons/google/assured_workload/sharp.svg';
export { default as googleAssuredWorkloadSharpThin } from './icons/google/assured_workload/sharp_thin.svg';
export { default as googleAtmSharp } from './icons/google/atm/sharp.svg';
export { default as googleAttachEmailSharp } from './icons/google/attach_email/sharp.svg';
export { default as googleAttachEmailSharpThin } from './icons/google/attach_email/sharp_thin.svg';
export { default as googleAttachFileSharp } from './icons/google/attach_file/sharp.svg';
export { default as googleAttachMoneySharp } from './icons/google/attach_money/sharp.svg';
export { default as googleAttachmentSharp } from './icons/google/attachment/sharp.svg';
export { default as googleAttractionsSharp } from './icons/google/attractions/sharp.svg';
export { default as googleAttractionsSharpThin } from './icons/google/attractions/sharp_thin.svg';
export { default as googleAttributionSharp } from './icons/google/attribution/sharp.svg';
export { default as googleAudioFileSharp } from './icons/google/audio_file/sharp.svg';
export { default as googleAudioFileSharpThin } from './icons/google/audio_file/sharp_thin.svg';
export { default as googleAudiotrackSharp } from './icons/google/audiotrack/sharp.svg';
export { default as googleAutoAwesomeSharp } from './icons/google/auto_awesome/sharp.svg';
export { default as googleAutoAwesomeMosaicSharp } from './icons/google/auto_awesome_mosaic/sharp.svg';
export { default as googleAutoAwesomeMotionSharp } from './icons/google/auto_awesome_motion/sharp.svg';
export { default as googleAutoDeleteSharp } from './icons/google/auto_delete/sharp.svg';
export { default as googleAutoDeleteSharpThin } from './icons/google/auto_delete/sharp_thin.svg';
export { default as googleAutoFixHighSharp } from './icons/google/auto_fix_high/sharp.svg';
export { default as googleAutoFixNormalSharp } from './icons/google/auto_fix_normal/sharp.svg';
export { default as googleAutoFixOffSharp } from './icons/google/auto_fix_off/sharp.svg';
export { default as googleAutoGraphSharp } from './icons/google/auto_graph/sharp.svg';
export { default as googleAutoGraphSharpThin } from './icons/google/auto_graph/sharp_thin.svg';
export { default as googleAutoModeSharp } from './icons/google/auto_mode/sharp.svg';
export { default as googleAutoModeSharpThin } from './icons/google/auto_mode/sharp_thin.svg';
export { default as googleAutoStoriesSharp } from './icons/google/auto_stories/sharp.svg';
export { default as googleAutofpsSelectSharp } from './icons/google/autofps_select/sharp.svg';
export { default as googleAutorenewSharp } from './icons/google/autorenew/sharp.svg';
export { default as googleAvTimerSharp } from './icons/google/av_timer/sharp.svg';
export { default as googleBabyChangingStationSharp } from './icons/google/baby_changing_station/sharp.svg';
export { default as googleBackHandSharp } from './icons/google/back_hand/sharp.svg';
export { default as googleBackHandSharpThin } from './icons/google/back_hand/sharp_thin.svg';
export { default as googleBackpackSharp } from './icons/google/backpack/sharp.svg';
export { default as googleBackspaceSharp } from './icons/google/backspace/sharp.svg';
export { default as googleBackupSharp } from './icons/google/backup/sharp.svg';
export { default as googleBackupTableSharp } from './icons/google/backup_table/sharp.svg';
export { default as googleBackupTableSharpThin } from './icons/google/backup_table/sharp_thin.svg';
export { default as googleBadgeSharp } from './icons/google/badge/sharp.svg';
export { default as googleBadgeSharpThin } from './icons/google/badge/sharp_thin.svg';
export { default as googleBakeryDiningSharp } from './icons/google/bakery_dining/sharp.svg';
export { default as googleBakeryDiningSharpThin } from './icons/google/bakery_dining/sharp_thin.svg';
export { default as googleBalanceSharp } from './icons/google/balance/sharp.svg';
export { default as googleBalanceSharpThin } from './icons/google/balance/sharp_thin.svg';
export { default as googleBalconySharp } from './icons/google/balcony/sharp.svg';
export { default as googleBalconySharpThin } from './icons/google/balcony/sharp_thin.svg';
export { default as googleBallotSharp } from './icons/google/ballot/sharp.svg';
export { default as googleBarChartSharp } from './icons/google/bar_chart/sharp.svg';
export { default as googleBarChartSharpThin } from './icons/google/bar_chart/sharp_thin.svg';
export { default as googleBatchPredictionSharp } from './icons/google/batch_prediction/sharp.svg';
export { default as googleBatchPredictionSharpThin } from './icons/google/batch_prediction/sharp_thin.svg';
export { default as googleBathroomSharp } from './icons/google/bathroom/sharp.svg';
export { default as googleBathtubSharp } from './icons/google/bathtub/sharp.svg';
export { default as googleBathtubSharpThin } from './icons/google/bathtub/sharp_thin.svg';
export { default as googleBattery0BarSharp } from './icons/google/battery_0_bar/sharp.svg';
export { default as googleBattery0BarSharpThin } from './icons/google/battery_0_bar/sharp_thin.svg';
export { default as googleBattery1BarSharp } from './icons/google/battery_1_bar/sharp.svg';
export { default as googleBattery1BarSharpThin } from './icons/google/battery_1_bar/sharp_thin.svg';
export { default as googleBattery2BarSharp } from './icons/google/battery_2_bar/sharp.svg';
export { default as googleBattery2BarSharpThin } from './icons/google/battery_2_bar/sharp_thin.svg';
export { default as googleBattery3BarSharp } from './icons/google/battery_3_bar/sharp.svg';
export { default as googleBattery3BarSharpThin } from './icons/google/battery_3_bar/sharp_thin.svg';
export { default as googleBattery4BarSharp } from './icons/google/battery_4_bar/sharp.svg';
export { default as googleBattery4BarSharpThin } from './icons/google/battery_4_bar/sharp_thin.svg';
export { default as googleBattery5BarSharp } from './icons/google/battery_5_bar/sharp.svg';
export { default as googleBattery5BarSharpThin } from './icons/google/battery_5_bar/sharp_thin.svg';
export { default as googleBattery6BarSharp } from './icons/google/battery_6_bar/sharp.svg';
export { default as googleBattery6BarSharpThin } from './icons/google/battery_6_bar/sharp_thin.svg';
export { default as googleBatteryAlertSharp } from './icons/google/battery_alert/sharp.svg';
export { default as googleBatteryChargingFullSharp } from './icons/google/battery_charging_full/sharp.svg';
export { default as googleBatteryFullSharp } from './icons/google/battery_full/sharp.svg';
export { default as googleBatterySaverSharp } from './icons/google/battery_saver/sharp.svg';
export { default as googleBatteryStdSharp } from './icons/google/battery_std/sharp.svg';
export { default as googleBatteryUnknownSharp } from './icons/google/battery_unknown/sharp.svg';
export { default as googleBeachAccessSharp } from './icons/google/beach_access/sharp.svg';
export { default as googleBedSharp } from './icons/google/bed/sharp.svg';
export { default as googleBedroomBabySharp } from './icons/google/bedroom_baby/sharp.svg';
export { default as googleBedroomChildSharp } from './icons/google/bedroom_child/sharp.svg';
export { default as googleBedroomParentSharp } from './icons/google/bedroom_parent/sharp.svg';
export { default as googleBedtimeSharp } from './icons/google/bedtime/sharp.svg';
export { default as googleBedtimeSharpThin } from './icons/google/bedtime/sharp_thin.svg';
export { default as googleBedtimeOffSharp } from './icons/google/bedtime_off/sharp.svg';
export { default as googleBedtimeOffSharpThin } from './icons/google/bedtime_off/sharp_thin.svg';
export { default as googleBeenhereSharp } from './icons/google/beenhere/sharp.svg';
export { default as googleBentoSharp } from './icons/google/bento/sharp.svg';
export { default as googleBikeScooterSharp } from './icons/google/bike_scooter/sharp.svg';
export { default as googleBikeScooterSharpThin } from './icons/google/bike_scooter/sharp_thin.svg';
export { default as googleBiotechSharp } from './icons/google/biotech/sharp.svg';
export { default as googleBiotechSharpThin } from './icons/google/biotech/sharp_thin.svg';
export { default as googleBlenderSharp } from './icons/google/blender/sharp.svg';
export { default as googleBlindSharp } from './icons/google/blind/sharp.svg';
export { default as googleBlindSharpThin } from './icons/google/blind/sharp_thin.svg';
export { default as googleBlindsSharp } from './icons/google/blinds/sharp.svg';
export { default as googleBlindsSharpThin } from './icons/google/blinds/sharp_thin.svg';
export { default as googleBlindsClosedSharp } from './icons/google/blinds_closed/sharp.svg';
export { default as googleBlindsClosedSharpThin } from './icons/google/blinds_closed/sharp_thin.svg';
export { default as googleBlockSharp } from './icons/google/block/sharp.svg';
export { default as googleBloodtypeSharp } from './icons/google/bloodtype/sharp.svg';
export { default as googleBluetoothSharp } from './icons/google/bluetooth/sharp.svg';
export { default as googleBluetoothAudioSharp } from './icons/google/bluetooth_audio/sharp.svg';
export { default as googleBluetoothConnectedSharp } from './icons/google/bluetooth_connected/sharp.svg';
export { default as googleBluetoothDisabledSharp } from './icons/google/bluetooth_disabled/sharp.svg';
export { default as googleBluetoothDriveSharp } from './icons/google/bluetooth_drive/sharp.svg';
export { default as googleBluetoothSearchingSharp } from './icons/google/bluetooth_searching/sharp.svg';
export { default as googleBlurCircularSharp } from './icons/google/blur_circular/sharp.svg';
export { default as googleBlurLinearSharp } from './icons/google/blur_linear/sharp.svg';
export { default as googleBlurOffSharp } from './icons/google/blur_off/sharp.svg';
export { default as googleBlurOnSharp } from './icons/google/blur_on/sharp.svg';
export { default as googleBoltSharp } from './icons/google/bolt/sharp.svg';
export { default as googleBookSharp } from './icons/google/book/sharp.svg';
export { default as googleBookOnlineSharp } from './icons/google/book_online/sharp.svg';
export { default as googleBookmarkSharp } from './icons/google/bookmark/sharp.svg';
export { default as googleBookmarkAddSharp } from './icons/google/bookmark_add/sharp.svg';
export { default as googleBookmarkAddSharpThin } from './icons/google/bookmark_add/sharp_thin.svg';
export { default as googleBookmarkAddedSharp } from './icons/google/bookmark_added/sharp.svg';
export { default as googleBookmarkBorderSharp } from './icons/google/bookmark_border/sharp.svg';
export { default as googleBookmarkRemoveSharp } from './icons/google/bookmark_remove/sharp.svg';
export { default as googleBookmarkRemoveSharpThin } from './icons/google/bookmark_remove/sharp_thin.svg';
export { default as googleBookmarksSharp } from './icons/google/bookmarks/sharp.svg';
export { default as googleBorderAllSharp } from './icons/google/border_all/sharp.svg';
export { default as googleBorderBottomSharp } from './icons/google/border_bottom/sharp.svg';
export { default as googleBorderClearSharp } from './icons/google/border_clear/sharp.svg';
export { default as googleBorderColorSharp } from './icons/google/border_color/sharp.svg';
export { default as googleBorderHorizontalSharp } from './icons/google/border_horizontal/sharp.svg';
export { default as googleBorderInnerSharp } from './icons/google/border_inner/sharp.svg';
export { default as googleBorderLeftSharp } from './icons/google/border_left/sharp.svg';
export { default as googleBorderOuterSharp } from './icons/google/border_outer/sharp.svg';
export { default as googleBorderRightSharp } from './icons/google/border_right/sharp.svg';
export { default as googleBorderStyleSharp } from './icons/google/border_style/sharp.svg';
export { default as googleBorderTopSharp } from './icons/google/border_top/sharp.svg';
export { default as googleBorderVerticalSharp } from './icons/google/border_vertical/sharp.svg';
export { default as googleBoySharp } from './icons/google/boy/sharp.svg';
export { default as googleBoySharpThin } from './icons/google/boy/sharp_thin.svg';
export { default as googleBrandingWatermarkSharp } from './icons/google/branding_watermark/sharp.svg';
export { default as googleBreakfastDiningSharp } from './icons/google/breakfast_dining/sharp.svg';
export { default as googleBreakfastDiningSharpThin } from './icons/google/breakfast_dining/sharp_thin.svg';
export { default as googleBrightness1Sharp } from './icons/google/brightness_1/sharp.svg';
export { default as googleBrightness2Sharp } from './icons/google/brightness_2/sharp.svg';
export { default as googleBrightness3Sharp } from './icons/google/brightness_3/sharp.svg';
export { default as googleBrightness4Sharp } from './icons/google/brightness_4/sharp.svg';
export { default as googleBrightness5Sharp } from './icons/google/brightness_5/sharp.svg';
export { default as googleBrightness6Sharp } from './icons/google/brightness_6/sharp.svg';
export { default as googleBrightness7Sharp } from './icons/google/brightness_7/sharp.svg';
export { default as googleBrightnessAutoSharp } from './icons/google/brightness_auto/sharp.svg';
export { default as googleBrightnessHighSharp } from './icons/google/brightness_high/sharp.svg';
export { default as googleBrightnessLowSharp } from './icons/google/brightness_low/sharp.svg';
export { default as googleBrightnessMediumSharp } from './icons/google/brightness_medium/sharp.svg';
export { default as googleBroadcastOnHomeSharp } from './icons/google/broadcast_on_home/sharp.svg';
export { default as googleBroadcastOnHomeSharpThin } from './icons/google/broadcast_on_home/sharp_thin.svg';
export { default as googleBroadcastOnPersonalSharp } from './icons/google/broadcast_on_personal/sharp.svg';
export { default as googleBroadcastOnPersonalSharpThin } from './icons/google/broadcast_on_personal/sharp_thin.svg';
export { default as googleBrokenImageSharp } from './icons/google/broken_image/sharp.svg';
export { default as googleBrowseGallerySharp } from './icons/google/browse_gallery/sharp.svg';
export { default as googleBrowseGallerySharpThin } from './icons/google/browse_gallery/sharp_thin.svg';
export { default as googleBrowserNotSupportedSharp } from './icons/google/browser_not_supported/sharp.svg';
export { default as googleBrowserNotSupportedSharpThin } from './icons/google/browser_not_supported/sharp_thin.svg';
export { default as googleBrowserUpdatedSharp } from './icons/google/browser_updated/sharp.svg';
export { default as googleBrowserUpdatedSharpThin } from './icons/google/browser_updated/sharp_thin.svg';
export { default as googleBrunchDiningSharp } from './icons/google/brunch_dining/sharp.svg';
export { default as googleBrunchDiningSharpThin } from './icons/google/brunch_dining/sharp_thin.svg';
export { default as googleBrushSharp } from './icons/google/brush/sharp.svg';
export { default as googleBubbleChartSharp } from './icons/google/bubble_chart/sharp.svg';
export { default as googleBugReportSharp } from './icons/google/bug_report/sharp.svg';
export { default as googleBuildSharp } from './icons/google/build/sharp.svg';
export { default as googleBuildCircleSharp } from './icons/google/build_circle/sharp.svg';
export { default as googleBuildCircleSharpThin } from './icons/google/build_circle/sharp_thin.svg';
export { default as googleBungalowSharp } from './icons/google/bungalow/sharp.svg';
export { default as googleBungalowSharpThin } from './icons/google/bungalow/sharp_thin.svg';
export { default as googleBurstModeSharp } from './icons/google/burst_mode/sharp.svg';
export { default as googleBusAlertSharp } from './icons/google/bus_alert/sharp.svg';
export { default as googleBusinessSharp } from './icons/google/business/sharp.svg';
export { default as googleBusinessCenterSharp } from './icons/google/business_center/sharp.svg';
export { default as googleCabinSharp } from './icons/google/cabin/sharp.svg';
export { default as googleCabinSharpThin } from './icons/google/cabin/sharp_thin.svg';
export { default as googleCableSharp } from './icons/google/cable/sharp.svg';
export { default as googleCachedSharp } from './icons/google/cached/sharp.svg';
export { default as googleCakeSharp } from './icons/google/cake/sharp.svg';
export { default as googleCalculateSharp } from './icons/google/calculate/sharp.svg';
export { default as googleCalculateSharpThin } from './icons/google/calculate/sharp_thin.svg';
export { default as googleCalendarMonthSharp } from './icons/google/calendar_month/sharp.svg';
export { default as googleCalendarMonthSharpThin } from './icons/google/calendar_month/sharp_thin.svg';
export { default as googleCalendarTodaySharp } from './icons/google/calendar_today/sharp.svg';
export { default as googleCalendarViewDaySharp } from './icons/google/calendar_view_day/sharp.svg';
export { default as googleCalendarViewMonthSharp } from './icons/google/calendar_view_month/sharp.svg';
export { default as googleCalendarViewWeekSharp } from './icons/google/calendar_view_week/sharp.svg';
export { default as googleCallSharp } from './icons/google/call/sharp.svg';
export { default as googleCallEndSharp } from './icons/google/call_end/sharp.svg';
export { default as googleCallMadeSharp } from './icons/google/call_made/sharp.svg';
export { default as googleCallMergeSharp } from './icons/google/call_merge/sharp.svg';
export { default as googleCallMissedSharp } from './icons/google/call_missed/sharp.svg';
export { default as googleCallMissedOutgoingSharp } from './icons/google/call_missed_outgoing/sharp.svg';
export { default as googleCallReceivedSharp } from './icons/google/call_received/sharp.svg';
export { default as googleCallSplitSharp } from './icons/google/call_split/sharp.svg';
export { default as googleCallToActionSharp } from './icons/google/call_to_action/sharp.svg';
export { default as googleCameraSharp } from './icons/google/camera/sharp.svg';
export { default as googleCameraAltSharp } from './icons/google/camera_alt/sharp.svg';
export { default as googleCameraEnhanceSharp } from './icons/google/camera_enhance/sharp.svg';
export { default as googleCameraFrontSharp } from './icons/google/camera_front/sharp.svg';
export { default as googleCameraIndoorSharp } from './icons/google/camera_indoor/sharp.svg';
export { default as googleCameraOutdoorSharp } from './icons/google/camera_outdoor/sharp.svg';
export { default as googleCameraRearSharp } from './icons/google/camera_rear/sharp.svg';
export { default as googleCameraRollSharp } from './icons/google/camera_roll/sharp.svg';
export { default as googleCameraswitchSharp } from './icons/google/cameraswitch/sharp.svg';
export { default as googleCampaignSharp } from './icons/google/campaign/sharp.svg';
export { default as googleCancelSharp } from './icons/google/cancel/sharp.svg';
export { default as googleCancelPresentationSharp } from './icons/google/cancel_presentation/sharp.svg';
export { default as googleCancelScheduleSendSharp } from './icons/google/cancel_schedule_send/sharp.svg';
export { default as googleCancelScheduleSendSharpThin } from './icons/google/cancel_schedule_send/sharp_thin.svg';
export { default as googleCandlestickChartSharp } from './icons/google/candlestick_chart/sharp.svg';
export { default as googleCandlestickChartSharpThin } from './icons/google/candlestick_chart/sharp_thin.svg';
export { default as googleCarCrashSharp } from './icons/google/car_crash/sharp.svg';
export { default as googleCarCrashSharpThin } from './icons/google/car_crash/sharp_thin.svg';
export { default as googleCarRentalSharp } from './icons/google/car_rental/sharp.svg';
export { default as googleCarRentalSharpThin } from './icons/google/car_rental/sharp_thin.svg';
export { default as googleCarRepairSharp } from './icons/google/car_repair/sharp.svg';
export { default as googleCarRepairSharpThin } from './icons/google/car_repair/sharp_thin.svg';
export { default as googleCardGiftcardSharp } from './icons/google/card_giftcard/sharp.svg';
export { default as googleCardMembershipSharp } from './icons/google/card_membership/sharp.svg';
export { default as googleCardTravelSharp } from './icons/google/card_travel/sharp.svg';
export { default as googleCarpenterSharp } from './icons/google/carpenter/sharp.svg';
export { default as googleCasesSharp } from './icons/google/cases/sharp.svg';
export { default as googleCasinoSharp } from './icons/google/casino/sharp.svg';
export { default as googleCastSharp } from './icons/google/cast/sharp.svg';
export { default as googleCastConnectedSharp } from './icons/google/cast_connected/sharp.svg';
export { default as googleCastForEducationSharp } from './icons/google/cast_for_education/sharp.svg';
export { default as googleCastleSharp } from './icons/google/castle/sharp.svg';
export { default as googleCastleSharpThin } from './icons/google/castle/sharp_thin.svg';
export { default as googleCatchingPokemonSharp } from './icons/google/catching_pokemon/sharp.svg';
export { default as googleCatchingPokemonSharpThin } from './icons/google/catching_pokemon/sharp_thin.svg';
export { default as googleCategorySharp } from './icons/google/category/sharp.svg';
export { default as googleCelebrationSharp } from './icons/google/celebration/sharp.svg';
export { default as googleCelebrationSharpThin } from './icons/google/celebration/sharp_thin.svg';
export { default as googleCellTowerSharp } from './icons/google/cell_tower/sharp.svg';
export { default as googleCellTowerSharpThin } from './icons/google/cell_tower/sharp_thin.svg';
export { default as googleCellWifiSharp } from './icons/google/cell_wifi/sharp.svg';
export { default as googleCenterFocusStrongSharp } from './icons/google/center_focus_strong/sharp.svg';
export { default as googleCenterFocusWeakSharp } from './icons/google/center_focus_weak/sharp.svg';
export { default as googleChairSharp } from './icons/google/chair/sharp.svg';
export { default as googleChairAltSharp } from './icons/google/chair_alt/sharp.svg';
export { default as googleChaletSharp } from './icons/google/chalet/sharp.svg';
export { default as googleChaletSharpThin } from './icons/google/chalet/sharp_thin.svg';
export { default as googleChangeCircleSharp } from './icons/google/change_circle/sharp.svg';
export { default as googleChangeCircleSharpThin } from './icons/google/change_circle/sharp_thin.svg';
export { default as googleChangeHistorySharp } from './icons/google/change_history/sharp.svg';
export { default as googleChargingStationSharp } from './icons/google/charging_station/sharp.svg';
export { default as googleChatSharp } from './icons/google/chat/sharp.svg';
export { default as googleChatBubbleSharp } from './icons/google/chat_bubble/sharp.svg';
export { default as googleChatBubbleOutlineSharp } from './icons/google/chat_bubble_outline/sharp.svg';
export { default as googleCheckSharp } from './icons/google/check/sharp.svg';
export { default as googleCheckBoxSharp } from './icons/google/check_box/sharp.svg';
export { default as googleCheckBoxOutlineBlankSharp } from './icons/google/check_box_outline_blank/sharp.svg';
export { default as googleCheckCircleSharp } from './icons/google/check_circle/sharp.svg';
export { default as googleCheckCircleOutlineSharp } from './icons/google/check_circle_outline/sharp.svg';
export { default as googleChecklistSharp } from './icons/google/checklist/sharp.svg';
export { default as googleChecklistSharpThin } from './icons/google/checklist/sharp_thin.svg';
export { default as googleChecklistRtlSharp } from './icons/google/checklist_rtl/sharp.svg';
export { default as googleChecklistRtlSharpThin } from './icons/google/checklist_rtl/sharp_thin.svg';
export { default as googleCheckroomSharp } from './icons/google/checkroom/sharp.svg';
export { default as googleChevronLeftSharp } from './icons/google/chevron_left/sharp.svg';
export { default as googleChevronRightSharp } from './icons/google/chevron_right/sharp.svg';
export { default as googleChildCareSharp } from './icons/google/child_care/sharp.svg';
export { default as googleChildFriendlySharp } from './icons/google/child_friendly/sharp.svg';
export { default as googleChromeReaderModeSharp } from './icons/google/chrome_reader_mode/sharp.svg';
export { default as googleChurchSharp } from './icons/google/church/sharp.svg';
export { default as googleChurchSharpThin } from './icons/google/church/sharp_thin.svg';
export { default as googleCircleSharp } from './icons/google/circle/sharp.svg';
export { default as googleCircleNotificationsSharp } from './icons/google/circle_notifications/sharp.svg';
export { default as googleClassSharp } from './icons/google/class/sharp.svg';
export { default as googleCleanHandsSharp } from './icons/google/clean_hands/sharp.svg';
export { default as googleCleaningServicesSharp } from './icons/google/cleaning_services/sharp.svg';
export { default as googleCleaningServicesSharpThin } from './icons/google/cleaning_services/sharp_thin.svg';
export { default as googleClearSharp } from './icons/google/clear/sharp.svg';
export { default as googleClearAllSharp } from './icons/google/clear_all/sharp.svg';
export { default as googleCloseSharp } from './icons/google/close/sharp.svg';
export { default as googleCloseFullscreenSharp } from './icons/google/close_fullscreen/sharp.svg';
export { default as googleClosedCaptionSharp } from './icons/google/closed_caption/sharp.svg';
export { default as googleClosedCaptionDisabledSharp } from './icons/google/closed_caption_disabled/sharp.svg';
export { default as googleClosedCaptionOffSharp } from './icons/google/closed_caption_off/sharp.svg';
export { default as googleCloudSharp } from './icons/google/cloud/sharp.svg';
export { default as googleCloudCircleSharp } from './icons/google/cloud_circle/sharp.svg';
export { default as googleCloudDoneSharp } from './icons/google/cloud_done/sharp.svg';
export { default as googleCloudDownloadSharp } from './icons/google/cloud_download/sharp.svg';
export { default as googleCloudOffSharp } from './icons/google/cloud_off/sharp.svg';
export { default as googleCloudQueueSharp } from './icons/google/cloud_queue/sharp.svg';
export { default as googleCloudSyncSharp } from './icons/google/cloud_sync/sharp.svg';
export { default as googleCloudSyncSharpThin } from './icons/google/cloud_sync/sharp_thin.svg';
export { default as googleCloudUploadSharp } from './icons/google/cloud_upload/sharp.svg';
export { default as googleCo2Sharp } from './icons/google/co2/sharp.svg';
export { default as googleCo2SharpThin } from './icons/google/co2/sharp_thin.svg';
export { default as googleCoPresentSharp } from './icons/google/co_present/sharp.svg';
export { default as googleCoPresentSharpThin } from './icons/google/co_present/sharp_thin.svg';
export { default as googleCodeSharp } from './icons/google/code/sharp.svg';
export { default as googleCodeOffSharp } from './icons/google/code_off/sharp.svg';
export { default as googleCodeOffSharpThin } from './icons/google/code_off/sharp_thin.svg';
export { default as googleCoffeeSharp } from './icons/google/coffee/sharp.svg';
export { default as googleCoffeeMakerSharp } from './icons/google/coffee_maker/sharp.svg';
export { default as googleCollectionsSharp } from './icons/google/collections/sharp.svg';
export { default as googleCollectionsBookmarkSharp } from './icons/google/collections_bookmark/sharp.svg';
export { default as googleColorLensSharp } from './icons/google/color_lens/sharp.svg';
export { default as googleColorizeSharp } from './icons/google/colorize/sharp.svg';
export { default as googleCommentSharp } from './icons/google/comment/sharp.svg';
export { default as googleCommentBankSharp } from './icons/google/comment_bank/sharp.svg';
export { default as googleCommentBankSharpThin } from './icons/google/comment_bank/sharp_thin.svg';
export { default as googleCommentsDisabledSharp } from './icons/google/comments_disabled/sharp.svg';
export { default as googleCommentsDisabledSharpThin } from './icons/google/comments_disabled/sharp_thin.svg';
export { default as googleCommitSharp } from './icons/google/commit/sharp.svg';
export { default as googleCommitSharpThin } from './icons/google/commit/sharp_thin.svg';
export { default as googleCommuteSharp } from './icons/google/commute/sharp.svg';
export { default as googleCompareSharp } from './icons/google/compare/sharp.svg';
export { default as googleCompareArrowsSharp } from './icons/google/compare_arrows/sharp.svg';
export { default as googleCompassCalibrationSharp } from './icons/google/compass_calibration/sharp.svg';
export { default as googleCompostSharp } from './icons/google/compost/sharp.svg';
export { default as googleCompostSharpThin } from './icons/google/compost/sharp_thin.svg';
export { default as googleCompressSharp } from './icons/google/compress/sharp.svg';
export { default as googleComputerSharp } from './icons/google/computer/sharp.svg';
export { default as googleConfirmationNumberSharp } from './icons/google/confirmation_number/sharp.svg';
export { default as googleConnectWithoutContactSharp } from './icons/google/connect_without_contact/sharp.svg';
export { default as googleConnectedTvSharp } from './icons/google/connected_tv/sharp.svg';
export { default as googleConnectingAirportsSharp } from './icons/google/connecting_airports/sharp.svg';
export { default as googleConnectingAirportsSharpThin } from './icons/google/connecting_airports/sharp_thin.svg';
export { default as googleConstructionSharp } from './icons/google/construction/sharp.svg';
export { default as googleConstructionSharpThin } from './icons/google/construction/sharp_thin.svg';
export { default as googleContactEmergencySharp } from './icons/google/contact_emergency/sharp.svg';
export { default as googleContactEmergencySharpThin } from './icons/google/contact_emergency/sharp_thin.svg';
export { default as googleContactMailSharp } from './icons/google/contact_mail/sharp.svg';
export { default as googleContactPageSharp } from './icons/google/contact_page/sharp.svg';
export { default as googleContactPhoneSharp } from './icons/google/contact_phone/sharp.svg';
export { default as googleContactSupportSharp } from './icons/google/contact_support/sharp.svg';
export { default as googleContactlessSharp } from './icons/google/contactless/sharp.svg';
export { default as googleContactlessSharpThin } from './icons/google/contactless/sharp_thin.svg';
export { default as googleContactsSharp } from './icons/google/contacts/sharp.svg';
export { default as googleContentCopySharp } from './icons/google/content_copy/sharp.svg';
export { default as googleContentCutSharp } from './icons/google/content_cut/sharp.svg';
export { default as googleContentPasteSharp } from './icons/google/content_paste/sharp.svg';
export { default as googleContentPasteGoSharp } from './icons/google/content_paste_go/sharp.svg';
export { default as googleContentPasteGoSharpThin } from './icons/google/content_paste_go/sharp_thin.svg';
export { default as googleContentPasteOffSharp } from './icons/google/content_paste_off/sharp.svg';
export { default as googleContentPasteOffSharpThin } from './icons/google/content_paste_off/sharp_thin.svg';
export { default as googleContentPasteSearchSharp } from './icons/google/content_paste_search/sharp.svg';
export { default as googleContentPasteSearchSharpThin } from './icons/google/content_paste_search/sharp_thin.svg';
export { default as googleContrastSharp } from './icons/google/contrast/sharp.svg';
export { default as googleContrastSharpThin } from './icons/google/contrast/sharp_thin.svg';
export { default as googleControlCameraSharp } from './icons/google/control_camera/sharp.svg';
export { default as googleControlPointSharp } from './icons/google/control_point/sharp.svg';
export { default as googleControlPointDuplicateSharp } from './icons/google/control_point_duplicate/sharp.svg';
export { default as googleCookieSharp } from './icons/google/cookie/sharp.svg';
export { default as googleCookieSharpThin } from './icons/google/cookie/sharp_thin.svg';
export { default as googleCopyAllSharp } from './icons/google/copy_all/sharp.svg';
export { default as googleCopyAllSharpThin } from './icons/google/copy_all/sharp_thin.svg';
export { default as googleCopyrightSharp } from './icons/google/copyright/sharp.svg';
export { default as googleCoronavirusSharp } from './icons/google/coronavirus/sharp.svg';
export { default as googleCorporateFareSharp } from './icons/google/corporate_fare/sharp.svg';
export { default as googleCottageSharp } from './icons/google/cottage/sharp.svg';
export { default as googleCottageSharpThin } from './icons/google/cottage/sharp_thin.svg';
export { default as googleCountertopsSharp } from './icons/google/countertops/sharp.svg';
export { default as googleCreateSharp } from './icons/google/create/sharp.svg';
export { default as googleCreateNewFolderSharp } from './icons/google/create_new_folder/sharp.svg';
export { default as googleCreditCardSharp } from './icons/google/credit_card/sharp.svg';
export { default as googleCreditCardOffSharp } from './icons/google/credit_card_off/sharp.svg';
export { default as googleCreditCardOffSharpThin } from './icons/google/credit_card_off/sharp_thin.svg';
export { default as googleCreditScoreSharp } from './icons/google/credit_score/sharp.svg';
export { default as googleCribSharp } from './icons/google/crib/sharp.svg';
export { default as googleCribSharpThin } from './icons/google/crib/sharp_thin.svg';
export { default as googleCrisisAlertSharp } from './icons/google/crisis_alert/sharp.svg';
export { default as googleCrisisAlertSharpThin } from './icons/google/crisis_alert/sharp_thin.svg';
export { default as googleCropSharp } from './icons/google/crop/sharp.svg';
export { default as googleCrop169Sharp } from './icons/google/crop_16_9/sharp.svg';
export { default as googleCrop169SharpThin } from './icons/google/crop_16_9/sharp_thin.svg';
export { default as googleCrop32Sharp } from './icons/google/crop_3_2/sharp.svg';
export { default as googleCrop32SharpThin } from './icons/google/crop_3_2/sharp_thin.svg';
export { default as googleCrop54Sharp } from './icons/google/crop_5_4/sharp.svg';
export { default as googleCrop54SharpThin } from './icons/google/crop_5_4/sharp_thin.svg';
export { default as googleCrop75Sharp } from './icons/google/crop_7_5/sharp.svg';
export { default as googleCrop75SharpThin } from './icons/google/crop_7_5/sharp_thin.svg';
export { default as googleCropDinSharp } from './icons/google/crop_din/sharp.svg';
export { default as googleCropFreeSharp } from './icons/google/crop_free/sharp.svg';
export { default as googleCropLandscapeSharp } from './icons/google/crop_landscape/sharp.svg';
export { default as googleCropOriginalSharp } from './icons/google/crop_original/sharp.svg';
export { default as googleCropPortraitSharp } from './icons/google/crop_portrait/sharp.svg';
export { default as googleCropRotateSharp } from './icons/google/crop_rotate/sharp.svg';
export { default as googleCropSquareSharp } from './icons/google/crop_square/sharp.svg';
export { default as googleCrueltyFreeSharp } from './icons/google/cruelty_free/sharp.svg';
export { default as googleCrueltyFreeSharpThin } from './icons/google/cruelty_free/sharp_thin.svg';
export { default as googleCssSharp } from './icons/google/css/sharp.svg';
export { default as googleCssSharpThin } from './icons/google/css/sharp_thin.svg';
export { default as googleCurrencyBitcoinSharp } from './icons/google/currency_bitcoin/sharp.svg';
export { default as googleCurrencyBitcoinSharpThin } from './icons/google/currency_bitcoin/sharp_thin.svg';
export { default as googleCurrencyExchangeSharp } from './icons/google/currency_exchange/sharp.svg';
export { default as googleCurrencyExchangeSharpThin } from './icons/google/currency_exchange/sharp_thin.svg';
export { default as googleCurrencyFrancSharp } from './icons/google/currency_franc/sharp.svg';
export { default as googleCurrencyFrancSharpThin } from './icons/google/currency_franc/sharp_thin.svg';
export { default as googleCurrencyLiraSharp } from './icons/google/currency_lira/sharp.svg';
export { default as googleCurrencyLiraSharpThin } from './icons/google/currency_lira/sharp_thin.svg';
export { default as googleCurrencyPoundSharp } from './icons/google/currency_pound/sharp.svg';
export { default as googleCurrencyPoundSharpThin } from './icons/google/currency_pound/sharp_thin.svg';
export { default as googleCurrencyRubleSharp } from './icons/google/currency_ruble/sharp.svg';
export { default as googleCurrencyRubleSharpThin } from './icons/google/currency_ruble/sharp_thin.svg';
export { default as googleCurrencyRupeeSharp } from './icons/google/currency_rupee/sharp.svg';
export { default as googleCurrencyRupeeSharpThin } from './icons/google/currency_rupee/sharp_thin.svg';
export { default as googleCurrencyYenSharp } from './icons/google/currency_yen/sharp.svg';
export { default as googleCurrencyYenSharpThin } from './icons/google/currency_yen/sharp_thin.svg';
export { default as googleCurrencyYuanSharp } from './icons/google/currency_yuan/sharp.svg';
export { default as googleCurrencyYuanSharpThin } from './icons/google/currency_yuan/sharp_thin.svg';
export { default as googleCurtainsSharp } from './icons/google/curtains/sharp.svg';
export { default as googleCurtainsSharpThin } from './icons/google/curtains/sharp_thin.svg';
export { default as googleCurtainsClosedSharp } from './icons/google/curtains_closed/sharp.svg';
export { default as googleCurtainsClosedSharpThin } from './icons/google/curtains_closed/sharp_thin.svg';
export { default as googleCycloneSharp } from './icons/google/cyclone/sharp.svg';
export { default as googleCycloneSharpThin } from './icons/google/cyclone/sharp_thin.svg';
export { default as googleDangerousSharp } from './icons/google/dangerous/sharp.svg';
export { default as googleDangerousSharpThin } from './icons/google/dangerous/sharp_thin.svg';
export { default as googleDarkModeSharp } from './icons/google/dark_mode/sharp.svg';
export { default as googleDarkModeSharpThin } from './icons/google/dark_mode/sharp_thin.svg';
export { default as googleDashboardSharp } from './icons/google/dashboard/sharp.svg';
export { default as googleDashboardCustomizeSharp } from './icons/google/dashboard_customize/sharp.svg';
export { default as googleDataArraySharp } from './icons/google/data_array/sharp.svg';
export { default as googleDataArraySharpThin } from './icons/google/data_array/sharp_thin.svg';
export { default as googleDataExplorationSharp } from './icons/google/data_exploration/sharp.svg';
export { default as googleDataExplorationSharpThin } from './icons/google/data_exploration/sharp_thin.svg';
export { default as googleDataObjectSharp } from './icons/google/data_object/sharp.svg';
export { default as googleDataObjectSharpThin } from './icons/google/data_object/sharp_thin.svg';
export { default as googleDataSaverOffSharp } from './icons/google/data_saver_off/sharp.svg';
export { default as googleDataSaverOnSharp } from './icons/google/data_saver_on/sharp.svg';
export { default as googleDataThresholdingSharp } from './icons/google/data_thresholding/sharp.svg';
export { default as googleDataThresholdingSharpThin } from './icons/google/data_thresholding/sharp_thin.svg';
export { default as googleDataUsageSharp } from './icons/google/data_usage/sharp.svg';
export { default as googleDatasetSharp } from './icons/google/dataset/sharp.svg';
export { default as googleDatasetSharpThin } from './icons/google/dataset/sharp_thin.svg';
export { default as googleDatasetLinkedSharp } from './icons/google/dataset_linked/sharp.svg';
export { default as googleDatasetLinkedSharpThin } from './icons/google/dataset_linked/sharp_thin.svg';
export { default as googleDateRangeSharp } from './icons/google/date_range/sharp.svg';
export { default as googleDeblurSharp } from './icons/google/deblur/sharp.svg';
export { default as googleDeblurSharpThin } from './icons/google/deblur/sharp_thin.svg';
export { default as googleDeckSharp } from './icons/google/deck/sharp.svg';
export { default as googleDeckSharpThin } from './icons/google/deck/sharp_thin.svg';
export { default as googleDehazeSharp } from './icons/google/dehaze/sharp.svg';
export { default as googleDeleteSharp } from './icons/google/delete/sharp.svg';
export { default as googleDeleteForeverSharp } from './icons/google/delete_forever/sharp.svg';
export { default as googleDeleteOutlineSharp } from './icons/google/delete_outline/sharp.svg';
export { default as googleDeleteSweepSharp } from './icons/google/delete_sweep/sharp.svg';
export { default as googleDeliveryDiningSharp } from './icons/google/delivery_dining/sharp.svg';
export { default as googleDeliveryDiningSharpThin } from './icons/google/delivery_dining/sharp_thin.svg';
export { default as googleDensityLargeSharp } from './icons/google/density_large/sharp.svg';
export { default as googleDensityLargeSharpThin } from './icons/google/density_large/sharp_thin.svg';
export { default as googleDensityMediumSharp } from './icons/google/density_medium/sharp.svg';
export { default as googleDensityMediumSharpThin } from './icons/google/density_medium/sharp_thin.svg';
export { default as googleDensitySmallSharp } from './icons/google/density_small/sharp.svg';
export { default as googleDensitySmallSharpThin } from './icons/google/density_small/sharp_thin.svg';
export { default as googleDepartureBoardSharp } from './icons/google/departure_board/sharp.svg';
export { default as googleDescriptionSharp } from './icons/google/description/sharp.svg';
export { default as googleDeselectSharp } from './icons/google/deselect/sharp.svg';
export { default as googleDeselectSharpThin } from './icons/google/deselect/sharp_thin.svg';
export { default as googleDesignServicesSharp } from './icons/google/design_services/sharp.svg';
export { default as googleDesignServicesSharpThin } from './icons/google/design_services/sharp_thin.svg';
export { default as googleDeskSharp } from './icons/google/desk/sharp.svg';
export { default as googleDeskSharpThin } from './icons/google/desk/sharp_thin.svg';
export { default as googleDesktopAccessDisabledSharp } from './icons/google/desktop_access_disabled/sharp.svg';
export { default as googleDesktopMacSharp } from './icons/google/desktop_mac/sharp.svg';
export { default as googleDesktopWindowsSharp } from './icons/google/desktop_windows/sharp.svg';
export { default as googleDetailsSharp } from './icons/google/details/sharp.svg';
export { default as googleDeveloperBoardSharp } from './icons/google/developer_board/sharp.svg';
export { default as googleDeveloperBoardOffSharp } from './icons/google/developer_board_off/sharp.svg';
export { default as googleDeveloperBoardOffSharpThin } from './icons/google/developer_board_off/sharp_thin.svg';
export { default as googleDeveloperModeSharp } from './icons/google/developer_mode/sharp.svg';
export { default as googleDeviceHubSharp } from './icons/google/device_hub/sharp.svg';
export { default as googleDeviceThermostatSharp } from './icons/google/device_thermostat/sharp.svg';
export { default as googleDeviceUnknownSharp } from './icons/google/device_unknown/sharp.svg';
export { default as googleDevicesSharp } from './icons/google/devices/sharp.svg';
export { default as googleDevicesFoldSharp } from './icons/google/devices_fold/sharp.svg';
export { default as googleDevicesFoldSharpThin } from './icons/google/devices_fold/sharp_thin.svg';
export { default as googleDevicesOtherSharp } from './icons/google/devices_other/sharp.svg';
export { default as googleDialerSipSharp } from './icons/google/dialer_sip/sharp.svg';
export { default as googleDialpadSharp } from './icons/google/dialpad/sharp.svg';
export { default as googleDiamondSharp } from './icons/google/diamond/sharp.svg';
export { default as googleDiamondSharpThin } from './icons/google/diamond/sharp_thin.svg';
export { default as googleDifferenceSharp } from './icons/google/difference/sharp.svg';
export { default as googleDifferenceSharpThin } from './icons/google/difference/sharp_thin.svg';
export { default as googleDiningSharp } from './icons/google/dining/sharp.svg';
export { default as googleDinnerDiningSharp } from './icons/google/dinner_dining/sharp.svg';
export { default as googleDinnerDiningSharpThin } from './icons/google/dinner_dining/sharp_thin.svg';
export { default as googleDirectionsSharp } from './icons/google/directions/sharp.svg';
export { default as googleDirectionsBikeSharp } from './icons/google/directions_bike/sharp.svg';
export { default as googleDirectionsBoatSharp } from './icons/google/directions_boat/sharp.svg';
export { default as googleDirectionsBoatFilledSharp } from './icons/google/directions_boat_filled/sharp.svg';
export { default as googleDirectionsBusSharp } from './icons/google/directions_bus/sharp.svg';
export { default as googleDirectionsBusFilledSharp } from './icons/google/directions_bus_filled/sharp.svg';
export { default as googleDirectionsCarSharp } from './icons/google/directions_car/sharp.svg';
export { default as googleDirectionsCarFilledSharp } from './icons/google/directions_car_filled/sharp.svg';
export { default as googleDirectionsOffSharp } from './icons/google/directions_off/sharp.svg';
export { default as googleDirectionsRailwaySharp } from './icons/google/directions_railway/sharp.svg';
export { default as googleDirectionsRailwayFilledSharp } from './icons/google/directions_railway_filled/sharp.svg';
export { default as googleDirectionsRunSharp } from './icons/google/directions_run/sharp.svg';
export { default as googleDirectionsSubwaySharp } from './icons/google/directions_subway/sharp.svg';
export { default as googleDirectionsSubwayFilledSharp } from './icons/google/directions_subway_filled/sharp.svg';
export { default as googleDirectionsTransitSharp } from './icons/google/directions_transit/sharp.svg';
export { default as googleDirectionsTransitFilledSharp } from './icons/google/directions_transit_filled/sharp.svg';
export { default as googleDirectionsWalkSharp } from './icons/google/directions_walk/sharp.svg';
export { default as googleDirtyLensSharp } from './icons/google/dirty_lens/sharp.svg';
export { default as googleDisabledByDefaultSharp } from './icons/google/disabled_by_default/sharp.svg';
export { default as googleDisabledVisibleSharp } from './icons/google/disabled_visible/sharp.svg';
export { default as googleDisabledVisibleSharpThin } from './icons/google/disabled_visible/sharp_thin.svg';
export { default as googleDiscFullSharp } from './icons/google/disc_full/sharp.svg';
export { default as googleDiscountSharp } from './icons/google/discount/sharp.svg';
export { default as googleDiscountSharpThin } from './icons/google/discount/sharp_thin.svg';
export { default as googleDisplaySettingsSharp } from './icons/google/display_settings/sharp.svg';
export { default as googleDisplaySettingsSharpThin } from './icons/google/display_settings/sharp_thin.svg';
export { default as googleDiversity1Sharp } from './icons/google/diversity_1/sharp.svg';
export { default as googleDiversity1SharpThin } from './icons/google/diversity_1/sharp_thin.svg';
export { default as googleDiversity2Sharp } from './icons/google/diversity_2/sharp.svg';
export { default as googleDiversity2SharpThin } from './icons/google/diversity_2/sharp_thin.svg';
export { default as googleDiversity3Sharp } from './icons/google/diversity_3/sharp.svg';
export { default as googleDiversity3SharpThin } from './icons/google/diversity_3/sharp_thin.svg';
export { default as googleDnsSharp } from './icons/google/dns/sharp.svg';
export { default as googleDoDisturbSharp } from './icons/google/do_disturb/sharp.svg';
export { default as googleDoDisturbAltSharp } from './icons/google/do_disturb_alt/sharp.svg';
export { default as googleDoDisturbOffSharp } from './icons/google/do_disturb_off/sharp.svg';
export { default as googleDoDisturbOnSharp } from './icons/google/do_disturb_on/sharp.svg';
export { default as googleDoNotDisturbSharp } from './icons/google/do_not_disturb/sharp.svg';
export { default as googleDoNotDisturbAltSharp } from './icons/google/do_not_disturb_alt/sharp.svg';
export { default as googleDoNotDisturbOffSharp } from './icons/google/do_not_disturb_off/sharp.svg';
export { default as googleDoNotDisturbOnSharp } from './icons/google/do_not_disturb_on/sharp.svg';
export { default as googleDoNotDisturbOnTotalSilenceSharp } from './icons/google/do_not_disturb_on_total_silence/sharp.svg';
export { default as googleDoNotStepSharp } from './icons/google/do_not_step/sharp.svg';
export { default as googleDoNotTouchSharp } from './icons/google/do_not_touch/sharp.svg';
export { default as googleDockSharp } from './icons/google/dock/sharp.svg';
export { default as googleDocumentScannerSharp } from './icons/google/document_scanner/sharp.svg';
export { default as googleDocumentScannerSharpThin } from './icons/google/document_scanner/sharp_thin.svg';
export { default as googleDomainSharp } from './icons/google/domain/sharp.svg';
export { default as googleDomainAddSharp } from './icons/google/domain_add/sharp.svg';
export { default as googleDomainAddSharpThin } from './icons/google/domain_add/sharp_thin.svg';
export { default as googleDomainDisabledSharp } from './icons/google/domain_disabled/sharp.svg';
export { default as googleDomainVerificationSharp } from './icons/google/domain_verification/sharp.svg';
export { default as googleDomainVerificationSharpThin } from './icons/google/domain_verification/sharp_thin.svg';
export { default as googleDoneSharp } from './icons/google/done/sharp.svg';
export { default as googleDoneAllSharp } from './icons/google/done_all/sharp.svg';
export { default as googleDoneOutlineSharp } from './icons/google/done_outline/sharp.svg';
export { default as googleDonutLargeSharp } from './icons/google/donut_large/sharp.svg';
export { default as googleDonutSmallSharp } from './icons/google/donut_small/sharp.svg';
export { default as googleDoorBackSharp } from './icons/google/door_back/sharp.svg';
export { default as googleDoorFrontSharp } from './icons/google/door_front/sharp.svg';
export { default as googleDoorSlidingSharp } from './icons/google/door_sliding/sharp.svg';
export { default as googleDoorbellSharp } from './icons/google/doorbell/sharp.svg';
export { default as googleDoubleArrowSharp } from './icons/google/double_arrow/sharp.svg';
export { default as googleDoubleArrowSharpThin } from './icons/google/double_arrow/sharp_thin.svg';
export { default as googleDownhillSkiingSharp } from './icons/google/downhill_skiing/sharp.svg';
export { default as googleDownhillSkiingSharpThin } from './icons/google/downhill_skiing/sharp_thin.svg';
export { default as googleDownloadSharp } from './icons/google/download/sharp.svg';
export { default as googleDownloadDoneSharp } from './icons/google/download_done/sharp.svg';
export { default as googleDownloadForOfflineSharp } from './icons/google/download_for_offline/sharp.svg';
export { default as googleDownloadingSharp } from './icons/google/downloading/sharp.svg';
export { default as googleDraftsSharp } from './icons/google/drafts/sharp.svg';
export { default as googleDragHandleSharp } from './icons/google/drag_handle/sharp.svg';
export { default as googleDragIndicatorSharp } from './icons/google/drag_indicator/sharp.svg';
export { default as googleDrawSharp } from './icons/google/draw/sharp.svg';
export { default as googleDrawSharpThin } from './icons/google/draw/sharp_thin.svg';
export { default as googleDriveEtaSharp } from './icons/google/drive_eta/sharp.svg';
export { default as googleDriveFileMoveSharp } from './icons/google/drive_file_move/sharp.svg';
export { default as googleDriveFileMoveRtlSharp } from './icons/google/drive_file_move_rtl/sharp.svg';
export { default as googleDriveFileMoveRtlSharpThin } from './icons/google/drive_file_move_rtl/sharp_thin.svg';
export { default as googleDriveFileRenameOutlineSharp } from './icons/google/drive_file_rename_outline/sharp.svg';
export { default as googleDriveFolderUploadSharp } from './icons/google/drive_folder_upload/sharp.svg';
export { default as googleDrySharp } from './icons/google/dry/sharp.svg';
export { default as googleDryCleaningSharp } from './icons/google/dry_cleaning/sharp.svg';
export { default as googleDryCleaningSharpThin } from './icons/google/dry_cleaning/sharp_thin.svg';
export { default as googleDuoSharp } from './icons/google/duo/sharp.svg';
export { default as googleDvrSharp } from './icons/google/dvr/sharp.svg';
export { default as googleDynamicFeedSharp } from './icons/google/dynamic_feed/sharp.svg';
export { default as googleDynamicFeedSharpThin } from './icons/google/dynamic_feed/sharp_thin.svg';
export { default as googleDynamicFormSharp } from './icons/google/dynamic_form/sharp.svg';
export { default as googleEMobiledataSharp } from './icons/google/e_mobiledata/sharp.svg';
export { default as googleEarbudsSharp } from './icons/google/earbuds/sharp.svg';
export { default as googleEarbudsBatterySharp } from './icons/google/earbuds_battery/sharp.svg';
export { default as googleEastSharp } from './icons/google/east/sharp.svg';
export { default as googleEcoSharp } from './icons/google/eco/sharp.svg';
export { default as googleEcoSharpThin } from './icons/google/eco/sharp_thin.svg';
export { default as googleEdgesensorHighSharp } from './icons/google/edgesensor_high/sharp.svg';
export { default as googleEdgesensorLowSharp } from './icons/google/edgesensor_low/sharp.svg';
export { default as googleEditSharp } from './icons/google/edit/sharp.svg';
export { default as googleEditAttributesSharp } from './icons/google/edit_attributes/sharp.svg';
export { default as googleEditCalendarSharp } from './icons/google/edit_calendar/sharp.svg';
export { default as googleEditCalendarSharpThin } from './icons/google/edit_calendar/sharp_thin.svg';
export { default as googleEditLocationSharp } from './icons/google/edit_location/sharp.svg';
export { default as googleEditLocationAltSharp } from './icons/google/edit_location_alt/sharp.svg';
export { default as googleEditLocationAltSharpThin } from './icons/google/edit_location_alt/sharp_thin.svg';
export { default as googleEditNoteSharp } from './icons/google/edit_note/sharp.svg';
export { default as googleEditNoteSharpThin } from './icons/google/edit_note/sharp_thin.svg';
export { default as googleEditNotificationsSharp } from './icons/google/edit_notifications/sharp.svg';
export { default as googleEditNotificationsSharpThin } from './icons/google/edit_notifications/sharp_thin.svg';
export { default as googleEditOffSharp } from './icons/google/edit_off/sharp.svg';
export { default as googleEditRoadSharp } from './icons/google/edit_road/sharp.svg';
export { default as googleEditRoadSharpThin } from './icons/google/edit_road/sharp_thin.svg';
export { default as googleEggSharp } from './icons/google/egg/sharp.svg';
export { default as googleEggSharpThin } from './icons/google/egg/sharp_thin.svg';
export { default as googleEggAltSharp } from './icons/google/egg_alt/sharp.svg';
export { default as googleEggAltSharpThin } from './icons/google/egg_alt/sharp_thin.svg';
export { default as googleEjectSharp } from './icons/google/eject/sharp.svg';
export { default as googleElderlySharp } from './icons/google/elderly/sharp.svg';
export { default as googleElderlyWomanSharp } from './icons/google/elderly_woman/sharp.svg';
export { default as googleElderlyWomanSharpThin } from './icons/google/elderly_woman/sharp_thin.svg';
export { default as googleElectricBikeSharp } from './icons/google/electric_bike/sharp.svg';
export { default as googleElectricBikeSharpThin } from './icons/google/electric_bike/sharp_thin.svg';
export { default as googleElectricBoltSharp } from './icons/google/electric_bolt/sharp.svg';
export { default as googleElectricBoltSharpThin } from './icons/google/electric_bolt/sharp_thin.svg';
export { default as googleElectricCarSharp } from './icons/google/electric_car/sharp.svg';
export { default as googleElectricCarSharpThin } from './icons/google/electric_car/sharp_thin.svg';
export { default as googleElectricMeterSharp } from './icons/google/electric_meter/sharp.svg';
export { default as googleElectricMeterSharpThin } from './icons/google/electric_meter/sharp_thin.svg';
export { default as googleElectricMopedSharp } from './icons/google/electric_moped/sharp.svg';
export { default as googleElectricMopedSharpThin } from './icons/google/electric_moped/sharp_thin.svg';
export { default as googleElectricRickshawSharp } from './icons/google/electric_rickshaw/sharp.svg';
export { default as googleElectricRickshawSharpThin } from './icons/google/electric_rickshaw/sharp_thin.svg';
export { default as googleElectricScooterSharp } from './icons/google/electric_scooter/sharp.svg';
export { default as googleElectricScooterSharpThin } from './icons/google/electric_scooter/sharp_thin.svg';
export { default as googleElectricalServicesSharp } from './icons/google/electrical_services/sharp.svg';
export { default as googleElectricalServicesSharpThin } from './icons/google/electrical_services/sharp_thin.svg';
export { default as googleElevatorSharp } from './icons/google/elevator/sharp.svg';
export { default as googleEmailSharp } from './icons/google/email/sharp.svg';
export { default as googleEmergencySharp } from './icons/google/emergency/sharp.svg';
export { default as googleEmergencySharpThin } from './icons/google/emergency/sharp_thin.svg';
export { default as googleEmergencyRecordingSharp } from './icons/google/emergency_recording/sharp.svg';
export { default as googleEmergencyRecordingSharpThin } from './icons/google/emergency_recording/sharp_thin.svg';
export { default as googleEmergencyShareSharp } from './icons/google/emergency_share/sharp.svg';
export { default as googleEmergencyShareSharpThin } from './icons/google/emergency_share/sharp_thin.svg';
export { default as googleEmojiEmotionsSharp } from './icons/google/emoji_emotions/sharp.svg';
export { default as googleEmojiEmotionsSharpThin } from './icons/google/emoji_emotions/sharp_thin.svg';
export { default as googleEmojiEventsSharp } from './icons/google/emoji_events/sharp.svg';
export { default as googleEmojiEventsSharpThin } from './icons/google/emoji_events/sharp_thin.svg';
export { default as googleEmojiFlagsSharp } from './icons/google/emoji_flags/sharp.svg';
export { default as googleEmojiFlagsSharpThin } from './icons/google/emoji_flags/sharp_thin.svg';
export { default as googleEmojiFoodBeverageSharp } from './icons/google/emoji_food_beverage/sharp.svg';
export { default as googleEmojiFoodBeverageSharpThin } from './icons/google/emoji_food_beverage/sharp_thin.svg';
export { default as googleEmojiNatureSharp } from './icons/google/emoji_nature/sharp.svg';
export { default as googleEmojiNatureSharpThin } from './icons/google/emoji_nature/sharp_thin.svg';
export { default as googleEmojiObjectsSharp } from './icons/google/emoji_objects/sharp.svg';
export { default as googleEmojiObjectsSharpThin } from './icons/google/emoji_objects/sharp_thin.svg';
export { default as googleEmojiPeopleSharp } from './icons/google/emoji_people/sharp.svg';
export { default as googleEmojiPeopleSharpThin } from './icons/google/emoji_people/sharp_thin.svg';
export { default as googleEmojiSymbolsSharp } from './icons/google/emoji_symbols/sharp.svg';
export { default as googleEmojiSymbolsSharpThin } from './icons/google/emoji_symbols/sharp_thin.svg';
export { default as googleEmojiTransportationSharp } from './icons/google/emoji_transportation/sharp.svg';
export { default as googleEmojiTransportationSharpThin } from './icons/google/emoji_transportation/sharp_thin.svg';
export { default as googleEnergySavingsLeafSharp } from './icons/google/energy_savings_leaf/sharp.svg';
export { default as googleEnergySavingsLeafSharpThin } from './icons/google/energy_savings_leaf/sharp_thin.svg';
export { default as googleEngineeringSharp } from './icons/google/engineering/sharp.svg';
export { default as googleEngineeringSharpThin } from './icons/google/engineering/sharp_thin.svg';
export { default as googleEnhancedEncryptionSharp } from './icons/google/enhanced_encryption/sharp.svg';
export { default as googleEqualizerSharp } from './icons/google/equalizer/sharp.svg';
export { default as googleErrorSharp } from './icons/google/error/sharp.svg';
export { default as googleErrorOutlineSharp } from './icons/google/error_outline/sharp.svg';
export { default as googleEscalatorSharp } from './icons/google/escalator/sharp.svg';
export { default as googleEscalatorWarningSharp } from './icons/google/escalator_warning/sharp.svg';
export { default as googleEuroSharp } from './icons/google/euro/sharp.svg';
export { default as googleEuroSharpThin } from './icons/google/euro/sharp_thin.svg';
export { default as googleEuroSymbolSharp } from './icons/google/euro_symbol/sharp.svg';
export { default as googleEvStationSharp } from './icons/google/ev_station/sharp.svg';
export { default as googleEventSharp } from './icons/google/event/sharp.svg';
export { default as googleEventAvailableSharp } from './icons/google/event_available/sharp.svg';
export { default as googleEventBusySharp } from './icons/google/event_busy/sharp.svg';
export { default as googleEventNoteSharp } from './icons/google/event_note/sharp.svg';
export { default as googleEventRepeatSharp } from './icons/google/event_repeat/sharp.svg';
export { default as googleEventRepeatSharpThin } from './icons/google/event_repeat/sharp_thin.svg';
export { default as googleEventSeatSharp } from './icons/google/event_seat/sharp.svg';
export { default as googleExitToAppSharp } from './icons/google/exit_to_app/sharp.svg';
export { default as googleExpandSharp } from './icons/google/expand/sharp.svg';
export { default as googleExpandCircleDownSharp } from './icons/google/expand_circle_down/sharp.svg';
export { default as googleExpandCircleDownSharpThin } from './icons/google/expand_circle_down/sharp_thin.svg';
export { default as googleExpandLessSharp } from './icons/google/expand_less/sharp.svg';
export { default as googleExpandMoreSharp } from './icons/google/expand_more/sharp.svg';
export { default as googleExplicitSharp } from './icons/google/explicit/sharp.svg';
export { default as googleExploreSharp } from './icons/google/explore/sharp.svg';
export { default as googleExploreOffSharp } from './icons/google/explore_off/sharp.svg';
export { default as googleExposureSharp } from './icons/google/exposure/sharp.svg';
export { default as googleExposureNeg1Sharp } from './icons/google/exposure_neg_1/sharp.svg';
export { default as googleExposureNeg2Sharp } from './icons/google/exposure_neg_2/sharp.svg';
export { default as googleExposurePlus1Sharp } from './icons/google/exposure_plus_1/sharp.svg';
export { default as googleExposurePlus2Sharp } from './icons/google/exposure_plus_2/sharp.svg';
export { default as googleExposureZeroSharp } from './icons/google/exposure_zero/sharp.svg';
export { default as googleExtensionSharp } from './icons/google/extension/sharp.svg';
export { default as googleExtensionOffSharp } from './icons/google/extension_off/sharp.svg';
export { default as googleExtensionOffSharpThin } from './icons/google/extension_off/sharp_thin.svg';
export { default as googleFaceSharp } from './icons/google/face/sharp.svg';
export { default as googleFace2Sharp } from './icons/google/face_2/sharp.svg';
export { default as googleFace2SharpThin } from './icons/google/face_2/sharp_thin.svg';
export { default as googleFace3Sharp } from './icons/google/face_3/sharp.svg';
export { default as googleFace3SharpThin } from './icons/google/face_3/sharp_thin.svg';
export { default as googleFace4Sharp } from './icons/google/face_4/sharp.svg';
export { default as googleFace4SharpThin } from './icons/google/face_4/sharp_thin.svg';
export { default as googleFace5Sharp } from './icons/google/face_5/sharp.svg';
export { default as googleFace5SharpThin } from './icons/google/face_5/sharp_thin.svg';
export { default as googleFace6Sharp } from './icons/google/face_6/sharp.svg';
export { default as googleFace6SharpThin } from './icons/google/face_6/sharp_thin.svg';
export { default as googleFaceRetouchingNaturalSharp } from './icons/google/face_retouching_natural/sharp.svg';
export { default as googleFaceRetouchingOffSharp } from './icons/google/face_retouching_off/sharp.svg';
export { default as googleFaceUnlockSharp } from './icons/google/face_unlock/sharp.svg';
export { default as googleFacebookSharp } from './icons/google/facebook/sharp.svg';
export { default as googleFactCheckSharp } from './icons/google/fact_check/sharp.svg';
export { default as googleFactCheckSharpThin } from './icons/google/fact_check/sharp_thin.svg';
export { default as googleFactorySharp } from './icons/google/factory/sharp.svg';
export { default as googleFactorySharpThin } from './icons/google/factory/sharp_thin.svg';
export { default as googleFamilyRestroomSharp } from './icons/google/family_restroom/sharp.svg';
export { default as googleFastForwardSharp } from './icons/google/fast_forward/sharp.svg';
export { default as googleFastRewindSharp } from './icons/google/fast_rewind/sharp.svg';
export { default as googleFastfoodSharp } from './icons/google/fastfood/sharp.svg';
export { default as googleFavoriteSharp } from './icons/google/favorite/sharp.svg';
export { default as googleFavoriteBorderSharp } from './icons/google/favorite_border/sharp.svg';
export { default as googleFaxSharp } from './icons/google/fax/sharp.svg';
export { default as googleFaxSharpThin } from './icons/google/fax/sharp_thin.svg';
export { default as googleFeaturedPlayListSharp } from './icons/google/featured_play_list/sharp.svg';
export { default as googleFeaturedVideoSharp } from './icons/google/featured_video/sharp.svg';
export { default as googleFeedSharp } from './icons/google/feed/sharp.svg';
export { default as googleFeedbackSharp } from './icons/google/feedback/sharp.svg';
export { default as googleFemaleSharp } from './icons/google/female/sharp.svg';
export { default as googleFemaleSharpThin } from './icons/google/female/sharp_thin.svg';
export { default as googleFenceSharp } from './icons/google/fence/sharp.svg';
export { default as googleFestivalSharp } from './icons/google/festival/sharp.svg';
export { default as googleFestivalSharpThin } from './icons/google/festival/sharp_thin.svg';
export { default as googleFiberDvrSharp } from './icons/google/fiber_dvr/sharp.svg';
export { default as googleFiberManualRecordSharp } from './icons/google/fiber_manual_record/sharp.svg';
export { default as googleFiberNewSharp } from './icons/google/fiber_new/sharp.svg';
export { default as googleFiberPinSharp } from './icons/google/fiber_pin/sharp.svg';
export { default as googleFiberSmartRecordSharp } from './icons/google/fiber_smart_record/sharp.svg';
export { default as googleFileCopySharp } from './icons/google/file_copy/sharp.svg';
export { default as googleFileDownloadSharp } from './icons/google/file_download/sharp.svg';
export { default as googleFileDownloadDoneSharp } from './icons/google/file_download_done/sharp.svg';
export { default as googleFileDownloadOffSharp } from './icons/google/file_download_off/sharp.svg';
export { default as googleFileDownloadOffSharpThin } from './icons/google/file_download_off/sharp_thin.svg';
export { default as googleFileOpenSharp } from './icons/google/file_open/sharp.svg';
export { default as googleFileOpenSharpThin } from './icons/google/file_open/sharp_thin.svg';
export { default as googleFilePresentSharp } from './icons/google/file_present/sharp.svg';
export { default as googleFileUploadSharp } from './icons/google/file_upload/sharp.svg';
export { default as googleFilterSharp } from './icons/google/filter/sharp.svg';
export { default as googleFilter1Sharp } from './icons/google/filter_1/sharp.svg';
export { default as googleFilter2Sharp } from './icons/google/filter_2/sharp.svg';
export { default as googleFilter3Sharp } from './icons/google/filter_3/sharp.svg';
export { default as googleFilter4Sharp } from './icons/google/filter_4/sharp.svg';
export { default as googleFilter5Sharp } from './icons/google/filter_5/sharp.svg';
export { default as googleFilter6Sharp } from './icons/google/filter_6/sharp.svg';
export { default as googleFilter7Sharp } from './icons/google/filter_7/sharp.svg';
export { default as googleFilter8Sharp } from './icons/google/filter_8/sharp.svg';
export { default as googleFilter9Sharp } from './icons/google/filter_9/sharp.svg';
export { default as googleFilter9PlusSharp } from './icons/google/filter_9_plus/sharp.svg';
export { default as googleFilterAltSharp } from './icons/google/filter_alt/sharp.svg';
export { default as googleFilterAltOffSharp } from './icons/google/filter_alt_off/sharp.svg';
export { default as googleFilterAltOffSharpThin } from './icons/google/filter_alt_off/sharp_thin.svg';
export { default as googleFilterBAndWSharp } from './icons/google/filter_b_and_w/sharp.svg';
export { default as googleFilterCenterFocusSharp } from './icons/google/filter_center_focus/sharp.svg';
export { default as googleFilterDramaSharp } from './icons/google/filter_drama/sharp.svg';
export { default as googleFilterFramesSharp } from './icons/google/filter_frames/sharp.svg';
export { default as googleFilterHdrSharp } from './icons/google/filter_hdr/sharp.svg';
export { default as googleFilterListSharp } from './icons/google/filter_list/sharp.svg';
export { default as googleFilterListOffSharp } from './icons/google/filter_list_off/sharp.svg';
export { default as googleFilterListOffSharpThin } from './icons/google/filter_list_off/sharp_thin.svg';
export { default as googleFilterNoneSharp } from './icons/google/filter_none/sharp.svg';
export { default as googleFilterTiltShiftSharp } from './icons/google/filter_tilt_shift/sharp.svg';
export { default as googleFilterVintageSharp } from './icons/google/filter_vintage/sharp.svg';
export { default as googleFindInPageSharp } from './icons/google/find_in_page/sharp.svg';
export { default as googleFindReplaceSharp } from './icons/google/find_replace/sharp.svg';
export { default as googleFingerprintSharp } from './icons/google/fingerprint/sharp.svg';
export { default as googleFireExtinguisherSharp } from './icons/google/fire_extinguisher/sharp.svg';
export { default as googleFireHydrantAltSharp } from './icons/google/fire_hydrant_alt/sharp.svg';
export { default as googleFireHydrantAltSharpThin } from './icons/google/fire_hydrant_alt/sharp_thin.svg';
export { default as googleFireTruckSharp } from './icons/google/fire_truck/sharp.svg';
export { default as googleFireTruckSharpThin } from './icons/google/fire_truck/sharp_thin.svg';
export { default as googleFireplaceSharp } from './icons/google/fireplace/sharp.svg';
export { default as googleFireplaceSharpThin } from './icons/google/fireplace/sharp_thin.svg';
export { default as googleFirstPageSharp } from './icons/google/first_page/sharp.svg';
export { default as googleFitScreenSharp } from './icons/google/fit_screen/sharp.svg';
export { default as googleFitbitSharp } from './icons/google/fitbit/sharp.svg';
export { default as googleFitbitSharpThin } from './icons/google/fitbit/sharp_thin.svg';
export { default as googleFitnessCenterSharp } from './icons/google/fitness_center/sharp.svg';
export { default as googleFlagSharp } from './icons/google/flag/sharp.svg';
export { default as googleFlagCircleSharp } from './icons/google/flag_circle/sharp.svg';
export { default as googleFlagCircleSharpThin } from './icons/google/flag_circle/sharp_thin.svg';