-
Notifications
You must be signed in to change notification settings - Fork 1
/
alarmclock.html
2778 lines (2761 loc) · 189 KB
/
alarmclock.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Alarm, clock, deadline, general, office, time, time management icon - Free download</title>
<meta name="description" content="Download this alarm, clock, deadline, general, office, time, time management icon in filled outline style from the Mixed category. No signup required.">
<meta property="og:site_name" content="Iconfinder">
<meta property="og:url" content="https://www.iconfinder.com/icons/2530808/alarm_clock_deadline_general_office_time_time_management_icon">
<meta property="fb:admins" content="655647081">
<meta property="fb:app_id" content="319532633444">
<meta name="twitter:url" content="https://www.iconfinder.com/icons/2530808/alarm_clock_deadline_general_office_time_time_management_icon">
<meta name="twitter:site" content="@iconfinder"><meta property="og:type" content="product">
<meta name="author" content="BomSymbols .">
<meta name="twitter:card" content="summary">
<meta property="og:title" content="Alarm, clock, deadline, general, office, time, time management icon - Free download">
<meta property="og:image" content="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_44-512.png">
<meta property="og:description" content="Download this alarm, clock, deadline, general, office, time, time management icon in filled outline style from the Mixed category. No signup required."><meta name="twitter:title" content="Alarm, clock, deadline, general, office, time, time management icon - Free download">
<meta name="twitter:description" content="Download this alarm, clock, deadline, general, office, time, time management icon in filled outline style from the Mixed category. No signup required.">
<meta name="twitter:image" content="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_44-512.png">
<meta name="p:domain_verify" content="2a0a57e888afb6d20f872dfaec9dc8a6" />
<meta name="pinterest-rich-pin" content="true">
<link rel="search" type="application/opensearchdescription+xml" title="Iconfinder" href="https://www.iconfinder.com/iconfinder.xml">
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "Iconfinder",
"url": "https://www.iconfinder.com",
"logo": "https://www.iconfinder.com/static/img/favicons/favicon-194x194.png?bf2736d2f8",
"sameAs": [
"https://www.facebook.com/iconfinder",
"https://www.dribbble.com/team-iconfinder",
"https://www.twitter.com/iconfinder",
"https://www.instagram.com/iconfinder"
]
}
</script>
<script type="0b4ec5beb81b86f262683ade-text/javascript">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-W63R6FQV');</script>
<link rel="apple-touch-icon" href="https://www.iconfinder.com/static/img/favicons/apple-touch-icon.png?3186e39e61">
<link rel="apple-touch-icon" sizes="57x57" href="https://www.iconfinder.com/static/img/favicons/apple-touch-icon-57x57.png?17a978e9ef">
<link rel="apple-touch-icon" sizes="60x60" href="https://www.iconfinder.com/static/img/favicons/apple-touch-icon-60x60.png?80576d4deb">
<link rel="apple-touch-icon" sizes="72x72" href="https://www.iconfinder.com/static/img/favicons/apple-touch-icon-72x72.png?de5f9d2bb6">
<link rel="apple-touch-icon" sizes="76x76" href="https://www.iconfinder.com/static/img/favicons/apple-touch-icon-76x76.png?98c6aa972f">
<link rel="apple-touch-icon" sizes="114x114" href="https://www.iconfinder.com/static/img/favicons/apple-touch-icon-114x114.png?f3b9217265">
<link rel="apple-touch-icon" sizes="120x120" href="https://www.iconfinder.com/static/img/favicons/apple-touch-icon-120x120.png?57ee515801">
<link rel="apple-touch-icon" sizes="144x144" href="https://www.iconfinder.com/static/img/favicons/apple-touch-icon-144x144.png?06d1c4d65d">
<link rel="apple-touch-icon" sizes="152x152" href="https://www.iconfinder.com/static/img/favicons/apple-touch-icon-152x152.png?55b24b983f">
<link rel="apple-touch-icon" sizes="180x180" href="https://www.iconfinder.com/static/img/favicons/apple-touch-icon-180x180.png?3186e39e61">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.iconfinder.com/static/img/favicons/favicon-32x32.png?87b2a5c3aa">
<link rel="icon" type="image/png" sizes="192x192" href="https://www.iconfinder.com/static/img/favicons/android-chrome-192x192.png?beec5a6406">
<link rel="icon" type="image/png" sizes="96x96" href="https://www.iconfinder.com/static/img/favicons/favicon-96x96.png?ea0174d544">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.iconfinder.com/static/img/favicons/favicon-16x16.png?65f75976b2">
<link rel="manifest" href="https://www.iconfinder.com/static/img/favicons/manifest.json?3d517ac343">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="https://www.iconfinder.com/static/img/favicons/mstile-144x144.png?d599ba2955">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="https://www.iconfinder.com/static/css/vendor.css?c4e0426b95">
<link rel="stylesheet" href="https://www.iconfinder.com/static/css/iconfinder.css?fb28740ad2">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap" rel="stylesheet">
<script src="https://www.iconfinder.com/static/js/vendor.js?966ac43abf" crossorigin type="0b4ec5beb81b86f262683ade-text/javascript"></script>
<script src="https://www.iconfinder.com/static/js/templates.js?66e292f883" crossorigin type="0b4ec5beb81b86f262683ade-text/javascript"></script>
<script src="https://www.iconfinder.com/static/js/iconfinder.js?89c38e48d0" crossorigin type="0b4ec5beb81b86f262683ade-text/javascript"></script>
<link rel="stylesheet" href="https://www.iconfinder.com/static/css/carbon_ads.css?05f6ece950">
<script type="0b4ec5beb81b86f262683ade-text/javascript">
window.RECAPTCHA_PUBLIC_KEY = '6Ld4AEYUAAAAANb2jxigv9IMeiX0hwlnc50sQybr';
window.DEBOUNCE_PUBLIC_KEY = 'public_Z0ljT0N1ZGhnblpORUtzRHdCSEFvUT09';
window.SOCIAL_AUTH_FACEBOOK_KEY = '319532633444';
window.SOCIAL_AUTH_FACEBOOK_URL = '/user/ajax/login/facebook?redirect_to=';
</script>
<script type="0b4ec5beb81b86f262683ade-text/javascript">
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-634584-2', 'auto');
ga('set', 'Signed in', 'False');
ga('set', 'Pro subscriber', 'False');
ga('send', 'pageview');
</script>
<script async src="https://www.google-analytics.com/analytics.js" type="0b4ec5beb81b86f262683ade-text/javascript"></script>
<link rel="stylesheet" href="https://www.iconfinder.com/static/css/icon_details.css?232d098b7d">
<link href="https://www.iconfinder.com/static/css/monetization.css?13230eeba6" rel="stylesheet">
<script src="//m.servedby-buysellads.com/monetization.js" type="0b4ec5beb81b86f262683ade-text/javascript"></script>
<link rel="stylesheet" href="https://www.iconfinder.com/static/css/istock.css?94ac493daa">
<script src="https://www.iconfinder.com/static/js/istock.js?f2dc92b3f6" defer type="0b4ec5beb81b86f262683ade-text/javascript"></script>
<script type="0b4ec5beb81b86f262683ade-text/javascript">
ga('send', 'event', 'Icon', 'View details', 'Non-premium', 2530808);
</script>
</head>
<body class=" preview-white">
<nav class="navbar navbar-expand-lg navbar-light bg-white ">
<a href="/" class="navbar-brand px-2 d-xl-none">
<img src="https://www.iconfinder.com/static/img/logo/black_small.svg?eb4fe0853e" width="28" height="28" class="d-inline-block align-top" alt="Iconfinder">
</a>
<a href="/" class="navbar-brand d-none px-2 d-xl-block">
<img src="https://www.iconfinder.com/static/img/logo/black.svg?7cfe2038c8" width="168" height="28" class="d-inline-block align-top" alt="Iconfinder">
</a>
<form action="/search" class="search-form form-autocomplete ">
<div class="input-group ">
<input id="search-input" class="form-control border-0 autocomplete" type="text" name="q" placeholder="Search 6M icons, 3D and illustrations..." value data-history="search_history" autocomplete="off" maxlength="256" data-url="/ajax/autocomplete" onfocus="if (!window.__cfRLUnblockHandlers) return false; this.setSelectionRange(this.value.length, this.value.length);" data-placeholder="Search 6M icons, 3D and illustrations..." data-cf-modified-0b4ec5beb81b86f262683ade->
<div class="input-group-append index-selector ">
<button type="button" class="btn btn-dropdown px-0" data-toggle="dropdown" data-offset>
<span>Icons</span>
<svg width="18" height="18" class="ui-icon align-text-bottom text-dark">
<use xlink:href="/static/icons.svg?450f041b8d#chevron-down"></use>
</svg>
</button>
<div class="dropdown-menu dropdown-menu-right">
<a href="/search/" class="dropdown-item ">Icons</a>
<a href="/search/illustrations" class="dropdown-item ">Illustrations</a>
<a href="/search/3d-illustrations" class="dropdown-item ">3D illustrations</a>
<a href="/search/stickers" class="dropdown-item ">Stickers</a>
</div>
</div>
<div class="input-group-append">
<button type="submit" class="btn btn-submit">
<svg width="24" height="24" class="ui-icon align-middle text-dark">
<use xlink:href="/static/icons.svg?450f041b8d#magnify"></use>
</svg>
</button>
</div>
</div>
</form>
<button class="navbar-toggler border-0 px-0 collapsed" type="button" data-toggle="collapse" data-target="#mainNavigation">
<span class="icon-bar top-bar"></span>
<span class="icon-bar middle-bar"></span>
<span class="icon-bar bottom-bar"></span>
</button>
<div class="collapse navbar-collapse" id="mainNavigation">
<ul class="navbar-nav mr-auto explore-menu d-none d-lg-flex">
<li class="nav-item dropdown">
<div class="dropdown-menu animated" style="width: 360px;">
<div class="row no-gutters">
<div class="col-md-6">
<h6 class="dropdown-header text-uppercase">Icon sets</h6>
<a href="/icon-sets/featured" class="dropdown-item">Staff picks</a>
<a href="/icon-sets/newest" class="dropdown-item">Newest icon sets</a>
<a href="/icon-sets/popular" class="dropdown-item">Popular icon sets</a>
<a href="/categories" class="dropdown-item">Categories</a>
<a href="/styles" class="dropdown-item">Styles</a>
<div class="dropdown-divider"></div>
<a href="/custom-icon-design" class="dropdown-item">Custom icons</a>
</div>
<div class="col-md-6">
<h6 class="dropdown-header text-uppercase">Designers</h6>
<a href="/designers" class="dropdown-item">Top selling</a>
<a href="/designers?sort=followers" class="dropdown-item">Most followers</a>
<a href="/designers?sort=newest" class="dropdown-item">Newest designers</a>
<a href="/designers?sort=icons" class="dropdown-item">Most icons</a>
<a href="/designers?sort=following" class="dropdown-item">Following</a>
<div class="dropdown-divider"></div>
<a href="/api-solution" class="dropdown-item">Iconfinder API</a>
</div>
</div>
</div>
</li>
</ul>
<ul class="navbar-nav text-lg-right">
<li class="nav-item ">
<a href="#" class="nav-link" data-remote="/commerce/ajax/cart/" data-modal="cart/_modal">
<svg width="16" height="16" class="ui-icon align-text-bottom text-muted">
<use xlink:href="/static/icons.svg?450f041b8d#cart"></use>
</svg>
<span class="d-lg-none">Cart</span>
</a>
</li>
<li class="nav-item dropdown" data-load="/user/navigation" data-method="replace">
<a href="#" class="d-inline-block loading-placeholder loading-animated rounded-pill" style="width: 150px; position: relative; top: 6px;"> </a>
</li>
</ul>
</div>
</nav>
<div class="border-bottom">
<div class="native-js"></div>
<script type="0b4ec5beb81b86f262683ade-text/javascript">
$(function(){
if(typeof _bsa !== 'undefined' && _bsa) {
_bsa.init('custom', 'CK7DL5QW', 'placement:iconfindercom', { target: '.native-js', template: `
<a href="##link##" class="native-banner" style="background: linear-gradient(-30deg, ##backgroundColor##E5, ##backgroundColor##E5 45%, ##backgroundColor## 45%) #fff;">
<div class="native-main">
<img class="native-img" img src="##logo##">
<div class="native-details" style="color: ##textColor##">
<span class="native-company">Sponsored by ##company##</span>
<span class="native-desc">##description##</span>
</div>
<span class="native-cta" style="color: ##ctaTextColor##; background-color: ##ctaBackgroundColor##;">##callToAction##</span>
</div>
</a>`, }
);
}
// Show the fallback banner if the placeholder is empty
setTimeout(function() {
if ($('.native-js').is(':empty')) {
$('.native-js-fallback, .native-js').toggleClass('d-none');
}
}, 1000);
});
</script>
<a href="https://istockphoto.6q33.net/c/1412025/258824/4205?sharedid=ADP" class="native-js-fallback bg-danger d-none text-white" data-tracking="iStock|Click|BSA Fallback banner">
<img src="https://www.iconfinder.com/static/img/istock/istock-logo-white.svg?111cdeb308" alt height="26">
<div class="p-2 py-md-0">
<h6 class="mb-0 text-uppercase">Sponsored by iStock</h6>
<p class="mb-0">Find the perfect icons & illustrations to complete any project on iStock</p>
</div>
<button class="btn btn-sm btn-dark mx-2 px-3 shadow text-uppercase">Search now</button>
</a>
</div>
<header class="bg-white py-2 d-none d-md-block border-bottom">
<div class="container-fluid">
<div class="row">
<div class="col">
<button type="button" class="btn btn-sm text-muted float-right" data-requires="user" data-modal="icons/_flag" data-id="2530808">
<svg width="16" height="16" class="ui-icon align-text-bottom text-muted">
<use xlink:href="/static/icons.svg?450f041b8d#flag"></use>
</svg>
Give feedback
</button>
<div class="text-muted pt-1 d-none d-md-block text-truncate">
<a href="/" class="text-secondary">
Iconfinder
</a>
<svg width="16" height="16" class="ui-icon align-text-bottom text-muted">
<use xlink:href="/static/icons.svg?450f041b8d#chevron-right"></use>
</svg>
<a href="/mixed-icons" class="text-secondary">
Mixed
</a>
<svg width="16" height="16" class="ui-icon align-text-bottom text-muted">
<use xlink:href="/static/icons.svg?450f041b8d#chevron-right"></use>
</svg>
<a href="/search/icons?family=freebies-9" class="text-secondary">
Freebies
</a>
<svg width="16" height="16" class="ui-icon align-text-bottom text-muted">
<use xlink:href="/static/icons.svg?450f041b8d#chevron-right"></use>
</svg>
<a href="/iconsets/general-office" class="text-secondary">
General Office
</a>
<svg width="16" height="16" class="ui-icon align-text-bottom text-muted">
<use xlink:href="/static/icons.svg?450f041b8d#chevron-right"></use>
</svg>
Alarm, clock, deadline, general, office, time, time management icon
</div>
</div>
</div>
</div>
</header>
<main class="bg-white border-bottom">
<div class="container-fluid container-max-width">
<div id="icon-details-preview-full" class="icon-details shortcut-keys-active" data-asset-id="2530808">
<div class="row no-gutters">
<div class="col-xl-8 col-lg-7">
<div class="h-100 position-relative pb-4">
<div class="row">
<div class="col-sm-8">
<h1 class="h2 my-4 text-dark text-truncate">
Alarm, clock, deadline icon
</h1>
</div>
<div class="col-sm-4">
<div class="d-none d-sm-block text-sm-right py-3 px-3">
</div>
</div>
</div>
<div class="mb-5 d-flex justify-content-center align-items-center">
<div class="icon-preview-img d-flex align-items-center" id="preview-image-2530808" style="min-height: 520px;">
<img src="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_44-512.png" srcset="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_44-1024.png 2x" alt="Alarm, clock, deadline, general, office, time, time management icon - Free download" class="d-block mx-auto">
</div>
</div>
<div class="d-flex justify-content-center align-items-center">
<button class="btn btn-light px-3" data-modal="remote" data-remote="/icons/2530808/edit" data-tracking="Icon|Open in Editor|2530808" data-requires="user">
<svg width="16" height="16" class="ui-icon align-text-bottom text-text-dark">
<use xlink:href="/static/icons.svg?450f041b8d#color"></use>
</svg>
Open in color editor
</button>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-5 col-details border-md-left">
<div class="py-5">
<style>
.animated-checkmark {
stroke: white;
stroke-width: 2;
stroke-dasharray: 48;
stroke-dashoffset: 48;
animation: stroke .3s cubic-bezier(0.650, 0.000, 0.450, 1.000) forwards, scale .3s ease-in-out .1s both;
}
@keyframes stroke {
100% {
stroke-dashoffset: 0;
}
}
@keyframes scale {
0%,
100% {
transform: none;
}
50% {
transform: scale3d(1.4, 1.4, 1);
}
}
.btn-copy {
-webkit-transition: background-color 150ms ease-out, color 100ms ease-out;
-moz-transition: background-color 150ms ease-out, color 100ms ease-out;
-o-transition: background-color 150ms ease-out, color 100ms ease-out;
-ms-transition: background-color 150ms ease-out, color 100ms ease-out;
transition: background-color 150ms ease-out, color 100ms ease-out;
}
</style>
<div class="icon-download">
<div class="panel-spacer mb-2">
<div class="clearfix">
<span class="float-left pr-1">
<svg width="24" height="24" class="ui-icon align-text-bottom text-muted">
<use xlink:href="/static/icons.svg?450f041b8d#check-decagram"></use>
</svg>
</span>
<h5 class="mb-1">Free icon</h5>
</div>
<p class="mb-2">
You will spend 0 credits when downloading with
<a href target="_blank" rel="noopener" data-license="Free for commercial use (Include link to authors website)">Free for commercial use (Include link to authors website)</a>
</p>
</div>
<ul class="nav nav-tabs border-bottom mb-4 mt-4">
<li class="nav-item">
<a href="#png" class="nav-link px-3 font-weight-bold active" data-toggle="tab">PNG</a>
</li>
<li class="nav-item">
<a href="#svg" class="nav-link px-3 font-weight-bold " data-toggle="tab">SVG</a>
</li>
<li class="nav-item">
<a href="#other" class="nav-link px-3 font-weight-bold " data-toggle="tab">Other</a>
</li>
<li class="nav-item ml-auto pt-1">
<a href="#" class="d-inline-block pt-1 text-secondary formats-help-link small">Help with formats</a>
<template class="formats-help-template">
<h6>PNG</h6>
<p>The PNG format is widely supported and works best with presentations and web design. It is not vectorized which makes it unsuitable for enlarging after download or for print use.</p>
<h6>SVG</h6>
<p>The SVG format is vectorized which makes it editable and widely supported by design software and web browsers. SVGs can be scaled to any size without loss in quality, which also makes them suitable for print purposes.</p>
<h6>Other</h6>
<p>For other, more specific purposes, the icon is also available for download in formats such as
AI
ICO
ICNS
</p>
</template>
</li>
</ul>
<div class="panel-spacer">
<div class="tab-content">
<div class="tab-pane active" id="png">
<div class="nav mb-4">
<a href="#png-16" class="btn btn-sm btn-light mb-2 mr-2 px-2 extra-size d-none" data-toggle="tab">
16 px
</a>
<a href="#png-20" class="btn btn-sm btn-light mb-2 mr-2 px-2 extra-size d-none" data-toggle="tab">
20 px
</a>
<a href="#png-24" class="btn btn-sm btn-light mb-2 mr-2 px-2 extra-size d-none" data-toggle="tab">
24 px
</a>
<a href="#png-32" class="btn btn-sm btn-light mb-2 mr-2 px-2 extra-size d-none" data-toggle="tab">
32 px
</a>
<a href="#png-48" class="btn btn-sm btn-light mb-2 mr-2 px-2 " data-toggle="tab">
48 px
</a>
<a href="#png-64" class="btn btn-sm btn-light mb-2 mr-2 px-2 " data-toggle="tab">
64 px
</a>
<a href="#png-128" class="btn btn-sm btn-light mb-2 mr-2 px-2 " data-toggle="tab">
128 px
</a>
<a href="#png-256" class="btn btn-sm btn-light mb-2 mr-2 px-2 " data-toggle="tab">
256 px
</a>
<a href="#png-512" class="btn btn-sm btn-light mb-2 mr-2 px-2 active " data-toggle="tab">
512 px
</a>
<a href="#png-1024" class="btn btn-sm btn-light mb-2 mr-2 px-2 extra-size d-none" data-toggle="tab">
1024 px
</a>
<a href="#png-2048" class="btn btn-sm btn-light mb-2 mr-2 px-2 extra-size d-none" data-toggle="tab">
2048 px
</a>
<a href="#png-4096" class="btn btn-sm btn-light mb-2 mr-2 px-2 extra-size d-none" data-toggle="tab">
4096 px
</a>
<button class="btn btn-sm mb-2 mr-2 font-weight-normal extra-size" data-toggle="toggle" data-target=".extra-size">More sizes</button>
</div>
<div class="tab-content">
<div class="tab-pane " id="png-16"><a href="/icons/2530808/download/png/16" class="btn btn-block btn-primary py-3 download-link-1-2530808-16-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="16">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in PNG <span class="opacity-50">16 px </span> <kbd class="ml-2 kbd-light">P</kbd></span></a><a href="/icons/2530808/download/png/16" class="btn btn-block btn-outline-dark btn-sm mt-3 py-2 btn-copy download-link-1-2530808-16-True" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="16" data-copydata="true"><span class="copytext">
Copy PNG to clipboard <kbd class="text-secondary ml-2">Alt + P</kbd>
</span>
<span class="copytext-load d-none">
<svg class="float-left" width="22" height="22" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="white">
<g fill="none" fill-rule="evenodd" stroke-width="2">
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="0s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="0s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="-0.9s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="-0.9s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
</g>
</svg>
Please wait ...
</span>
<span class="copytext-success d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#checkmark"></use>
</svg>
Copied!
</span>
<span class="copytext-error d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#danger-x"></use>
</svg>
Failed
</span></a>
<a href="/icons/2530808/download/png/16" class="btn btn-block btn-sm mt-3 download-link-1-2530808-16-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="16" data-base64="true">Copy Base64 PNG</a>
</div>
<div class="tab-pane " id="png-20"><a href="/icons/2530808/download/png/20" class="btn btn-block btn-primary py-3 download-link-1-2530808-20-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="20">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in PNG <span class="opacity-50">20 px </span> <kbd class="ml-2 kbd-light">P</kbd></span></a><a href="/icons/2530808/download/png/20" class="btn btn-block btn-outline-dark btn-sm mt-3 py-2 btn-copy download-link-1-2530808-20-True" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="20" data-copydata="true"><span class="copytext">
Copy PNG to clipboard <kbd class="text-secondary ml-2">Alt + P</kbd>
</span>
<span class="copytext-load d-none">
<svg class="float-left" width="22" height="22" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="white">
<g fill="none" fill-rule="evenodd" stroke-width="2">
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="0s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="0s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="-0.9s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="-0.9s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
</g>
</svg>
Please wait ...
</span>
<span class="copytext-success d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#checkmark"></use>
</svg>
Copied!
</span>
<span class="copytext-error d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#danger-x"></use>
</svg>
Failed
</span></a>
<a href="/icons/2530808/download/png/20" class="btn btn-block btn-sm mt-3 download-link-1-2530808-20-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="20" data-base64="true">Copy Base64 PNG</a>
</div>
<div class="tab-pane " id="png-24"><a href="/icons/2530808/download/png/24" class="btn btn-block btn-primary py-3 download-link-1-2530808-24-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="24">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in PNG <span class="opacity-50">24 px </span> <kbd class="ml-2 kbd-light">P</kbd></span></a><a href="/icons/2530808/download/png/24" class="btn btn-block btn-outline-dark btn-sm mt-3 py-2 btn-copy download-link-1-2530808-24-True" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="24" data-copydata="true"><span class="copytext">
Copy PNG to clipboard <kbd class="text-secondary ml-2">Alt + P</kbd>
</span>
<span class="copytext-load d-none">
<svg class="float-left" width="22" height="22" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="white">
<g fill="none" fill-rule="evenodd" stroke-width="2">
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="0s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="0s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="-0.9s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="-0.9s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
</g>
</svg>
Please wait ...
</span>
<span class="copytext-success d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#checkmark"></use>
</svg>
Copied!
</span>
<span class="copytext-error d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#danger-x"></use>
</svg>
Failed
</span></a>
<a href="/icons/2530808/download/png/24" class="btn btn-block btn-sm mt-3 download-link-1-2530808-24-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="24" data-base64="true">Copy Base64 PNG</a>
</div>
<div class="tab-pane " id="png-32"><a href="/icons/2530808/download/png/32" class="btn btn-block btn-primary py-3 download-link-1-2530808-32-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="32">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in PNG <span class="opacity-50">32 px </span> <kbd class="ml-2 kbd-light">P</kbd></span></a><a href="/icons/2530808/download/png/32" class="btn btn-block btn-outline-dark btn-sm mt-3 py-2 btn-copy download-link-1-2530808-32-True" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="32" data-copydata="true"><span class="copytext">
Copy PNG to clipboard <kbd class="text-secondary ml-2">Alt + P</kbd>
</span>
<span class="copytext-load d-none">
<svg class="float-left" width="22" height="22" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="white">
<g fill="none" fill-rule="evenodd" stroke-width="2">
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="0s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="0s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="-0.9s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="-0.9s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
</g>
</svg>
Please wait ...
</span>
<span class="copytext-success d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#checkmark"></use>
</svg>
Copied!
</span>
<span class="copytext-error d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#danger-x"></use>
</svg>
Failed
</span></a>
<a href="/icons/2530808/download/png/32" class="btn btn-block btn-sm mt-3 download-link-1-2530808-32-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="32" data-base64="true">Copy Base64 PNG</a>
</div>
<div class="tab-pane " id="png-48"><a href="/icons/2530808/download/png/48" class="btn btn-block btn-primary py-3 download-link-1-2530808-48-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="48">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in PNG <span class="opacity-50">48 px </span> <kbd class="ml-2 kbd-light">P</kbd></span></a><a href="/icons/2530808/download/png/48" class="btn btn-block btn-outline-dark btn-sm mt-3 py-2 btn-copy download-link-1-2530808-48-True" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="48" data-copydata="true"><span class="copytext">
Copy PNG to clipboard <kbd class="text-secondary ml-2">Alt + P</kbd>
</span>
<span class="copytext-load d-none">
<svg class="float-left" width="22" height="22" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="white">
<g fill="none" fill-rule="evenodd" stroke-width="2">
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="0s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="0s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="-0.9s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="-0.9s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
</g>
</svg>
Please wait ...
</span>
<span class="copytext-success d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#checkmark"></use>
</svg>
Copied!
</span>
<span class="copytext-error d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#danger-x"></use>
</svg>
Failed
</span></a>
<a href="/icons/2530808/download/png/48" class="btn btn-block btn-sm mt-3 download-link-1-2530808-48-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="48" data-base64="true">Copy Base64 PNG</a>
</div>
<div class="tab-pane " id="png-64"><a href="/icons/2530808/download/png/64" class="btn btn-block btn-primary py-3 download-link-1-2530808-64-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="64">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in PNG <span class="opacity-50">64 px </span> <kbd class="ml-2 kbd-light">P</kbd></span></a><a href="/icons/2530808/download/png/64" class="btn btn-block btn-outline-dark btn-sm mt-3 py-2 btn-copy download-link-1-2530808-64-True" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="64" data-copydata="true"><span class="copytext">
Copy PNG to clipboard <kbd class="text-secondary ml-2">Alt + P</kbd>
</span>
<span class="copytext-load d-none">
<svg class="float-left" width="22" height="22" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="white">
<g fill="none" fill-rule="evenodd" stroke-width="2">
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="0s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="0s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="-0.9s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="-0.9s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
</g>
</svg>
Please wait ...
</span>
<span class="copytext-success d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#checkmark"></use>
</svg>
Copied!
</span>
<span class="copytext-error d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#danger-x"></use>
</svg>
Failed
</span></a>
<a href="/icons/2530808/download/png/64" class="btn btn-block btn-sm mt-3 download-link-1-2530808-64-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="64" data-base64="true">Copy Base64 PNG</a>
</div>
<div class="tab-pane " id="png-128"><a href="/icons/2530808/download/png/128" class="btn btn-block btn-primary py-3 download-link-1-2530808-128-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="128">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in PNG <span class="opacity-50">128 px </span> <kbd class="ml-2 kbd-light">P</kbd></span></a><a href="/icons/2530808/download/png/128" class="btn btn-block btn-outline-dark btn-sm mt-3 py-2 btn-copy download-link-1-2530808-128-True" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="128" data-copydata="true"><span class="copytext">
Copy PNG to clipboard <kbd class="text-secondary ml-2">Alt + P</kbd>
</span>
<span class="copytext-load d-none">
<svg class="float-left" width="22" height="22" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="white">
<g fill="none" fill-rule="evenodd" stroke-width="2">
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="0s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="0s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="-0.9s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="-0.9s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
</g>
</svg>
Please wait ...
</span>
<span class="copytext-success d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#checkmark"></use>
</svg>
Copied!
</span>
<span class="copytext-error d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#danger-x"></use>
</svg>
Failed
</span></a>
<a href="/icons/2530808/download/png/128" class="btn btn-block btn-sm mt-3 download-link-1-2530808-128-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="128" data-base64="true">Copy Base64 PNG</a>
</div>
<div class="tab-pane " id="png-256"><a href="/icons/2530808/download/png/256" class="btn btn-block btn-primary py-3 download-link-1-2530808-256-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="256">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in PNG <span class="opacity-50">256 px </span> <kbd class="ml-2 kbd-light">P</kbd></span></a><a href="/icons/2530808/download/png/256" class="btn btn-block btn-outline-dark btn-sm mt-3 py-2 btn-copy download-link-1-2530808-256-True" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="256" data-copydata="true"><span class="copytext">
Copy PNG to clipboard <kbd class="text-secondary ml-2">Alt + P</kbd>
</span>
<span class="copytext-load d-none">
<svg class="float-left" width="22" height="22" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="white">
<g fill="none" fill-rule="evenodd" stroke-width="2">
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="0s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="0s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="-0.9s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="-0.9s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
</g>
</svg>
Please wait ...
</span>
<span class="copytext-success d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#checkmark"></use>
</svg>
Copied!
</span>
<span class="copytext-error d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#danger-x"></use>
</svg>
Failed
</span></a>
<a href="/icons/2530808/download/png/256" class="btn btn-block btn-sm mt-3 download-link-1-2530808-256-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="256" data-base64="true">Copy Base64 PNG</a>
</div>
<div class="tab-pane active" id="png-512"><a href="/icons/2530808/download/png/512" class="btn btn-block btn-primary py-3 download-link-1-2530808-512-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="512">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in PNG <span class="opacity-50">512 px </span> <kbd class="ml-2 kbd-light">P</kbd></span></a><a href="/icons/2530808/download/png/512" class="btn btn-block btn-outline-dark btn-sm mt-3 py-2 btn-copy download-link-1-2530808-512-True" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="512" data-copydata="true"><span class="copytext">
Copy PNG to clipboard <kbd class="text-secondary ml-2">Alt + P</kbd>
</span>
<span class="copytext-load d-none">
<svg class="float-left" width="22" height="22" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="white">
<g fill="none" fill-rule="evenodd" stroke-width="2">
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="0s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="0s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="-0.9s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="-0.9s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
</g>
</svg>
Please wait ...
</span>
<span class="copytext-success d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#checkmark"></use>
</svg>
Copied!
</span>
<span class="copytext-error d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#danger-x"></use>
</svg>
Failed
</span></a>
<a href="/icons/2530808/download/png/512" class="btn btn-block btn-sm mt-3 download-link-1-2530808-512-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="512" data-base64="true">Copy Base64 PNG</a>
</div>
<div class="tab-pane " id="png-1024"><a href="/icons/2530808/download/png/1024" class="btn btn-block btn-primary py-3 download-link-1-2530808-1024-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="1024">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in PNG <span class="opacity-50">1024 px </span> <kbd class="ml-2 kbd-light">P</kbd></span></a>
</div>
<div class="tab-pane " id="png-2048"><a href="/icons/2530808/download/png/2048" class="btn btn-block btn-primary py-3 download-link-1-2530808-2048-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="2048">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in PNG <span class="opacity-50">2048 px </span> <kbd class="ml-2 kbd-light">P</kbd></span></a>
</div>
<div class="tab-pane " id="png-4096"><a href="/icons/2530808/download/png/4096" class="btn btn-block btn-primary py-3 download-link-1-2530808-4096-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="png" data-size="4096">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in PNG <span class="opacity-50">4096 px </span> <kbd class="ml-2 kbd-light">P</kbd></span></a>
</div>
</div>
</div>
<div class="tab-pane " id="svg"><a href="/icons/2530808/download/svg/4096" class="btn btn-block btn-primary py-3 download-link-8-2530808-4096-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="svg" data-size="4096">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in SVG <kbd class="ml-2 kbd-light">S</kbd></span></a><a href="/icons/2530808/download/svg/4096" class="btn btn-block btn-outline-dark btn-sm mt-3 py-2 btn-copy download-link-8-2530808-4096-True" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="svg" data-size="4096" data-copydata="true"><span class="copytext">
Copy SVG to clipboard <kbd class="text-secondary ml-2">Alt + S</kbd>
</span>
<span class="copytext-load d-none">
<svg class="float-left" width="22" height="22" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="white">
<g fill="none" fill-rule="evenodd" stroke-width="2">
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="0s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="0s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="1">
<animate attributeName="r" begin="-0.9s" dur="1.8s" values="1; 20" calcMode="spline" keyTimes="0; 1" keySplines="0.165, 0.84, 0.44, 1" repeatCount="indefinite" />
<animate attributeName="stroke-opacity" begin="-0.9s" dur="1.8s" values="1; 0" calcMode="spline" keyTimes="0; 1" keySplines="0.3, 0.61, 0.355, 1" repeatCount="indefinite" />
</circle>
</g>
</svg>
Please wait ...
</span>
<span class="copytext-success d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#checkmark"></use>
</svg>
Copied!
</span>
<span class="copytext-error d-none">
<svg width="22" height="22" class="ui-icon align-text-bottom text-muted animated-checkmark float-left">
<use xlink:href="/static/icons.svg?450f041b8d#danger-x"></use>
</svg>
Failed
</span></a><a href="/icons/2530808/download/svg/4096" class="btn btn-block btn-sm mt-3 download-link-8-2530808-4096-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="svg" data-size="4096" data-base64="true">Copy Base64 SVG</a></div>
<div class="tab-pane " id="other">
<div class="nav mb-3">
<a href="#format-AI" class="btn btn-sm btn-light mb-2 mr-2 p-0 " data-toggle="tab">
<span class="d-inline-block py-1 px-3" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-placement="top">
AI
</span>
</a>
<a href="#format-ICO" class="btn btn-sm btn-light mb-2 mr-2 p-0 " data-toggle="tab">
<span class="d-inline-block py-1 px-3" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-placement="top">
ICO
</span>
</a>
<a href="#format-ICNS" class="btn btn-sm btn-light mb-2 mr-2 p-0 " data-toggle="tab">
<span class="d-inline-block py-1 px-3" title="Download this icon in ICNS format for use in MacOS." data-toggle="tooltip" data-placement="top">
ICNS
</span>
</a>
</div>
<div class="tab-content">
<div class="tab-pane " id="format-AI"><a href="/icons/2530808/download/ai/4096" class="btn btn-block btn-primary py-3 download-link-64-2530808-4096-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="ai" data-size="4096">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in AI</span></a></div>
<div class="tab-pane " id="format-ICO"><a href="/icons/2530808/download/ico/4096" class="btn btn-block btn-primary py-3 download-link-16-2530808-4096-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="ico" data-size="4096">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in ICO</span></a></div>
<div class="tab-pane " id="format-ICNS"><a href="/icons/2530808/download/icns/4096" class="btn btn-block btn-primary py-3 download-link-32-2530808-4096-False" rel="noindex nofollow" data-action="download" data-asset-type="icon" data-asset-id="2530808" data-asset-format="icns" data-size="4096">
<svg width="20" height="20" class="ui-icon align-text-bottom text-white">
<use xlink:href="/static/icons.svg?450f041b8d#download"></use>
</svg>
<span class="ml-1">Download in ICNS</span></a></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="border-top py-5">
<div class="mb-4">
<a href="/korawan_m" class="d-block-inline text-truncate text-dark" data-profile="korawan_m">
<img src="https://avatar.iconfinder.com/avatar/d6a87f9b6518356937e7a9204b6f100f?d=https%3A//www.iconfinder.com/static/img/default-avatar-user-2.png&s=40" alt="Avatar" height="20" width="20" class="rounded-circle align-text-bottom" loading="lazy">
BomSymbols . <span data-toggle="tooltip" title="This designer is from Ukraine. By buying from them, you directly support the people of Ukraine."></span>
<span class="screened align-text-bottom">
<img src="https://www.iconfinder.com/static/img/illustrations/verified.svg?224f718a58" alt height="16">
</span>
</a>
</div>
<div class="meta-info-box-new mb-4">
<span class="meta-info-wrap-new overflow-faded">
<a href="/search/icons?family=freebies-9" class="text-dark">
<span class="text-truncate">Freebies</span> family
<svg width="18" height="18" class="ui-icon align-text-bottom text-dark">
<use xlink:href="/static/icons.svg?450f041b8d#chevron-right"></use>
</svg>
</a>
<a href="/iconsets/general-office" class="text-dark px-1">
<span class="text-truncate">General Office</span> pack
</a>
</span>
</div>
<div class="meta-info-box-new">
<span class="meta-info-wrap-new">
<a href="/search/icons?q=alarm" class="bg-gray-200 px-2 py-1 rounded text-dark mb-2 mr-1 small d-inline-block" title="Search for alarm icons">Alarm</a>
<a href="/search/icons?q=clock" class="bg-gray-200 px-2 py-1 rounded text-dark mb-2 mr-1 small d-inline-block" title="Search for clock icons">Clock</a>
<a href="/search/icons?q=deadline" class="bg-gray-200 px-2 py-1 rounded text-dark mb-2 mr-1 small d-inline-block" title="Search for deadline icons">Deadline</a>
<a href="/search/icons?q=general" class="bg-gray-200 px-2 py-1 rounded text-dark mb-2 mr-1 small d-inline-block" title="Search for general icons">General</a>
<a href="/search/icons?q=office" class="bg-gray-200 px-2 py-1 rounded text-dark mb-2 mr-1 small d-inline-block" title="Search for office icons">Office</a>
<a href="/search/icons?q=time" class="bg-gray-200 px-2 py-1 rounded text-dark mb-2 mr-1 small d-inline-block" title="Search for time icons">Time</a>
<a href="/search/icons?q=time%20management" class="bg-gray-200 px-2 py-1 rounded text-dark mb-2 mr-1 small d-inline-block" title="Search for time management icons">Time management</a>
</span>
</div>
<div class="my-4">
<a href="#" class="text-truncate text-muted small" data-requires="user" data-modal="collections/_add" data-remote="/collections/ajax/list/icon/2530808" data-type="icon" data-id="2530808">
<span style="position: relative; top: 2px;">
<svg width="18" height="18" class="ui-icon align-text-bottom text-muted">
<use xlink:href="/static/icons.svg?450f041b8d#bookmark"></use>
</svg>
</span>
Add to collection
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<div class="px-3 pt-5 pb-3 border-bottom container container-max-width">
<div class="istockphoto-placeholder rounded overflow-hidden" data-sort_order="random" data-phrase="alarm clock deadline general office time time management" data-sharedid="ADP"></div>
</div>
<div class="container-fluid py-5">
<div class="row">
<div class="col-6">
<h2 class="mb-2">
<a class="text-dark" href="/search/icons?family=freebies-9">Freebies icons</a>
</h2>
<p class="text-muted mb-4">
48 vector (SVG) icons
</p>
</div>
<div class="col-6">
<form class="float-right w-75" method="get" action="/search/icons?family=freebies-9">
<input type="hidden" name="family" value="freebies-9" />
<input class="form-control mb-2 shadow-sm" type="text" name="q" placeholder="Search in the Freebies family ...">
</form>
</div>
</div>
<div class="icon-grid grid-fluid size-128 clearfix">
<div class="icon-preview " data-asset-id="1471092">
<div class="icon-preview-bg">
<div class="position-absolute px-2 py-1">
<span class="badge badge-mark" title="Free icon" data-toggle="tooltip">FREE</span>
</div>
<a href="/icons/1471092/general_kilo_kitchen_gadget_kitchen_scale_recipe_weight_scale_icon" class="d-block py-4" title="general, kilo, kitchen gadget, kitchen scale, recipe, weight scale" data-action="icon-details" data-tracking="Icon|Click link">
<div class="icon-preview-img d-flex align-items-center justify-content-center">
<img src="https://cdn3.iconfinder.com/data/icons/mini-icon-set-general-office/91/General_-_Office_46-128.png" srcset="https://cdn3.iconfinder.com/data/icons/mini-icon-set-general-office/91/General_-_Office_46-128.png 1x, https://cdn3.iconfinder.com/data/icons/mini-icon-set-general-office/91/General_-_Office_46-256.png 2x" alt="general, kilo, kitchen gadget, kitchen scale, recipe, weight scale" class="d-block">
</div>
</a>
</div>
</div>
<div class="icon-preview " data-asset-id="3592848">
<div class="icon-preview-bg">
<div class="position-absolute px-2 py-1">
<span class="badge badge-mark" title="Free icon" data-toggle="tooltip">FREE</span>
</div>
<a href="/icons/3592848/general_kilo_kitchen_gadget_kitchen_scale_recipe_weight_scale_icon" class="d-block py-4" title="general, kilo, kitchen gadget, kitchen scale, recipe, weight scale" data-action="icon-details" data-tracking="Icon|Click link">
<div class="icon-preview-img d-flex align-items-center justify-content-center">
<img src="https://cdn1.iconfinder.com/data/icons/office-222/91/General_Office_46-128.png" srcset="https://cdn1.iconfinder.com/data/icons/office-222/91/General_Office_46-128.png 1x, https://cdn1.iconfinder.com/data/icons/office-222/91/General_Office_46-256.png 2x" alt="general, kilo, kitchen gadget, kitchen scale, recipe, weight scale" class="d-block">
</div>
</a>
</div>
</div>
<div class="icon-preview " data-asset-id="2427855">
<div class="icon-preview-bg">
<div class="position-absolute px-2 py-1">
<span class="badge badge-mark" title="Free icon" data-toggle="tooltip">FREE</span>
</div>
<a href="/icons/2427855/farfalle_food_italian_food_kitchen_pasta_icon" class="d-block py-4" title="farfalle, food, italian food, kitchen, pasta" data-action="icon-details" data-tracking="Icon|Click link">
<div class="icon-preview-img d-flex align-items-center justify-content-center">
<img src="https://cdn3.iconfinder.com/data/icons/food-set-3/91/Food_C209-128.png" srcset="https://cdn3.iconfinder.com/data/icons/food-set-3/91/Food_C209-128.png 1x, https://cdn3.iconfinder.com/data/icons/food-set-3/91/Food_C209-256.png 2x" alt="farfalle, food, italian food, kitchen, pasta" class="d-block">
</div>
</a>
</div>
</div>
<div class="icon-preview " data-asset-id="2530829">
<div class="icon-preview-bg">
<div class="position-absolute px-2 py-1">
<span class="badge badge-mark" title="Free icon" data-toggle="tooltip">FREE</span>
</div>
<a href="/icons/2530829/folder_general_documents_folder_office_organize_icon" class="d-block py-4" title="folder, general, documents folder, office, organize" data-action="icon-details" data-tracking="Icon|Click link">
<div class="icon-preview-img d-flex align-items-center justify-content-center">
<img src="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_16-128.png" srcset="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_16-128.png 1x, https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_16-256.png 2x" alt="folder, general, documents folder, office, organize" class="d-block">
</div>
</a>
</div>
</div>
<div class="icon-preview " data-asset-id="2530797">
<div class="icon-preview-bg">
<div class="position-absolute px-2 py-1">
<span class="badge badge-mark" title="Free icon" data-toggle="tooltip">FREE</span>
</div>
<a href="/icons/2530797/general_hierachy_map_office_site_structure_icon" class="d-block py-4" title="general, hierachy, map, office, site, structure" data-action="icon-details" data-tracking="Icon|Click link">
<div class="icon-preview-img d-flex align-items-center justify-content-center">
<img src="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_62-128.png" srcset="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_62-128.png 1x, https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_62-256.png 2x" alt="general, hierachy, map, office, site, structure" class="d-block">
</div>
</a>
</div>
</div>
<div class="icon-preview " data-asset-id="2530823">
<div class="icon-preview-bg">
<div class="position-absolute px-2 py-1">
<span class="badge badge-mark" title="Free icon" data-toggle="tooltip">FREE</span>
</div>
<a href="/icons/2530823/align_center_center_align_center_alignment_general_office_text_alignment_icon" class="d-block py-4" title="align center, center align, center alignment, general, office, text alignment" data-action="icon-details" data-tracking="Icon|Click link">
<div class="icon-preview-img d-flex align-items-center justify-content-center">
<img src="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_26-128.png" srcset="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_26-128.png 1x, https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_26-256.png 2x" alt="align center, center align, center alignment, general, office, text alignment" class="d-block">
</div>
</a>
</div>
</div>
<div class="icon-preview " data-asset-id="2530796">
<div class="icon-preview-bg">
<div class="position-absolute px-2 py-1">
<span class="badge badge-mark" title="Free icon" data-toggle="tooltip">FREE</span>
</div>
<a href="/icons/2530796/general_hierachy_map_office_site_structure_icon" class="d-block py-4" title="general, hierachy, map, office, site, structure" data-action="icon-details" data-tracking="Icon|Click link">
<div class="icon-preview-img d-flex align-items-center justify-content-center">
<img src="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_63-128.png" srcset="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_63-128.png 1x, https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_63-256.png 2x" alt="general, hierachy, map, office, site, structure" class="d-block">
</div>
</a>
</div>
</div>
<div class="icon-preview " data-asset-id="2530810">
<div class="icon-preview-bg">
<div class="position-absolute px-2 py-1">
<span class="badge badge-mark" title="Free icon" data-toggle="tooltip">FREE</span>
</div>
<a href="/icons/2530810/calendar_general_month_month_calendar_office_schedule_wall_calendar_icon" class="d-block py-4" title="calendar, general, month, month calendar, office, schedule, wall calendar" data-action="icon-details" data-tracking="Icon|Click link">
<div class="icon-preview-img d-flex align-items-center justify-content-center">
<img src="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_42-128.png" srcset="https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_42-128.png 1x, https://cdn4.iconfinder.com/data/icons/general-office/91/General_Office_42-256.png 2x" alt="calendar, general, month, month calendar, office, schedule, wall calendar" class="d-block">
</div>
</a>
</div>
</div>
<div class="icon-preview " data-asset-id="2530833">
<div class="icon-preview-bg">
<div class="position-absolute px-2 py-1">
<span class="badge badge-mark" title="Free icon" data-toggle="tooltip">FREE</span>
</div>