forked from cloudblue/material-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathround.js
More file actions
2812 lines (2812 loc) · 254 KB
/
round.js
File metadata and controls
2812 lines (2812 loc) · 254 KB
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 google10kRound } from './icons/google/10k/round.svg';
export { default as google10mpRound } from './icons/google/10mp/round.svg';
export { default as google11mpRound } from './icons/google/11mp/round.svg';
export { default as google123Round } from './icons/google/123/round.svg';
export { default as google123RoundThin } from './icons/google/123/round_thin.svg';
export { default as google12mpRound } from './icons/google/12mp/round.svg';
export { default as google13mpRound } from './icons/google/13mp/round.svg';
export { default as google14mpRound } from './icons/google/14mp/round.svg';
export { default as google15mpRound } from './icons/google/15mp/round.svg';
export { default as google16mpRound } from './icons/google/16mp/round.svg';
export { default as google17mpRound } from './icons/google/17mp/round.svg';
export { default as google18UpRatingRound } from './icons/google/18_up_rating/round.svg';
export { default as google18UpRatingRoundThin } from './icons/google/18_up_rating/round_thin.svg';
export { default as google18mpRound } from './icons/google/18mp/round.svg';
export { default as google19mpRound } from './icons/google/19mp/round.svg';
export { default as google1kRound } from './icons/google/1k/round.svg';
export { default as google1kPlusRound } from './icons/google/1k_plus/round.svg';
export { default as google1xMobiledataRound } from './icons/google/1x_mobiledata/round.svg';
export { default as google20mpRound } from './icons/google/20mp/round.svg';
export { default as google21mpRound } from './icons/google/21mp/round.svg';
export { default as google22mpRound } from './icons/google/22mp/round.svg';
export { default as google23mpRound } from './icons/google/23mp/round.svg';
export { default as google24mpRound } from './icons/google/24mp/round.svg';
export { default as google2kRound } from './icons/google/2k/round.svg';
export { default as google2kPlusRound } from './icons/google/2k_plus/round.svg';
export { default as google2mpRound } from './icons/google/2mp/round.svg';
export { default as google30fpsRound } from './icons/google/30fps/round.svg';
export { default as google30fpsSelectRound } from './icons/google/30fps_select/round.svg';
export { default as google360Round } from './icons/google/360/round.svg';
export { default as google3dRotationRound } from './icons/google/3d_rotation/round.svg';
export { default as google3gMobiledataRound } from './icons/google/3g_mobiledata/round.svg';
export { default as google3kRound } from './icons/google/3k/round.svg';
export { default as google3kPlusRound } from './icons/google/3k_plus/round.svg';
export { default as google3mpRound } from './icons/google/3mp/round.svg';
export { default as google3pRound } from './icons/google/3p/round.svg';
export { default as google4gMobiledataRound } from './icons/google/4g_mobiledata/round.svg';
export { default as google4gPlusMobiledataRound } from './icons/google/4g_plus_mobiledata/round.svg';
export { default as google4kRound } from './icons/google/4k/round.svg';
export { default as google4kPlusRound } from './icons/google/4k_plus/round.svg';
export { default as google4mpRound } from './icons/google/4mp/round.svg';
export { default as google5gRound } from './icons/google/5g/round.svg';
export { default as google5gRoundThin } from './icons/google/5g/round_thin.svg';
export { default as google5kRound } from './icons/google/5k/round.svg';
export { default as google5kPlusRound } from './icons/google/5k_plus/round.svg';
export { default as google5mpRound } from './icons/google/5mp/round.svg';
export { default as google60fpsRound } from './icons/google/60fps/round.svg';
export { default as google60fpsSelectRound } from './icons/google/60fps_select/round.svg';
export { default as google6FtApartRound } from './icons/google/6_ft_apart/round.svg';
export { default as google6kRound } from './icons/google/6k/round.svg';
export { default as google6kPlusRound } from './icons/google/6k_plus/round.svg';
export { default as google6mpRound } from './icons/google/6mp/round.svg';
export { default as google7kRound } from './icons/google/7k/round.svg';
export { default as google7kPlusRound } from './icons/google/7k_plus/round.svg';
export { default as google7mpRound } from './icons/google/7mp/round.svg';
export { default as google8kRound } from './icons/google/8k/round.svg';
export { default as google8kPlusRound } from './icons/google/8k_plus/round.svg';
export { default as google8mpRound } from './icons/google/8mp/round.svg';
export { default as google9kRound } from './icons/google/9k/round.svg';
export { default as google9kPlusRound } from './icons/google/9k_plus/round.svg';
export { default as google9mpRound } from './icons/google/9mp/round.svg';
export { default as googleAbcRound } from './icons/google/abc/round.svg';
export { default as googleAbcRoundThin } from './icons/google/abc/round_thin.svg';
export { default as googleAcUnitRound } from './icons/google/ac_unit/round.svg';
export { default as googleAccessAlarmRound } from './icons/google/access_alarm/round.svg';
export { default as googleAccessAlarmsRound } from './icons/google/access_alarms/round.svg';
export { default as googleAccessTimeRound } from './icons/google/access_time/round.svg';
export { default as googleAccessTimeFilledRound } from './icons/google/access_time_filled/round.svg';
export { default as googleAccessibilityRound } from './icons/google/accessibility/round.svg';
export { default as googleAccessibilityNewRound } from './icons/google/accessibility_new/round.svg';
export { default as googleAccessibleRound } from './icons/google/accessible/round.svg';
export { default as googleAccessibleForwardRound } from './icons/google/accessible_forward/round.svg';
export { default as googleAccountBalanceRound } from './icons/google/account_balance/round.svg';
export { default as googleAccountBalanceWalletRound } from './icons/google/account_balance_wallet/round.svg';
export { default as googleAccountBoxRound } from './icons/google/account_box/round.svg';
export { default as googleAccountBoxRoundThin } from './icons/google/account_box/round_thin.svg';
export { default as googleAccountCircleRound } from './icons/google/account_circle/round.svg';
export { default as googleAccountCircleRoundThin } from './icons/google/account_circle/round_thin.svg';
export { default as googleAccountTreeRound } from './icons/google/account_tree/round.svg';
export { default as googleAdUnitsRound } from './icons/google/ad_units/round.svg';
export { default as googleAdbRound } from './icons/google/adb/round.svg';
export { default as googleAddRound } from './icons/google/add/round.svg';
export { default as googleAddAPhotoRound } from './icons/google/add_a_photo/round.svg';
export { default as googleAddAlarmRound } from './icons/google/add_alarm/round.svg';
export { default as googleAddAlertRound } from './icons/google/add_alert/round.svg';
export { default as googleAddBoxRound } from './icons/google/add_box/round.svg';
export { default as googleAddBusinessRound } from './icons/google/add_business/round.svg';
export { default as googleAddBusinessRoundThin } from './icons/google/add_business/round_thin.svg';
export { default as googleAddCardRound } from './icons/google/add_card/round.svg';
export { default as googleAddCardRoundThin } from './icons/google/add_card/round_thin.svg';
export { default as googleAddChartRound } from './icons/google/add_chart/round.svg';
export { default as googleAddCircleRound } from './icons/google/add_circle/round.svg';
export { default as googleAddCircleOutlineRound } from './icons/google/add_circle_outline/round.svg';
export { default as googleAddCommentRound } from './icons/google/add_comment/round.svg';
export { default as googleAddHomeRound } from './icons/google/add_home/round.svg';
export { default as googleAddHomeRoundThin } from './icons/google/add_home/round_thin.svg';
export { default as googleAddHomeWorkRound } from './icons/google/add_home_work/round.svg';
export { default as googleAddHomeWorkRoundThin } from './icons/google/add_home_work/round_thin.svg';
export { default as googleAddIcCallRound } from './icons/google/add_ic_call/round.svg';
export { default as googleAddLinkRound } from './icons/google/add_link/round.svg';
export { default as googleAddLocationRound } from './icons/google/add_location/round.svg';
export { default as googleAddLocationAltRound } from './icons/google/add_location_alt/round.svg';
export { default as googleAddModeratorRound } from './icons/google/add_moderator/round.svg';
export { default as googleAddPhotoAlternateRound } from './icons/google/add_photo_alternate/round.svg';
export { default as googleAddReactionRound } from './icons/google/add_reaction/round.svg';
export { default as googleAddRoadRound } from './icons/google/add_road/round.svg';
export { default as googleAddRoadRoundThin } from './icons/google/add_road/round_thin.svg';
export { default as googleAddShoppingCartRound } from './icons/google/add_shopping_cart/round.svg';
export { default as googleAddTaskRound } from './icons/google/add_task/round.svg';
export { default as googleAddToDriveRound } from './icons/google/add_to_drive/round.svg';
export { default as googleAddToDriveRoundThin } from './icons/google/add_to_drive/round_thin.svg';
export { default as googleAddToHomeScreenRound } from './icons/google/add_to_home_screen/round.svg';
export { default as googleAddToPhotosRound } from './icons/google/add_to_photos/round.svg';
export { default as googleAddToQueueRound } from './icons/google/add_to_queue/round.svg';
export { default as googleAddchartRound } from './icons/google/addchart/round.svg';
export { default as googleAdfScannerRound } from './icons/google/adf_scanner/round.svg';
export { default as googleAdfScannerRoundThin } from './icons/google/adf_scanner/round_thin.svg';
export { default as googleAdjustRound } from './icons/google/adjust/round.svg';
export { default as googleAdminPanelSettingsRound } from './icons/google/admin_panel_settings/round.svg';
export { default as googleAdminPanelSettingsRoundThin } from './icons/google/admin_panel_settings/round_thin.svg';
export { default as googleAdsClickRound } from './icons/google/ads_click/round.svg';
export { default as googleAdsClickRoundThin } from './icons/google/ads_click/round_thin.svg';
export { default as googleAgricultureRound } from './icons/google/agriculture/round.svg';
export { default as googleAgricultureRoundThin } from './icons/google/agriculture/round_thin.svg';
export { default as googleAirRound } from './icons/google/air/round.svg';
export { default as googleAirlineSeatFlatRound } from './icons/google/airline_seat_flat/round.svg';
export { default as googleAirlineSeatFlatAngledRound } from './icons/google/airline_seat_flat_angled/round.svg';
export { default as googleAirlineSeatIndividualSuiteRound } from './icons/google/airline_seat_individual_suite/round.svg';
export { default as googleAirlineSeatLegroomExtraRound } from './icons/google/airline_seat_legroom_extra/round.svg';
export { default as googleAirlineSeatLegroomNormalRound } from './icons/google/airline_seat_legroom_normal/round.svg';
export { default as googleAirlineSeatLegroomReducedRound } from './icons/google/airline_seat_legroom_reduced/round.svg';
export { default as googleAirlineSeatReclineExtraRound } from './icons/google/airline_seat_recline_extra/round.svg';
export { default as googleAirlineSeatReclineNormalRound } from './icons/google/airline_seat_recline_normal/round.svg';
export { default as googleAirlineStopsRound } from './icons/google/airline_stops/round.svg';
export { default as googleAirlineStopsRoundThin } from './icons/google/airline_stops/round_thin.svg';
export { default as googleAirlinesRound } from './icons/google/airlines/round.svg';
export { default as googleAirlinesRoundThin } from './icons/google/airlines/round_thin.svg';
export { default as googleAirplaneTicketRound } from './icons/google/airplane_ticket/round.svg';
export { default as googleAirplanemodeActiveRound } from './icons/google/airplanemode_active/round.svg';
export { default as googleAirplanemodeActiveRoundThin } from './icons/google/airplanemode_active/round_thin.svg';
export { default as googleAirplanemodeInactiveRound } from './icons/google/airplanemode_inactive/round.svg';
export { default as googleAirplanemodeInactiveRoundThin } from './icons/google/airplanemode_inactive/round_thin.svg';
export { default as googleAirplayRound } from './icons/google/airplay/round.svg';
export { default as googleAirportShuttleRound } from './icons/google/airport_shuttle/round.svg';
export { default as googleAlarmRound } from './icons/google/alarm/round.svg';
export { default as googleAlarmAddRound } from './icons/google/alarm_add/round.svg';
export { default as googleAlarmOffRound } from './icons/google/alarm_off/round.svg';
export { default as googleAlarmOnRound } from './icons/google/alarm_on/round.svg';
export { default as googleAlbumRound } from './icons/google/album/round.svg';
export { default as googleAlignHorizontalCenterRound } from './icons/google/align_horizontal_center/round.svg';
export { default as googleAlignHorizontalLeftRound } from './icons/google/align_horizontal_left/round.svg';
export { default as googleAlignHorizontalRightRound } from './icons/google/align_horizontal_right/round.svg';
export { default as googleAlignVerticalBottomRound } from './icons/google/align_vertical_bottom/round.svg';
export { default as googleAlignVerticalCenterRound } from './icons/google/align_vertical_center/round.svg';
export { default as googleAlignVerticalTopRound } from './icons/google/align_vertical_top/round.svg';
export { default as googleAllInboxRound } from './icons/google/all_inbox/round.svg';
export { default as googleAllInclusiveRound } from './icons/google/all_inclusive/round.svg';
export { default as googleAllOutRound } from './icons/google/all_out/round.svg';
export { default as googleAltRouteRound } from './icons/google/alt_route/round.svg';
export { default as googleAltRouteRoundThin } from './icons/google/alt_route/round_thin.svg';
export { default as googleAlternateEmailRound } from './icons/google/alternate_email/round.svg';
export { default as googleAmpStoriesRound } from './icons/google/amp_stories/round.svg';
export { default as googleAmpStoriesRoundThin } from './icons/google/amp_stories/round_thin.svg';
export { default as googleAnalyticsRound } from './icons/google/analytics/round.svg';
export { default as googleAnchorRound } from './icons/google/anchor/round.svg';
export { default as googleAndroidRound } from './icons/google/android/round.svg';
export { default as googleAndroidRoundThin } from './icons/google/android/round_thin.svg';
export { default as googleAnimationRound } from './icons/google/animation/round.svg';
export { default as googleAnnouncementRound } from './icons/google/announcement/round.svg';
export { default as googleAodRound } from './icons/google/aod/round.svg';
export { default as googleApartmentRound } from './icons/google/apartment/round.svg';
export { default as googleApartmentRoundThin } from './icons/google/apartment/round_thin.svg';
export { default as googleApiRound } from './icons/google/api/round.svg';
export { default as googleAppBlockingRound } from './icons/google/app_blocking/round.svg';
export { default as googleAppRegistrationRound } from './icons/google/app_registration/round.svg';
export { default as googleAppRegistrationRoundThin } from './icons/google/app_registration/round_thin.svg';
export { default as googleAppSettingsAltRound } from './icons/google/app_settings_alt/round.svg';
export { default as googleAppShortcutRound } from './icons/google/app_shortcut/round.svg';
export { default as googleAppShortcutRoundThin } from './icons/google/app_shortcut/round_thin.svg';
export { default as googleApprovalRound } from './icons/google/approval/round.svg';
export { default as googleAppsRound } from './icons/google/apps/round.svg';
export { default as googleAppsOutageRound } from './icons/google/apps_outage/round.svg';
export { default as googleAppsOutageRoundThin } from './icons/google/apps_outage/round_thin.svg';
export { default as googleArchitectureRound } from './icons/google/architecture/round.svg';
export { default as googleArchitectureRoundThin } from './icons/google/architecture/round_thin.svg';
export { default as googleArchiveRound } from './icons/google/archive/round.svg';
export { default as googleAreaChartRound } from './icons/google/area_chart/round.svg';
export { default as googleAreaChartRoundThin } from './icons/google/area_chart/round_thin.svg';
export { default as googleArrowBackRound } from './icons/google/arrow_back/round.svg';
export { default as googleArrowBackIosRound } from './icons/google/arrow_back_ios/round.svg';
export { default as googleArrowBackIosNewRound } from './icons/google/arrow_back_ios_new/round.svg';
export { default as googleArrowBackIosNewRoundThin } from './icons/google/arrow_back_ios_new/round_thin.svg';
export { default as googleArrowCircleDownRound } from './icons/google/arrow_circle_down/round.svg';
export { default as googleArrowCircleDownRoundThin } from './icons/google/arrow_circle_down/round_thin.svg';
export { default as googleArrowCircleLeftRound } from './icons/google/arrow_circle_left/round.svg';
export { default as googleArrowCircleLeftRoundThin } from './icons/google/arrow_circle_left/round_thin.svg';
export { default as googleArrowCircleRightRound } from './icons/google/arrow_circle_right/round.svg';
export { default as googleArrowCircleRightRoundThin } from './icons/google/arrow_circle_right/round_thin.svg';
export { default as googleArrowCircleUpRound } from './icons/google/arrow_circle_up/round.svg';
export { default as googleArrowCircleUpRoundThin } from './icons/google/arrow_circle_up/round_thin.svg';
export { default as googleArrowDownwardRound } from './icons/google/arrow_downward/round.svg';
export { default as googleArrowDropDownRound } from './icons/google/arrow_drop_down/round.svg';
export { default as googleArrowDropDownCircleRound } from './icons/google/arrow_drop_down_circle/round.svg';
export { default as googleArrowDropUpRound } from './icons/google/arrow_drop_up/round.svg';
export { default as googleArrowForwardRound } from './icons/google/arrow_forward/round.svg';
export { default as googleArrowForwardIosRound } from './icons/google/arrow_forward_ios/round.svg';
export { default as googleArrowForwardIosRoundThin } from './icons/google/arrow_forward_ios/round_thin.svg';
export { default as googleArrowLeftRound } from './icons/google/arrow_left/round.svg';
export { default as googleArrowOutwardRound } from './icons/google/arrow_outward/round.svg';
export { default as googleArrowOutwardRoundThin } from './icons/google/arrow_outward/round_thin.svg';
export { default as googleArrowRightRound } from './icons/google/arrow_right/round.svg';
export { default as googleArrowRightAltRound } from './icons/google/arrow_right_alt/round.svg';
export { default as googleArrowUpwardRound } from './icons/google/arrow_upward/round.svg';
export { default as googleArtTrackRound } from './icons/google/art_track/round.svg';
export { default as googleArticleRound } from './icons/google/article/round.svg';
export { default as googleAspectRatioRound } from './icons/google/aspect_ratio/round.svg';
export { default as googleAssessmentRound } from './icons/google/assessment/round.svg';
export { default as googleAssignmentRound } from './icons/google/assignment/round.svg';
export { default as googleAssignmentIndRound } from './icons/google/assignment_ind/round.svg';
export { default as googleAssignmentLateRound } from './icons/google/assignment_late/round.svg';
export { default as googleAssignmentReturnRound } from './icons/google/assignment_return/round.svg';
export { default as googleAssignmentReturnedRound } from './icons/google/assignment_returned/round.svg';
export { default as googleAssignmentTurnedInRound } from './icons/google/assignment_turned_in/round.svg';
export { default as googleAssistWalkerRound } from './icons/google/assist_walker/round.svg';
export { default as googleAssistWalkerRoundThin } from './icons/google/assist_walker/round_thin.svg';
export { default as googleAssistantRound } from './icons/google/assistant/round.svg';
export { default as googleAssistantDirectionRound } from './icons/google/assistant_direction/round.svg';
export { default as googleAssistantPhotoRound } from './icons/google/assistant_photo/round.svg';
export { default as googleAssuredWorkloadRound } from './icons/google/assured_workload/round.svg';
export { default as googleAssuredWorkloadRoundThin } from './icons/google/assured_workload/round_thin.svg';
export { default as googleAtmRound } from './icons/google/atm/round.svg';
export { default as googleAttachEmailRound } from './icons/google/attach_email/round.svg';
export { default as googleAttachEmailRoundThin } from './icons/google/attach_email/round_thin.svg';
export { default as googleAttachFileRound } from './icons/google/attach_file/round.svg';
export { default as googleAttachMoneyRound } from './icons/google/attach_money/round.svg';
export { default as googleAttachmentRound } from './icons/google/attachment/round.svg';
export { default as googleAttractionsRound } from './icons/google/attractions/round.svg';
export { default as googleAttractionsRoundThin } from './icons/google/attractions/round_thin.svg';
export { default as googleAttributionRound } from './icons/google/attribution/round.svg';
export { default as googleAudioFileRound } from './icons/google/audio_file/round.svg';
export { default as googleAudioFileRoundThin } from './icons/google/audio_file/round_thin.svg';
export { default as googleAudiotrackRound } from './icons/google/audiotrack/round.svg';
export { default as googleAutoAwesomeRound } from './icons/google/auto_awesome/round.svg';
export { default as googleAutoAwesomeMosaicRound } from './icons/google/auto_awesome_mosaic/round.svg';
export { default as googleAutoAwesomeMotionRound } from './icons/google/auto_awesome_motion/round.svg';
export { default as googleAutoDeleteRound } from './icons/google/auto_delete/round.svg';
export { default as googleAutoDeleteRoundThin } from './icons/google/auto_delete/round_thin.svg';
export { default as googleAutoFixHighRound } from './icons/google/auto_fix_high/round.svg';
export { default as googleAutoFixNormalRound } from './icons/google/auto_fix_normal/round.svg';
export { default as googleAutoFixOffRound } from './icons/google/auto_fix_off/round.svg';
export { default as googleAutoGraphRound } from './icons/google/auto_graph/round.svg';
export { default as googleAutoGraphRoundThin } from './icons/google/auto_graph/round_thin.svg';
export { default as googleAutoModeRound } from './icons/google/auto_mode/round.svg';
export { default as googleAutoModeRoundThin } from './icons/google/auto_mode/round_thin.svg';
export { default as googleAutoStoriesRound } from './icons/google/auto_stories/round.svg';
export { default as googleAutofpsSelectRound } from './icons/google/autofps_select/round.svg';
export { default as googleAutorenewRound } from './icons/google/autorenew/round.svg';
export { default as googleAvTimerRound } from './icons/google/av_timer/round.svg';
export { default as googleBabyChangingStationRound } from './icons/google/baby_changing_station/round.svg';
export { default as googleBackHandRound } from './icons/google/back_hand/round.svg';
export { default as googleBackHandRoundThin } from './icons/google/back_hand/round_thin.svg';
export { default as googleBackpackRound } from './icons/google/backpack/round.svg';
export { default as googleBackspaceRound } from './icons/google/backspace/round.svg';
export { default as googleBackupRound } from './icons/google/backup/round.svg';
export { default as googleBackupTableRound } from './icons/google/backup_table/round.svg';
export { default as googleBackupTableRoundThin } from './icons/google/backup_table/round_thin.svg';
export { default as googleBadgeRound } from './icons/google/badge/round.svg';
export { default as googleBadgeRoundThin } from './icons/google/badge/round_thin.svg';
export { default as googleBakeryDiningRound } from './icons/google/bakery_dining/round.svg';
export { default as googleBakeryDiningRoundThin } from './icons/google/bakery_dining/round_thin.svg';
export { default as googleBalanceRound } from './icons/google/balance/round.svg';
export { default as googleBalanceRoundThin } from './icons/google/balance/round_thin.svg';
export { default as googleBalconyRound } from './icons/google/balcony/round.svg';
export { default as googleBalconyRoundThin } from './icons/google/balcony/round_thin.svg';
export { default as googleBallotRound } from './icons/google/ballot/round.svg';
export { default as googleBarChartRound } from './icons/google/bar_chart/round.svg';
export { default as googleBarChartRoundThin } from './icons/google/bar_chart/round_thin.svg';
export { default as googleBatchPredictionRound } from './icons/google/batch_prediction/round.svg';
export { default as googleBatchPredictionRoundThin } from './icons/google/batch_prediction/round_thin.svg';
export { default as googleBathroomRound } from './icons/google/bathroom/round.svg';
export { default as googleBathtubRound } from './icons/google/bathtub/round.svg';
export { default as googleBathtubRoundThin } from './icons/google/bathtub/round_thin.svg';
export { default as googleBattery0BarRound } from './icons/google/battery_0_bar/round.svg';
export { default as googleBattery0BarRoundThin } from './icons/google/battery_0_bar/round_thin.svg';
export { default as googleBattery1BarRound } from './icons/google/battery_1_bar/round.svg';
export { default as googleBattery1BarRoundThin } from './icons/google/battery_1_bar/round_thin.svg';
export { default as googleBattery2BarRound } from './icons/google/battery_2_bar/round.svg';
export { default as googleBattery2BarRoundThin } from './icons/google/battery_2_bar/round_thin.svg';
export { default as googleBattery3BarRound } from './icons/google/battery_3_bar/round.svg';
export { default as googleBattery3BarRoundThin } from './icons/google/battery_3_bar/round_thin.svg';
export { default as googleBattery4BarRound } from './icons/google/battery_4_bar/round.svg';
export { default as googleBattery4BarRoundThin } from './icons/google/battery_4_bar/round_thin.svg';
export { default as googleBattery5BarRound } from './icons/google/battery_5_bar/round.svg';
export { default as googleBattery5BarRoundThin } from './icons/google/battery_5_bar/round_thin.svg';
export { default as googleBattery6BarRound } from './icons/google/battery_6_bar/round.svg';
export { default as googleBattery6BarRoundThin } from './icons/google/battery_6_bar/round_thin.svg';
export { default as googleBatteryAlertRound } from './icons/google/battery_alert/round.svg';
export { default as googleBatteryChargingFullRound } from './icons/google/battery_charging_full/round.svg';
export { default as googleBatteryFullRound } from './icons/google/battery_full/round.svg';
export { default as googleBatterySaverRound } from './icons/google/battery_saver/round.svg';
export { default as googleBatteryStdRound } from './icons/google/battery_std/round.svg';
export { default as googleBatteryUnknownRound } from './icons/google/battery_unknown/round.svg';
export { default as googleBeachAccessRound } from './icons/google/beach_access/round.svg';
export { default as googleBedRound } from './icons/google/bed/round.svg';
export { default as googleBedroomBabyRound } from './icons/google/bedroom_baby/round.svg';
export { default as googleBedroomChildRound } from './icons/google/bedroom_child/round.svg';
export { default as googleBedroomParentRound } from './icons/google/bedroom_parent/round.svg';
export { default as googleBedtimeRound } from './icons/google/bedtime/round.svg';
export { default as googleBedtimeRoundThin } from './icons/google/bedtime/round_thin.svg';
export { default as googleBedtimeOffRound } from './icons/google/bedtime_off/round.svg';
export { default as googleBedtimeOffRoundThin } from './icons/google/bedtime_off/round_thin.svg';
export { default as googleBeenhereRound } from './icons/google/beenhere/round.svg';
export { default as googleBentoRound } from './icons/google/bento/round.svg';
export { default as googleBikeScooterRound } from './icons/google/bike_scooter/round.svg';
export { default as googleBikeScooterRoundThin } from './icons/google/bike_scooter/round_thin.svg';
export { default as googleBiotechRound } from './icons/google/biotech/round.svg';
export { default as googleBiotechRoundThin } from './icons/google/biotech/round_thin.svg';
export { default as googleBlenderRound } from './icons/google/blender/round.svg';
export { default as googleBlindRound } from './icons/google/blind/round.svg';
export { default as googleBlindRoundThin } from './icons/google/blind/round_thin.svg';
export { default as googleBlindsRound } from './icons/google/blinds/round.svg';
export { default as googleBlindsRoundThin } from './icons/google/blinds/round_thin.svg';
export { default as googleBlindsClosedRound } from './icons/google/blinds_closed/round.svg';
export { default as googleBlindsClosedRoundThin } from './icons/google/blinds_closed/round_thin.svg';
export { default as googleBlockRound } from './icons/google/block/round.svg';
export { default as googleBloodtypeRound } from './icons/google/bloodtype/round.svg';
export { default as googleBluetoothRound } from './icons/google/bluetooth/round.svg';
export { default as googleBluetoothAudioRound } from './icons/google/bluetooth_audio/round.svg';
export { default as googleBluetoothConnectedRound } from './icons/google/bluetooth_connected/round.svg';
export { default as googleBluetoothDisabledRound } from './icons/google/bluetooth_disabled/round.svg';
export { default as googleBluetoothDriveRound } from './icons/google/bluetooth_drive/round.svg';
export { default as googleBluetoothSearchingRound } from './icons/google/bluetooth_searching/round.svg';
export { default as googleBlurCircularRound } from './icons/google/blur_circular/round.svg';
export { default as googleBlurLinearRound } from './icons/google/blur_linear/round.svg';
export { default as googleBlurOffRound } from './icons/google/blur_off/round.svg';
export { default as googleBlurOnRound } from './icons/google/blur_on/round.svg';
export { default as googleBoltRound } from './icons/google/bolt/round.svg';
export { default as googleBookRound } from './icons/google/book/round.svg';
export { default as googleBookOnlineRound } from './icons/google/book_online/round.svg';
export { default as googleBookmarkRound } from './icons/google/bookmark/round.svg';
export { default as googleBookmarkAddRound } from './icons/google/bookmark_add/round.svg';
export { default as googleBookmarkAddRoundThin } from './icons/google/bookmark_add/round_thin.svg';
export { default as googleBookmarkAddedRound } from './icons/google/bookmark_added/round.svg';
export { default as googleBookmarkBorderRound } from './icons/google/bookmark_border/round.svg';
export { default as googleBookmarkRemoveRound } from './icons/google/bookmark_remove/round.svg';
export { default as googleBookmarkRemoveRoundThin } from './icons/google/bookmark_remove/round_thin.svg';
export { default as googleBookmarksRound } from './icons/google/bookmarks/round.svg';
export { default as googleBorderAllRound } from './icons/google/border_all/round.svg';
export { default as googleBorderBottomRound } from './icons/google/border_bottom/round.svg';
export { default as googleBorderClearRound } from './icons/google/border_clear/round.svg';
export { default as googleBorderColorRound } from './icons/google/border_color/round.svg';
export { default as googleBorderHorizontalRound } from './icons/google/border_horizontal/round.svg';
export { default as googleBorderInnerRound } from './icons/google/border_inner/round.svg';
export { default as googleBorderLeftRound } from './icons/google/border_left/round.svg';
export { default as googleBorderOuterRound } from './icons/google/border_outer/round.svg';
export { default as googleBorderRightRound } from './icons/google/border_right/round.svg';
export { default as googleBorderStyleRound } from './icons/google/border_style/round.svg';
export { default as googleBorderTopRound } from './icons/google/border_top/round.svg';
export { default as googleBorderVerticalRound } from './icons/google/border_vertical/round.svg';
export { default as googleBoyRound } from './icons/google/boy/round.svg';
export { default as googleBoyRoundThin } from './icons/google/boy/round_thin.svg';
export { default as googleBrandingWatermarkRound } from './icons/google/branding_watermark/round.svg';
export { default as googleBreakfastDiningRound } from './icons/google/breakfast_dining/round.svg';
export { default as googleBreakfastDiningRoundThin } from './icons/google/breakfast_dining/round_thin.svg';
export { default as googleBrightness1Round } from './icons/google/brightness_1/round.svg';
export { default as googleBrightness2Round } from './icons/google/brightness_2/round.svg';
export { default as googleBrightness3Round } from './icons/google/brightness_3/round.svg';
export { default as googleBrightness4Round } from './icons/google/brightness_4/round.svg';
export { default as googleBrightness5Round } from './icons/google/brightness_5/round.svg';
export { default as googleBrightness6Round } from './icons/google/brightness_6/round.svg';
export { default as googleBrightness7Round } from './icons/google/brightness_7/round.svg';
export { default as googleBrightnessAutoRound } from './icons/google/brightness_auto/round.svg';
export { default as googleBrightnessHighRound } from './icons/google/brightness_high/round.svg';
export { default as googleBrightnessLowRound } from './icons/google/brightness_low/round.svg';
export { default as googleBrightnessMediumRound } from './icons/google/brightness_medium/round.svg';
export { default as googleBroadcastOnHomeRound } from './icons/google/broadcast_on_home/round.svg';
export { default as googleBroadcastOnHomeRoundThin } from './icons/google/broadcast_on_home/round_thin.svg';
export { default as googleBroadcastOnPersonalRound } from './icons/google/broadcast_on_personal/round.svg';
export { default as googleBroadcastOnPersonalRoundThin } from './icons/google/broadcast_on_personal/round_thin.svg';
export { default as googleBrokenImageRound } from './icons/google/broken_image/round.svg';
export { default as googleBrowseGalleryRound } from './icons/google/browse_gallery/round.svg';
export { default as googleBrowseGalleryRoundThin } from './icons/google/browse_gallery/round_thin.svg';
export { default as googleBrowserNotSupportedRound } from './icons/google/browser_not_supported/round.svg';
export { default as googleBrowserNotSupportedRoundThin } from './icons/google/browser_not_supported/round_thin.svg';
export { default as googleBrowserUpdatedRound } from './icons/google/browser_updated/round.svg';
export { default as googleBrowserUpdatedRoundThin } from './icons/google/browser_updated/round_thin.svg';
export { default as googleBrunchDiningRound } from './icons/google/brunch_dining/round.svg';
export { default as googleBrunchDiningRoundThin } from './icons/google/brunch_dining/round_thin.svg';
export { default as googleBrushRound } from './icons/google/brush/round.svg';
export { default as googleBubbleChartRound } from './icons/google/bubble_chart/round.svg';
export { default as googleBugReportRound } from './icons/google/bug_report/round.svg';
export { default as googleBuildRound } from './icons/google/build/round.svg';
export { default as googleBuildCircleRound } from './icons/google/build_circle/round.svg';
export { default as googleBuildCircleRoundThin } from './icons/google/build_circle/round_thin.svg';
export { default as googleBungalowRound } from './icons/google/bungalow/round.svg';
export { default as googleBungalowRoundThin } from './icons/google/bungalow/round_thin.svg';
export { default as googleBurstModeRound } from './icons/google/burst_mode/round.svg';
export { default as googleBusAlertRound } from './icons/google/bus_alert/round.svg';
export { default as googleBusinessRound } from './icons/google/business/round.svg';
export { default as googleBusinessCenterRound } from './icons/google/business_center/round.svg';
export { default as googleCabinRound } from './icons/google/cabin/round.svg';
export { default as googleCabinRoundThin } from './icons/google/cabin/round_thin.svg';
export { default as googleCableRound } from './icons/google/cable/round.svg';
export { default as googleCachedRound } from './icons/google/cached/round.svg';
export { default as googleCakeRound } from './icons/google/cake/round.svg';
export { default as googleCalculateRound } from './icons/google/calculate/round.svg';
export { default as googleCalculateRoundThin } from './icons/google/calculate/round_thin.svg';
export { default as googleCalendarMonthRound } from './icons/google/calendar_month/round.svg';
export { default as googleCalendarMonthRoundThin } from './icons/google/calendar_month/round_thin.svg';
export { default as googleCalendarTodayRound } from './icons/google/calendar_today/round.svg';
export { default as googleCalendarViewDayRound } from './icons/google/calendar_view_day/round.svg';
export { default as googleCalendarViewMonthRound } from './icons/google/calendar_view_month/round.svg';
export { default as googleCalendarViewWeekRound } from './icons/google/calendar_view_week/round.svg';
export { default as googleCallRound } from './icons/google/call/round.svg';
export { default as googleCallEndRound } from './icons/google/call_end/round.svg';
export { default as googleCallMadeRound } from './icons/google/call_made/round.svg';
export { default as googleCallMergeRound } from './icons/google/call_merge/round.svg';
export { default as googleCallMissedRound } from './icons/google/call_missed/round.svg';
export { default as googleCallMissedOutgoingRound } from './icons/google/call_missed_outgoing/round.svg';
export { default as googleCallReceivedRound } from './icons/google/call_received/round.svg';
export { default as googleCallSplitRound } from './icons/google/call_split/round.svg';
export { default as googleCallToActionRound } from './icons/google/call_to_action/round.svg';
export { default as googleCameraRound } from './icons/google/camera/round.svg';
export { default as googleCameraAltRound } from './icons/google/camera_alt/round.svg';
export { default as googleCameraEnhanceRound } from './icons/google/camera_enhance/round.svg';
export { default as googleCameraFrontRound } from './icons/google/camera_front/round.svg';
export { default as googleCameraIndoorRound } from './icons/google/camera_indoor/round.svg';
export { default as googleCameraOutdoorRound } from './icons/google/camera_outdoor/round.svg';
export { default as googleCameraRearRound } from './icons/google/camera_rear/round.svg';
export { default as googleCameraRollRound } from './icons/google/camera_roll/round.svg';
export { default as googleCameraswitchRound } from './icons/google/cameraswitch/round.svg';
export { default as googleCampaignRound } from './icons/google/campaign/round.svg';
export { default as googleCancelRound } from './icons/google/cancel/round.svg';
export { default as googleCancelPresentationRound } from './icons/google/cancel_presentation/round.svg';
export { default as googleCancelScheduleSendRound } from './icons/google/cancel_schedule_send/round.svg';
export { default as googleCancelScheduleSendRoundThin } from './icons/google/cancel_schedule_send/round_thin.svg';
export { default as googleCandlestickChartRound } from './icons/google/candlestick_chart/round.svg';
export { default as googleCandlestickChartRoundThin } from './icons/google/candlestick_chart/round_thin.svg';
export { default as googleCarCrashRound } from './icons/google/car_crash/round.svg';
export { default as googleCarCrashRoundThin } from './icons/google/car_crash/round_thin.svg';
export { default as googleCarRentalRound } from './icons/google/car_rental/round.svg';
export { default as googleCarRentalRoundThin } from './icons/google/car_rental/round_thin.svg';
export { default as googleCarRepairRound } from './icons/google/car_repair/round.svg';
export { default as googleCarRepairRoundThin } from './icons/google/car_repair/round_thin.svg';
export { default as googleCardGiftcardRound } from './icons/google/card_giftcard/round.svg';
export { default as googleCardMembershipRound } from './icons/google/card_membership/round.svg';
export { default as googleCardTravelRound } from './icons/google/card_travel/round.svg';
export { default as googleCarpenterRound } from './icons/google/carpenter/round.svg';
export { default as googleCasesRound } from './icons/google/cases/round.svg';
export { default as googleCasinoRound } from './icons/google/casino/round.svg';
export { default as googleCastRound } from './icons/google/cast/round.svg';
export { default as googleCastConnectedRound } from './icons/google/cast_connected/round.svg';
export { default as googleCastForEducationRound } from './icons/google/cast_for_education/round.svg';
export { default as googleCastleRound } from './icons/google/castle/round.svg';
export { default as googleCastleRoundThin } from './icons/google/castle/round_thin.svg';
export { default as googleCatchingPokemonRound } from './icons/google/catching_pokemon/round.svg';
export { default as googleCatchingPokemonRoundThin } from './icons/google/catching_pokemon/round_thin.svg';
export { default as googleCategoryRound } from './icons/google/category/round.svg';
export { default as googleCelebrationRound } from './icons/google/celebration/round.svg';
export { default as googleCelebrationRoundThin } from './icons/google/celebration/round_thin.svg';
export { default as googleCellTowerRound } from './icons/google/cell_tower/round.svg';
export { default as googleCellTowerRoundThin } from './icons/google/cell_tower/round_thin.svg';
export { default as googleCellWifiRound } from './icons/google/cell_wifi/round.svg';
export { default as googleCenterFocusStrongRound } from './icons/google/center_focus_strong/round.svg';
export { default as googleCenterFocusWeakRound } from './icons/google/center_focus_weak/round.svg';
export { default as googleChairRound } from './icons/google/chair/round.svg';
export { default as googleChairAltRound } from './icons/google/chair_alt/round.svg';
export { default as googleChaletRound } from './icons/google/chalet/round.svg';
export { default as googleChaletRoundThin } from './icons/google/chalet/round_thin.svg';
export { default as googleChangeCircleRound } from './icons/google/change_circle/round.svg';
export { default as googleChangeCircleRoundThin } from './icons/google/change_circle/round_thin.svg';
export { default as googleChangeHistoryRound } from './icons/google/change_history/round.svg';
export { default as googleChargingStationRound } from './icons/google/charging_station/round.svg';
export { default as googleChatRound } from './icons/google/chat/round.svg';
export { default as googleChatBubbleRound } from './icons/google/chat_bubble/round.svg';
export { default as googleChatBubbleOutlineRound } from './icons/google/chat_bubble_outline/round.svg';
export { default as googleCheckRound } from './icons/google/check/round.svg';
export { default as googleCheckBoxRound } from './icons/google/check_box/round.svg';
export { default as googleCheckBoxOutlineBlankRound } from './icons/google/check_box_outline_blank/round.svg';
export { default as googleCheckCircleRound } from './icons/google/check_circle/round.svg';
export { default as googleCheckCircleOutlineRound } from './icons/google/check_circle_outline/round.svg';
export { default as googleChecklistRound } from './icons/google/checklist/round.svg';
export { default as googleChecklistRoundThin } from './icons/google/checklist/round_thin.svg';
export { default as googleChecklistRtlRound } from './icons/google/checklist_rtl/round.svg';
export { default as googleChecklistRtlRoundThin } from './icons/google/checklist_rtl/round_thin.svg';
export { default as googleCheckroomRound } from './icons/google/checkroom/round.svg';
export { default as googleChevronLeftRound } from './icons/google/chevron_left/round.svg';
export { default as googleChevronRightRound } from './icons/google/chevron_right/round.svg';
export { default as googleChildCareRound } from './icons/google/child_care/round.svg';
export { default as googleChildFriendlyRound } from './icons/google/child_friendly/round.svg';
export { default as googleChromeReaderModeRound } from './icons/google/chrome_reader_mode/round.svg';
export { default as googleChurchRound } from './icons/google/church/round.svg';
export { default as googleChurchRoundThin } from './icons/google/church/round_thin.svg';
export { default as googleCircleRound } from './icons/google/circle/round.svg';
export { default as googleCircleNotificationsRound } from './icons/google/circle_notifications/round.svg';
export { default as googleClassRound } from './icons/google/class/round.svg';
export { default as googleCleanHandsRound } from './icons/google/clean_hands/round.svg';
export { default as googleCleaningServicesRound } from './icons/google/cleaning_services/round.svg';
export { default as googleCleaningServicesRoundThin } from './icons/google/cleaning_services/round_thin.svg';
export { default as googleClearRound } from './icons/google/clear/round.svg';
export { default as googleClearAllRound } from './icons/google/clear_all/round.svg';
export { default as googleCloseRound } from './icons/google/close/round.svg';
export { default as googleCloseFullscreenRound } from './icons/google/close_fullscreen/round.svg';
export { default as googleClosedCaptionRound } from './icons/google/closed_caption/round.svg';
export { default as googleClosedCaptionDisabledRound } from './icons/google/closed_caption_disabled/round.svg';
export { default as googleClosedCaptionOffRound } from './icons/google/closed_caption_off/round.svg';
export { default as googleCloudRound } from './icons/google/cloud/round.svg';
export { default as googleCloudCircleRound } from './icons/google/cloud_circle/round.svg';
export { default as googleCloudDoneRound } from './icons/google/cloud_done/round.svg';
export { default as googleCloudDownloadRound } from './icons/google/cloud_download/round.svg';
export { default as googleCloudOffRound } from './icons/google/cloud_off/round.svg';
export { default as googleCloudQueueRound } from './icons/google/cloud_queue/round.svg';
export { default as googleCloudSyncRound } from './icons/google/cloud_sync/round.svg';
export { default as googleCloudSyncRoundThin } from './icons/google/cloud_sync/round_thin.svg';
export { default as googleCloudUploadRound } from './icons/google/cloud_upload/round.svg';
export { default as googleCo2Round } from './icons/google/co2/round.svg';
export { default as googleCo2RoundThin } from './icons/google/co2/round_thin.svg';
export { default as googleCoPresentRound } from './icons/google/co_present/round.svg';
export { default as googleCoPresentRoundThin } from './icons/google/co_present/round_thin.svg';
export { default as googleCodeRound } from './icons/google/code/round.svg';
export { default as googleCodeOffRound } from './icons/google/code_off/round.svg';
export { default as googleCodeOffRoundThin } from './icons/google/code_off/round_thin.svg';
export { default as googleCoffeeRound } from './icons/google/coffee/round.svg';
export { default as googleCoffeeMakerRound } from './icons/google/coffee_maker/round.svg';
export { default as googleCollectionsRound } from './icons/google/collections/round.svg';
export { default as googleCollectionsBookmarkRound } from './icons/google/collections_bookmark/round.svg';
export { default as googleColorLensRound } from './icons/google/color_lens/round.svg';
export { default as googleColorizeRound } from './icons/google/colorize/round.svg';
export { default as googleCommentRound } from './icons/google/comment/round.svg';
export { default as googleCommentBankRound } from './icons/google/comment_bank/round.svg';
export { default as googleCommentBankRoundThin } from './icons/google/comment_bank/round_thin.svg';
export { default as googleCommentsDisabledRound } from './icons/google/comments_disabled/round.svg';
export { default as googleCommentsDisabledRoundThin } from './icons/google/comments_disabled/round_thin.svg';
export { default as googleCommitRound } from './icons/google/commit/round.svg';
export { default as googleCommitRoundThin } from './icons/google/commit/round_thin.svg';
export { default as googleCommuteRound } from './icons/google/commute/round.svg';
export { default as googleCompareRound } from './icons/google/compare/round.svg';
export { default as googleCompareArrowsRound } from './icons/google/compare_arrows/round.svg';
export { default as googleCompassCalibrationRound } from './icons/google/compass_calibration/round.svg';
export { default as googleCompostRound } from './icons/google/compost/round.svg';
export { default as googleCompostRoundThin } from './icons/google/compost/round_thin.svg';
export { default as googleCompressRound } from './icons/google/compress/round.svg';
export { default as googleComputerRound } from './icons/google/computer/round.svg';
export { default as googleConfirmationNumberRound } from './icons/google/confirmation_number/round.svg';
export { default as googleConnectWithoutContactRound } from './icons/google/connect_without_contact/round.svg';
export { default as googleConnectedTvRound } from './icons/google/connected_tv/round.svg';
export { default as googleConnectingAirportsRound } from './icons/google/connecting_airports/round.svg';
export { default as googleConnectingAirportsRoundThin } from './icons/google/connecting_airports/round_thin.svg';
export { default as googleConstructionRound } from './icons/google/construction/round.svg';
export { default as googleConstructionRoundThin } from './icons/google/construction/round_thin.svg';
export { default as googleContactEmergencyRound } from './icons/google/contact_emergency/round.svg';
export { default as googleContactEmergencyRoundThin } from './icons/google/contact_emergency/round_thin.svg';
export { default as googleContactMailRound } from './icons/google/contact_mail/round.svg';
export { default as googleContactPageRound } from './icons/google/contact_page/round.svg';
export { default as googleContactPhoneRound } from './icons/google/contact_phone/round.svg';
export { default as googleContactSupportRound } from './icons/google/contact_support/round.svg';
export { default as googleContactlessRound } from './icons/google/contactless/round.svg';
export { default as googleContactlessRoundThin } from './icons/google/contactless/round_thin.svg';
export { default as googleContactsRound } from './icons/google/contacts/round.svg';
export { default as googleContentCopyRound } from './icons/google/content_copy/round.svg';
export { default as googleContentCutRound } from './icons/google/content_cut/round.svg';
export { default as googleContentPasteRound } from './icons/google/content_paste/round.svg';
export { default as googleContentPasteGoRound } from './icons/google/content_paste_go/round.svg';
export { default as googleContentPasteGoRoundThin } from './icons/google/content_paste_go/round_thin.svg';
export { default as googleContentPasteOffRound } from './icons/google/content_paste_off/round.svg';
export { default as googleContentPasteOffRoundThin } from './icons/google/content_paste_off/round_thin.svg';
export { default as googleContentPasteSearchRound } from './icons/google/content_paste_search/round.svg';
export { default as googleContentPasteSearchRoundThin } from './icons/google/content_paste_search/round_thin.svg';
export { default as googleContrastRound } from './icons/google/contrast/round.svg';
export { default as googleContrastRoundThin } from './icons/google/contrast/round_thin.svg';
export { default as googleControlCameraRound } from './icons/google/control_camera/round.svg';
export { default as googleControlPointRound } from './icons/google/control_point/round.svg';
export { default as googleControlPointDuplicateRound } from './icons/google/control_point_duplicate/round.svg';
export { default as googleCookieRound } from './icons/google/cookie/round.svg';
export { default as googleCookieRoundThin } from './icons/google/cookie/round_thin.svg';
export { default as googleCopyAllRound } from './icons/google/copy_all/round.svg';
export { default as googleCopyAllRoundThin } from './icons/google/copy_all/round_thin.svg';
export { default as googleCopyrightRound } from './icons/google/copyright/round.svg';
export { default as googleCoronavirusRound } from './icons/google/coronavirus/round.svg';
export { default as googleCorporateFareRound } from './icons/google/corporate_fare/round.svg';
export { default as googleCottageRound } from './icons/google/cottage/round.svg';
export { default as googleCottageRoundThin } from './icons/google/cottage/round_thin.svg';
export { default as googleCountertopsRound } from './icons/google/countertops/round.svg';
export { default as googleCreateRound } from './icons/google/create/round.svg';
export { default as googleCreateNewFolderRound } from './icons/google/create_new_folder/round.svg';
export { default as googleCreditCardRound } from './icons/google/credit_card/round.svg';
export { default as googleCreditCardOffRound } from './icons/google/credit_card_off/round.svg';
export { default as googleCreditCardOffRoundThin } from './icons/google/credit_card_off/round_thin.svg';
export { default as googleCreditScoreRound } from './icons/google/credit_score/round.svg';
export { default as googleCribRound } from './icons/google/crib/round.svg';
export { default as googleCribRoundThin } from './icons/google/crib/round_thin.svg';
export { default as googleCrisisAlertRound } from './icons/google/crisis_alert/round.svg';
export { default as googleCrisisAlertRoundThin } from './icons/google/crisis_alert/round_thin.svg';
export { default as googleCropRound } from './icons/google/crop/round.svg';
export { default as googleCrop169Round } from './icons/google/crop_16_9/round.svg';
export { default as googleCrop169RoundThin } from './icons/google/crop_16_9/round_thin.svg';
export { default as googleCrop32Round } from './icons/google/crop_3_2/round.svg';
export { default as googleCrop32RoundThin } from './icons/google/crop_3_2/round_thin.svg';
export { default as googleCrop54Round } from './icons/google/crop_5_4/round.svg';
export { default as googleCrop54RoundThin } from './icons/google/crop_5_4/round_thin.svg';
export { default as googleCrop75Round } from './icons/google/crop_7_5/round.svg';
export { default as googleCrop75RoundThin } from './icons/google/crop_7_5/round_thin.svg';
export { default as googleCropDinRound } from './icons/google/crop_din/round.svg';
export { default as googleCropFreeRound } from './icons/google/crop_free/round.svg';
export { default as googleCropLandscapeRound } from './icons/google/crop_landscape/round.svg';
export { default as googleCropOriginalRound } from './icons/google/crop_original/round.svg';
export { default as googleCropPortraitRound } from './icons/google/crop_portrait/round.svg';
export { default as googleCropRotateRound } from './icons/google/crop_rotate/round.svg';
export { default as googleCropSquareRound } from './icons/google/crop_square/round.svg';
export { default as googleCrueltyFreeRound } from './icons/google/cruelty_free/round.svg';
export { default as googleCrueltyFreeRoundThin } from './icons/google/cruelty_free/round_thin.svg';
export { default as googleCssRound } from './icons/google/css/round.svg';
export { default as googleCssRoundThin } from './icons/google/css/round_thin.svg';
export { default as googleCurrencyBitcoinRound } from './icons/google/currency_bitcoin/round.svg';
export { default as googleCurrencyBitcoinRoundThin } from './icons/google/currency_bitcoin/round_thin.svg';
export { default as googleCurrencyExchangeRound } from './icons/google/currency_exchange/round.svg';
export { default as googleCurrencyExchangeRoundThin } from './icons/google/currency_exchange/round_thin.svg';
export { default as googleCurrencyFrancRound } from './icons/google/currency_franc/round.svg';
export { default as googleCurrencyFrancRoundThin } from './icons/google/currency_franc/round_thin.svg';
export { default as googleCurrencyLiraRound } from './icons/google/currency_lira/round.svg';
export { default as googleCurrencyLiraRoundThin } from './icons/google/currency_lira/round_thin.svg';
export { default as googleCurrencyPoundRound } from './icons/google/currency_pound/round.svg';
export { default as googleCurrencyPoundRoundThin } from './icons/google/currency_pound/round_thin.svg';
export { default as googleCurrencyRubleRound } from './icons/google/currency_ruble/round.svg';
export { default as googleCurrencyRubleRoundThin } from './icons/google/currency_ruble/round_thin.svg';
export { default as googleCurrencyRupeeRound } from './icons/google/currency_rupee/round.svg';
export { default as googleCurrencyRupeeRoundThin } from './icons/google/currency_rupee/round_thin.svg';
export { default as googleCurrencyYenRound } from './icons/google/currency_yen/round.svg';
export { default as googleCurrencyYenRoundThin } from './icons/google/currency_yen/round_thin.svg';
export { default as googleCurrencyYuanRound } from './icons/google/currency_yuan/round.svg';
export { default as googleCurrencyYuanRoundThin } from './icons/google/currency_yuan/round_thin.svg';
export { default as googleCurtainsRound } from './icons/google/curtains/round.svg';
export { default as googleCurtainsRoundThin } from './icons/google/curtains/round_thin.svg';
export { default as googleCurtainsClosedRound } from './icons/google/curtains_closed/round.svg';
export { default as googleCurtainsClosedRoundThin } from './icons/google/curtains_closed/round_thin.svg';
export { default as googleCycloneRound } from './icons/google/cyclone/round.svg';
export { default as googleCycloneRoundThin } from './icons/google/cyclone/round_thin.svg';
export { default as googleDangerousRound } from './icons/google/dangerous/round.svg';
export { default as googleDangerousRoundThin } from './icons/google/dangerous/round_thin.svg';
export { default as googleDarkModeRound } from './icons/google/dark_mode/round.svg';
export { default as googleDarkModeRoundThin } from './icons/google/dark_mode/round_thin.svg';
export { default as googleDashboardRound } from './icons/google/dashboard/round.svg';
export { default as googleDashboardCustomizeRound } from './icons/google/dashboard_customize/round.svg';
export { default as googleDataArrayRound } from './icons/google/data_array/round.svg';
export { default as googleDataArrayRoundThin } from './icons/google/data_array/round_thin.svg';
export { default as googleDataExplorationRound } from './icons/google/data_exploration/round.svg';
export { default as googleDataExplorationRoundThin } from './icons/google/data_exploration/round_thin.svg';
export { default as googleDataObjectRound } from './icons/google/data_object/round.svg';
export { default as googleDataObjectRoundThin } from './icons/google/data_object/round_thin.svg';
export { default as googleDataSaverOffRound } from './icons/google/data_saver_off/round.svg';
export { default as googleDataSaverOnRound } from './icons/google/data_saver_on/round.svg';
export { default as googleDataThresholdingRound } from './icons/google/data_thresholding/round.svg';
export { default as googleDataThresholdingRoundThin } from './icons/google/data_thresholding/round_thin.svg';
export { default as googleDataUsageRound } from './icons/google/data_usage/round.svg';
export { default as googleDatasetRound } from './icons/google/dataset/round.svg';
export { default as googleDatasetRoundThin } from './icons/google/dataset/round_thin.svg';
export { default as googleDatasetLinkedRound } from './icons/google/dataset_linked/round.svg';
export { default as googleDatasetLinkedRoundThin } from './icons/google/dataset_linked/round_thin.svg';
export { default as googleDateRangeRound } from './icons/google/date_range/round.svg';
export { default as googleDeblurRound } from './icons/google/deblur/round.svg';
export { default as googleDeblurRoundThin } from './icons/google/deblur/round_thin.svg';
export { default as googleDeckRound } from './icons/google/deck/round.svg';
export { default as googleDeckRoundThin } from './icons/google/deck/round_thin.svg';
export { default as googleDehazeRound } from './icons/google/dehaze/round.svg';
export { default as googleDeleteRound } from './icons/google/delete/round.svg';
export { default as googleDeleteForeverRound } from './icons/google/delete_forever/round.svg';
export { default as googleDeleteOutlineRound } from './icons/google/delete_outline/round.svg';
export { default as googleDeleteSweepRound } from './icons/google/delete_sweep/round.svg';
export { default as googleDeliveryDiningRound } from './icons/google/delivery_dining/round.svg';
export { default as googleDeliveryDiningRoundThin } from './icons/google/delivery_dining/round_thin.svg';
export { default as googleDensityLargeRound } from './icons/google/density_large/round.svg';
export { default as googleDensityLargeRoundThin } from './icons/google/density_large/round_thin.svg';
export { default as googleDensityMediumRound } from './icons/google/density_medium/round.svg';
export { default as googleDensityMediumRoundThin } from './icons/google/density_medium/round_thin.svg';
export { default as googleDensitySmallRound } from './icons/google/density_small/round.svg';
export { default as googleDensitySmallRoundThin } from './icons/google/density_small/round_thin.svg';
export { default as googleDepartureBoardRound } from './icons/google/departure_board/round.svg';
export { default as googleDescriptionRound } from './icons/google/description/round.svg';
export { default as googleDeselectRound } from './icons/google/deselect/round.svg';
export { default as googleDeselectRoundThin } from './icons/google/deselect/round_thin.svg';
export { default as googleDesignServicesRound } from './icons/google/design_services/round.svg';
export { default as googleDesignServicesRoundThin } from './icons/google/design_services/round_thin.svg';
export { default as googleDeskRound } from './icons/google/desk/round.svg';
export { default as googleDeskRoundThin } from './icons/google/desk/round_thin.svg';
export { default as googleDesktopAccessDisabledRound } from './icons/google/desktop_access_disabled/round.svg';
export { default as googleDesktopMacRound } from './icons/google/desktop_mac/round.svg';
export { default as googleDesktopWindowsRound } from './icons/google/desktop_windows/round.svg';
export { default as googleDetailsRound } from './icons/google/details/round.svg';
export { default as googleDeveloperBoardRound } from './icons/google/developer_board/round.svg';
export { default as googleDeveloperBoardOffRound } from './icons/google/developer_board_off/round.svg';
export { default as googleDeveloperBoardOffRoundThin } from './icons/google/developer_board_off/round_thin.svg';
export { default as googleDeveloperModeRound } from './icons/google/developer_mode/round.svg';
export { default as googleDeviceHubRound } from './icons/google/device_hub/round.svg';
export { default as googleDeviceThermostatRound } from './icons/google/device_thermostat/round.svg';
export { default as googleDeviceUnknownRound } from './icons/google/device_unknown/round.svg';
export { default as googleDevicesRound } from './icons/google/devices/round.svg';
export { default as googleDevicesFoldRound } from './icons/google/devices_fold/round.svg';
export { default as googleDevicesFoldRoundThin } from './icons/google/devices_fold/round_thin.svg';
export { default as googleDevicesOtherRound } from './icons/google/devices_other/round.svg';
export { default as googleDialerSipRound } from './icons/google/dialer_sip/round.svg';
export { default as googleDialpadRound } from './icons/google/dialpad/round.svg';
export { default as googleDiamondRound } from './icons/google/diamond/round.svg';
export { default as googleDiamondRoundThin } from './icons/google/diamond/round_thin.svg';
export { default as googleDifferenceRound } from './icons/google/difference/round.svg';
export { default as googleDifferenceRoundThin } from './icons/google/difference/round_thin.svg';
export { default as googleDiningRound } from './icons/google/dining/round.svg';
export { default as googleDinnerDiningRound } from './icons/google/dinner_dining/round.svg';
export { default as googleDinnerDiningRoundThin } from './icons/google/dinner_dining/round_thin.svg';
export { default as googleDirectionsRound } from './icons/google/directions/round.svg';
export { default as googleDirectionsBikeRound } from './icons/google/directions_bike/round.svg';
export { default as googleDirectionsBoatRound } from './icons/google/directions_boat/round.svg';
export { default as googleDirectionsBoatFilledRound } from './icons/google/directions_boat_filled/round.svg';
export { default as googleDirectionsBusRound } from './icons/google/directions_bus/round.svg';
export { default as googleDirectionsBusFilledRound } from './icons/google/directions_bus_filled/round.svg';
export { default as googleDirectionsCarRound } from './icons/google/directions_car/round.svg';
export { default as googleDirectionsCarFilledRound } from './icons/google/directions_car_filled/round.svg';
export { default as googleDirectionsOffRound } from './icons/google/directions_off/round.svg';
export { default as googleDirectionsRailwayRound } from './icons/google/directions_railway/round.svg';
export { default as googleDirectionsRailwayFilledRound } from './icons/google/directions_railway_filled/round.svg';
export { default as googleDirectionsRunRound } from './icons/google/directions_run/round.svg';
export { default as googleDirectionsSubwayRound } from './icons/google/directions_subway/round.svg';
export { default as googleDirectionsSubwayFilledRound } from './icons/google/directions_subway_filled/round.svg';
export { default as googleDirectionsTransitRound } from './icons/google/directions_transit/round.svg';
export { default as googleDirectionsTransitFilledRound } from './icons/google/directions_transit_filled/round.svg';
export { default as googleDirectionsWalkRound } from './icons/google/directions_walk/round.svg';
export { default as googleDirtyLensRound } from './icons/google/dirty_lens/round.svg';
export { default as googleDisabledByDefaultRound } from './icons/google/disabled_by_default/round.svg';
export { default as googleDisabledVisibleRound } from './icons/google/disabled_visible/round.svg';
export { default as googleDisabledVisibleRoundThin } from './icons/google/disabled_visible/round_thin.svg';
export { default as googleDiscFullRound } from './icons/google/disc_full/round.svg';
export { default as googleDiscountRound } from './icons/google/discount/round.svg';
export { default as googleDiscountRoundThin } from './icons/google/discount/round_thin.svg';
export { default as googleDisplaySettingsRound } from './icons/google/display_settings/round.svg';
export { default as googleDisplaySettingsRoundThin } from './icons/google/display_settings/round_thin.svg';
export { default as googleDiversity1Round } from './icons/google/diversity_1/round.svg';
export { default as googleDiversity1RoundThin } from './icons/google/diversity_1/round_thin.svg';
export { default as googleDiversity2Round } from './icons/google/diversity_2/round.svg';
export { default as googleDiversity2RoundThin } from './icons/google/diversity_2/round_thin.svg';
export { default as googleDiversity3Round } from './icons/google/diversity_3/round.svg';
export { default as googleDiversity3RoundThin } from './icons/google/diversity_3/round_thin.svg';
export { default as googleDnsRound } from './icons/google/dns/round.svg';
export { default as googleDoDisturbRound } from './icons/google/do_disturb/round.svg';
export { default as googleDoDisturbAltRound } from './icons/google/do_disturb_alt/round.svg';
export { default as googleDoDisturbOffRound } from './icons/google/do_disturb_off/round.svg';
export { default as googleDoDisturbOnRound } from './icons/google/do_disturb_on/round.svg';
export { default as googleDoNotDisturbRound } from './icons/google/do_not_disturb/round.svg';
export { default as googleDoNotDisturbAltRound } from './icons/google/do_not_disturb_alt/round.svg';
export { default as googleDoNotDisturbOffRound } from './icons/google/do_not_disturb_off/round.svg';
export { default as googleDoNotDisturbOnRound } from './icons/google/do_not_disturb_on/round.svg';
export { default as googleDoNotDisturbOnTotalSilenceRound } from './icons/google/do_not_disturb_on_total_silence/round.svg';
export { default as googleDoNotStepRound } from './icons/google/do_not_step/round.svg';
export { default as googleDoNotTouchRound } from './icons/google/do_not_touch/round.svg';
export { default as googleDockRound } from './icons/google/dock/round.svg';
export { default as googleDocumentScannerRound } from './icons/google/document_scanner/round.svg';
export { default as googleDocumentScannerRoundThin } from './icons/google/document_scanner/round_thin.svg';
export { default as googleDomainRound } from './icons/google/domain/round.svg';
export { default as googleDomainAddRound } from './icons/google/domain_add/round.svg';
export { default as googleDomainAddRoundThin } from './icons/google/domain_add/round_thin.svg';
export { default as googleDomainDisabledRound } from './icons/google/domain_disabled/round.svg';
export { default as googleDomainVerificationRound } from './icons/google/domain_verification/round.svg';
export { default as googleDomainVerificationRoundThin } from './icons/google/domain_verification/round_thin.svg';
export { default as googleDoneRound } from './icons/google/done/round.svg';
export { default as googleDoneAllRound } from './icons/google/done_all/round.svg';
export { default as googleDoneOutlineRound } from './icons/google/done_outline/round.svg';
export { default as googleDonutLargeRound } from './icons/google/donut_large/round.svg';
export { default as googleDonutSmallRound } from './icons/google/donut_small/round.svg';
export { default as googleDoorBackRound } from './icons/google/door_back/round.svg';
export { default as googleDoorFrontRound } from './icons/google/door_front/round.svg';
export { default as googleDoorSlidingRound } from './icons/google/door_sliding/round.svg';
export { default as googleDoorbellRound } from './icons/google/doorbell/round.svg';
export { default as googleDoubleArrowRound } from './icons/google/double_arrow/round.svg';
export { default as googleDoubleArrowRoundThin } from './icons/google/double_arrow/round_thin.svg';
export { default as googleDownhillSkiingRound } from './icons/google/downhill_skiing/round.svg';
export { default as googleDownhillSkiingRoundThin } from './icons/google/downhill_skiing/round_thin.svg';
export { default as googleDownloadRound } from './icons/google/download/round.svg';
export { default as googleDownloadDoneRound } from './icons/google/download_done/round.svg';
export { default as googleDownloadForOfflineRound } from './icons/google/download_for_offline/round.svg';
export { default as googleDownloadingRound } from './icons/google/downloading/round.svg';
export { default as googleDraftsRound } from './icons/google/drafts/round.svg';
export { default as googleDragHandleRound } from './icons/google/drag_handle/round.svg';
export { default as googleDragIndicatorRound } from './icons/google/drag_indicator/round.svg';
export { default as googleDrawRound } from './icons/google/draw/round.svg';
export { default as googleDrawRoundThin } from './icons/google/draw/round_thin.svg';
export { default as googleDriveEtaRound } from './icons/google/drive_eta/round.svg';
export { default as googleDriveFileMoveRound } from './icons/google/drive_file_move/round.svg';
export { default as googleDriveFileMoveRtlRound } from './icons/google/drive_file_move_rtl/round.svg';
export { default as googleDriveFileMoveRtlRoundThin } from './icons/google/drive_file_move_rtl/round_thin.svg';
export { default as googleDriveFileRenameOutlineRound } from './icons/google/drive_file_rename_outline/round.svg';
export { default as googleDriveFolderUploadRound } from './icons/google/drive_folder_upload/round.svg';
export { default as googleDryRound } from './icons/google/dry/round.svg';
export { default as googleDryCleaningRound } from './icons/google/dry_cleaning/round.svg';
export { default as googleDryCleaningRoundThin } from './icons/google/dry_cleaning/round_thin.svg';
export { default as googleDuoRound } from './icons/google/duo/round.svg';
export { default as googleDvrRound } from './icons/google/dvr/round.svg';
export { default as googleDynamicFeedRound } from './icons/google/dynamic_feed/round.svg';
export { default as googleDynamicFeedRoundThin } from './icons/google/dynamic_feed/round_thin.svg';
export { default as googleDynamicFormRound } from './icons/google/dynamic_form/round.svg';
export { default as googleEMobiledataRound } from './icons/google/e_mobiledata/round.svg';
export { default as googleEarbudsRound } from './icons/google/earbuds/round.svg';
export { default as googleEarbudsBatteryRound } from './icons/google/earbuds_battery/round.svg';
export { default as googleEastRound } from './icons/google/east/round.svg';
export { default as googleEcoRound } from './icons/google/eco/round.svg';
export { default as googleEcoRoundThin } from './icons/google/eco/round_thin.svg';
export { default as googleEdgesensorHighRound } from './icons/google/edgesensor_high/round.svg';
export { default as googleEdgesensorLowRound } from './icons/google/edgesensor_low/round.svg';
export { default as googleEditRound } from './icons/google/edit/round.svg';
export { default as googleEditAttributesRound } from './icons/google/edit_attributes/round.svg';
export { default as googleEditCalendarRound } from './icons/google/edit_calendar/round.svg';
export { default as googleEditCalendarRoundThin } from './icons/google/edit_calendar/round_thin.svg';
export { default as googleEditLocationRound } from './icons/google/edit_location/round.svg';
export { default as googleEditLocationAltRound } from './icons/google/edit_location_alt/round.svg';
export { default as googleEditLocationAltRoundThin } from './icons/google/edit_location_alt/round_thin.svg';
export { default as googleEditNoteRound } from './icons/google/edit_note/round.svg';
export { default as googleEditNoteRoundThin } from './icons/google/edit_note/round_thin.svg';
export { default as googleEditNotificationsRound } from './icons/google/edit_notifications/round.svg';
export { default as googleEditNotificationsRoundThin } from './icons/google/edit_notifications/round_thin.svg';
export { default as googleEditOffRound } from './icons/google/edit_off/round.svg';
export { default as googleEditRoadRound } from './icons/google/edit_road/round.svg';
export { default as googleEditRoadRoundThin } from './icons/google/edit_road/round_thin.svg';
export { default as googleEggRound } from './icons/google/egg/round.svg';
export { default as googleEggRoundThin } from './icons/google/egg/round_thin.svg';
export { default as googleEggAltRound } from './icons/google/egg_alt/round.svg';
export { default as googleEggAltRoundThin } from './icons/google/egg_alt/round_thin.svg';
export { default as googleEjectRound } from './icons/google/eject/round.svg';
export { default as googleElderlyRound } from './icons/google/elderly/round.svg';
export { default as googleElderlyWomanRound } from './icons/google/elderly_woman/round.svg';
export { default as googleElderlyWomanRoundThin } from './icons/google/elderly_woman/round_thin.svg';
export { default as googleElectricBikeRound } from './icons/google/electric_bike/round.svg';
export { default as googleElectricBikeRoundThin } from './icons/google/electric_bike/round_thin.svg';
export { default as googleElectricBoltRound } from './icons/google/electric_bolt/round.svg';
export { default as googleElectricBoltRoundThin } from './icons/google/electric_bolt/round_thin.svg';
export { default as googleElectricCarRound } from './icons/google/electric_car/round.svg';
export { default as googleElectricCarRoundThin } from './icons/google/electric_car/round_thin.svg';
export { default as googleElectricMeterRound } from './icons/google/electric_meter/round.svg';
export { default as googleElectricMeterRoundThin } from './icons/google/electric_meter/round_thin.svg';
export { default as googleElectricMopedRound } from './icons/google/electric_moped/round.svg';
export { default as googleElectricMopedRoundThin } from './icons/google/electric_moped/round_thin.svg';
export { default as googleElectricRickshawRound } from './icons/google/electric_rickshaw/round.svg';
export { default as googleElectricRickshawRoundThin } from './icons/google/electric_rickshaw/round_thin.svg';
export { default as googleElectricScooterRound } from './icons/google/electric_scooter/round.svg';
export { default as googleElectricScooterRoundThin } from './icons/google/electric_scooter/round_thin.svg';
export { default as googleElectricalServicesRound } from './icons/google/electrical_services/round.svg';
export { default as googleElectricalServicesRoundThin } from './icons/google/electrical_services/round_thin.svg';
export { default as googleElevatorRound } from './icons/google/elevator/round.svg';
export { default as googleEmailRound } from './icons/google/email/round.svg';
export { default as googleEmergencyRound } from './icons/google/emergency/round.svg';
export { default as googleEmergencyRoundThin } from './icons/google/emergency/round_thin.svg';
export { default as googleEmergencyRecordingRound } from './icons/google/emergency_recording/round.svg';
export { default as googleEmergencyRecordingRoundThin } from './icons/google/emergency_recording/round_thin.svg';
export { default as googleEmergencyShareRound } from './icons/google/emergency_share/round.svg';
export { default as googleEmergencyShareRoundThin } from './icons/google/emergency_share/round_thin.svg';
export { default as googleEmojiEmotionsRound } from './icons/google/emoji_emotions/round.svg';
export { default as googleEmojiEmotionsRoundThin } from './icons/google/emoji_emotions/round_thin.svg';
export { default as googleEmojiEventsRound } from './icons/google/emoji_events/round.svg';
export { default as googleEmojiEventsRoundThin } from './icons/google/emoji_events/round_thin.svg';
export { default as googleEmojiFlagsRound } from './icons/google/emoji_flags/round.svg';
export { default as googleEmojiFlagsRoundThin } from './icons/google/emoji_flags/round_thin.svg';
export { default as googleEmojiFoodBeverageRound } from './icons/google/emoji_food_beverage/round.svg';
export { default as googleEmojiFoodBeverageRoundThin } from './icons/google/emoji_food_beverage/round_thin.svg';
export { default as googleEmojiNatureRound } from './icons/google/emoji_nature/round.svg';
export { default as googleEmojiNatureRoundThin } from './icons/google/emoji_nature/round_thin.svg';
export { default as googleEmojiObjectsRound } from './icons/google/emoji_objects/round.svg';
export { default as googleEmojiObjectsRoundThin } from './icons/google/emoji_objects/round_thin.svg';
export { default as googleEmojiPeopleRound } from './icons/google/emoji_people/round.svg';
export { default as googleEmojiPeopleRoundThin } from './icons/google/emoji_people/round_thin.svg';
export { default as googleEmojiSymbolsRound } from './icons/google/emoji_symbols/round.svg';
export { default as googleEmojiSymbolsRoundThin } from './icons/google/emoji_symbols/round_thin.svg';
export { default as googleEmojiTransportationRound } from './icons/google/emoji_transportation/round.svg';
export { default as googleEmojiTransportationRoundThin } from './icons/google/emoji_transportation/round_thin.svg';
export { default as googleEnergySavingsLeafRound } from './icons/google/energy_savings_leaf/round.svg';
export { default as googleEnergySavingsLeafRoundThin } from './icons/google/energy_savings_leaf/round_thin.svg';
export { default as googleEngineeringRound } from './icons/google/engineering/round.svg';
export { default as googleEngineeringRoundThin } from './icons/google/engineering/round_thin.svg';
export { default as googleEnhancedEncryptionRound } from './icons/google/enhanced_encryption/round.svg';
export { default as googleEqualizerRound } from './icons/google/equalizer/round.svg';
export { default as googleErrorRound } from './icons/google/error/round.svg';
export { default as googleErrorOutlineRound } from './icons/google/error_outline/round.svg';
export { default as googleEscalatorRound } from './icons/google/escalator/round.svg';
export { default as googleEscalatorWarningRound } from './icons/google/escalator_warning/round.svg';
export { default as googleEuroRound } from './icons/google/euro/round.svg';
export { default as googleEuroRoundThin } from './icons/google/euro/round_thin.svg';
export { default as googleEuroSymbolRound } from './icons/google/euro_symbol/round.svg';
export { default as googleEvStationRound } from './icons/google/ev_station/round.svg';
export { default as googleEventRound } from './icons/google/event/round.svg';
export { default as googleEventAvailableRound } from './icons/google/event_available/round.svg';
export { default as googleEventBusyRound } from './icons/google/event_busy/round.svg';
export { default as googleEventNoteRound } from './icons/google/event_note/round.svg';
export { default as googleEventRepeatRound } from './icons/google/event_repeat/round.svg';
export { default as googleEventRepeatRoundThin } from './icons/google/event_repeat/round_thin.svg';
export { default as googleEventSeatRound } from './icons/google/event_seat/round.svg';
export { default as googleExitToAppRound } from './icons/google/exit_to_app/round.svg';
export { default as googleExpandRound } from './icons/google/expand/round.svg';
export { default as googleExpandCircleDownRound } from './icons/google/expand_circle_down/round.svg';
export { default as googleExpandCircleDownRoundThin } from './icons/google/expand_circle_down/round_thin.svg';
export { default as googleExpandLessRound } from './icons/google/expand_less/round.svg';
export { default as googleExpandMoreRound } from './icons/google/expand_more/round.svg';
export { default as googleExplicitRound } from './icons/google/explicit/round.svg';
export { default as googleExploreRound } from './icons/google/explore/round.svg';
export { default as googleExploreOffRound } from './icons/google/explore_off/round.svg';
export { default as googleExposureRound } from './icons/google/exposure/round.svg';
export { default as googleExposureNeg1Round } from './icons/google/exposure_neg_1/round.svg';
export { default as googleExposureNeg2Round } from './icons/google/exposure_neg_2/round.svg';
export { default as googleExposurePlus1Round } from './icons/google/exposure_plus_1/round.svg';
export { default as googleExposurePlus2Round } from './icons/google/exposure_plus_2/round.svg';
export { default as googleExposureZeroRound } from './icons/google/exposure_zero/round.svg';
export { default as googleExtensionRound } from './icons/google/extension/round.svg';
export { default as googleExtensionOffRound } from './icons/google/extension_off/round.svg';
export { default as googleExtensionOffRoundThin } from './icons/google/extension_off/round_thin.svg';
export { default as googleFaceRound } from './icons/google/face/round.svg';
export { default as googleFace2Round } from './icons/google/face_2/round.svg';
export { default as googleFace2RoundThin } from './icons/google/face_2/round_thin.svg';
export { default as googleFace3Round } from './icons/google/face_3/round.svg';
export { default as googleFace3RoundThin } from './icons/google/face_3/round_thin.svg';
export { default as googleFace4Round } from './icons/google/face_4/round.svg';
export { default as googleFace4RoundThin } from './icons/google/face_4/round_thin.svg';
export { default as googleFace5Round } from './icons/google/face_5/round.svg';
export { default as googleFace5RoundThin } from './icons/google/face_5/round_thin.svg';
export { default as googleFace6Round } from './icons/google/face_6/round.svg';
export { default as googleFace6RoundThin } from './icons/google/face_6/round_thin.svg';
export { default as googleFaceRetouchingNaturalRound } from './icons/google/face_retouching_natural/round.svg';
export { default as googleFaceRetouchingOffRound } from './icons/google/face_retouching_off/round.svg';
export { default as googleFaceUnlockRound } from './icons/google/face_unlock/round.svg';
export { default as googleFacebookRound } from './icons/google/facebook/round.svg';
export { default as googleFactCheckRound } from './icons/google/fact_check/round.svg';
export { default as googleFactCheckRoundThin } from './icons/google/fact_check/round_thin.svg';
export { default as googleFactoryRound } from './icons/google/factory/round.svg';
export { default as googleFactoryRoundThin } from './icons/google/factory/round_thin.svg';
export { default as googleFamilyRestroomRound } from './icons/google/family_restroom/round.svg';
export { default as googleFastForwardRound } from './icons/google/fast_forward/round.svg';
export { default as googleFastRewindRound } from './icons/google/fast_rewind/round.svg';
export { default as googleFastfoodRound } from './icons/google/fastfood/round.svg';
export { default as googleFavoriteRound } from './icons/google/favorite/round.svg';
export { default as googleFavoriteBorderRound } from './icons/google/favorite_border/round.svg';
export { default as googleFaxRound } from './icons/google/fax/round.svg';
export { default as googleFaxRoundThin } from './icons/google/fax/round_thin.svg';
export { default as googleFeaturedPlayListRound } from './icons/google/featured_play_list/round.svg';
export { default as googleFeaturedVideoRound } from './icons/google/featured_video/round.svg';
export { default as googleFeedRound } from './icons/google/feed/round.svg';
export { default as googleFeedbackRound } from './icons/google/feedback/round.svg';
export { default as googleFemaleRound } from './icons/google/female/round.svg';
export { default as googleFemaleRoundThin } from './icons/google/female/round_thin.svg';
export { default as googleFenceRound } from './icons/google/fence/round.svg';
export { default as googleFestivalRound } from './icons/google/festival/round.svg';
export { default as googleFestivalRoundThin } from './icons/google/festival/round_thin.svg';
export { default as googleFiberDvrRound } from './icons/google/fiber_dvr/round.svg';
export { default as googleFiberManualRecordRound } from './icons/google/fiber_manual_record/round.svg';
export { default as googleFiberNewRound } from './icons/google/fiber_new/round.svg';
export { default as googleFiberPinRound } from './icons/google/fiber_pin/round.svg';
export { default as googleFiberSmartRecordRound } from './icons/google/fiber_smart_record/round.svg';
export { default as googleFileCopyRound } from './icons/google/file_copy/round.svg';
export { default as googleFileDownloadRound } from './icons/google/file_download/round.svg';
export { default as googleFileDownloadDoneRound } from './icons/google/file_download_done/round.svg';
export { default as googleFileDownloadOffRound } from './icons/google/file_download_off/round.svg';
export { default as googleFileDownloadOffRoundThin } from './icons/google/file_download_off/round_thin.svg';
export { default as googleFileOpenRound } from './icons/google/file_open/round.svg';
export { default as googleFileOpenRoundThin } from './icons/google/file_open/round_thin.svg';
export { default as googleFilePresentRound } from './icons/google/file_present/round.svg';
export { default as googleFileUploadRound } from './icons/google/file_upload/round.svg';
export { default as googleFilterRound } from './icons/google/filter/round.svg';
export { default as googleFilter1Round } from './icons/google/filter_1/round.svg';
export { default as googleFilter2Round } from './icons/google/filter_2/round.svg';
export { default as googleFilter3Round } from './icons/google/filter_3/round.svg';
export { default as googleFilter4Round } from './icons/google/filter_4/round.svg';
export { default as googleFilter5Round } from './icons/google/filter_5/round.svg';
export { default as googleFilter6Round } from './icons/google/filter_6/round.svg';
export { default as googleFilter7Round } from './icons/google/filter_7/round.svg';
export { default as googleFilter8Round } from './icons/google/filter_8/round.svg';
export { default as googleFilter9Round } from './icons/google/filter_9/round.svg';
export { default as googleFilter9PlusRound } from './icons/google/filter_9_plus/round.svg';
export { default as googleFilterAltRound } from './icons/google/filter_alt/round.svg';
export { default as googleFilterAltOffRound } from './icons/google/filter_alt_off/round.svg';
export { default as googleFilterAltOffRoundThin } from './icons/google/filter_alt_off/round_thin.svg';
export { default as googleFilterBAndWRound } from './icons/google/filter_b_and_w/round.svg';
export { default as googleFilterCenterFocusRound } from './icons/google/filter_center_focus/round.svg';
export { default as googleFilterDramaRound } from './icons/google/filter_drama/round.svg';
export { default as googleFilterFramesRound } from './icons/google/filter_frames/round.svg';
export { default as googleFilterHdrRound } from './icons/google/filter_hdr/round.svg';
export { default as googleFilterListRound } from './icons/google/filter_list/round.svg';
export { default as googleFilterListOffRound } from './icons/google/filter_list_off/round.svg';
export { default as googleFilterListOffRoundThin } from './icons/google/filter_list_off/round_thin.svg';
export { default as googleFilterNoneRound } from './icons/google/filter_none/round.svg';
export { default as googleFilterTiltShiftRound } from './icons/google/filter_tilt_shift/round.svg';
export { default as googleFilterVintageRound } from './icons/google/filter_vintage/round.svg';
export { default as googleFindInPageRound } from './icons/google/find_in_page/round.svg';
export { default as googleFindReplaceRound } from './icons/google/find_replace/round.svg';
export { default as googleFingerprintRound } from './icons/google/fingerprint/round.svg';
export { default as googleFireExtinguisherRound } from './icons/google/fire_extinguisher/round.svg';
export { default as googleFireHydrantAltRound } from './icons/google/fire_hydrant_alt/round.svg';
export { default as googleFireHydrantAltRoundThin } from './icons/google/fire_hydrant_alt/round_thin.svg';
export { default as googleFireTruckRound } from './icons/google/fire_truck/round.svg';
export { default as googleFireTruckRoundThin } from './icons/google/fire_truck/round_thin.svg';
export { default as googleFireplaceRound } from './icons/google/fireplace/round.svg';
export { default as googleFireplaceRoundThin } from './icons/google/fireplace/round_thin.svg';
export { default as googleFirstPageRound } from './icons/google/first_page/round.svg';
export { default as googleFitScreenRound } from './icons/google/fit_screen/round.svg';
export { default as googleFitbitRound } from './icons/google/fitbit/round.svg';
export { default as googleFitbitRoundThin } from './icons/google/fitbit/round_thin.svg';
export { default as googleFitnessCenterRound } from './icons/google/fitness_center/round.svg';
export { default as googleFlagRound } from './icons/google/flag/round.svg';
export { default as googleFlagCircleRound } from './icons/google/flag_circle/round.svg';
export { default as googleFlagCircleRoundThin } from './icons/google/flag_circle/round_thin.svg';