-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathicons.html
2533 lines (2276 loc) · 190 KB
/
icons.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 http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content = "width=device-width , user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Zondicons">
<title>Zondicons</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link href="css/main.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/unslider.css">
<link rel="stylesheet" href="css/unslider-dots.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<script>
document.createElement('nav');
document.createElement('section');
document.createElement('figure');
</script>
<![endif]-->
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,500,700,400italic' rel='stylesheet' type='text/css'>
</head>
<body>
<header class="main-header">
<div class="main-headline">
<div class="container">
<div class="main-nav">
<nav class="navbar">
<a href="/"><div class="logo"></div></a>
<ul class="nav-links">
<li><a href="/">Overview</a></li>
<li><a href="./icons.html">Icons</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<section class="icon-section">
<div class="container">
<nav class="navbar">
<h2 class="icons-title">Icons</h2>
<p class="navbar-text navbar-right">Last updated June 19, 2016</p>
</nav>
<div class="row">
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M11,9 L11,5 L9,5 L9,9 L5,9 L5,11 L9,11 L9,15 L11,15 L11,11 L15,11 L15,9 L11,9 Z M10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,0 10,0 C4.4771525,0 0,4.4771525 0,10 C0,15.5228475 4.4771525,20 10,20 Z M10,18 C14.418278,18 18,14.418278 18,10 C18,5.581722 14.418278,2 10,2 C5.581722,2 2,5.581722 2,10 C2,14.418278 5.581722,18 10,18 Z" id="Shape"></path>
</g>
</g>
</svg>add-outline</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M11,9 L11,5 L9,5 L9,9 L5,9 L5,11 L9,11 L9,15 L11,15 L11,11 L15,11 L15,9 L11,9 Z M10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,0 10,0 C4.4771525,0 0,4.4771525 0,10 C0,15.5228475 4.4771525,20 10,20 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>add-solid</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M10,2 C14.418278,2 18,5.581722 18,10 C18,14.418278 14.418278,18 10,18 L10,2 Z M10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,0 10,0 C4.4771525,0 0,4.4771525 0,10 C0,15.5228475 4.4771525,20 10,20 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>adjust</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M12,11.6 L12,17.2 L15,19 L15,20 L10,20 L5,20 L5,19 L8,17.2 L8,11.6 L-8.8817842e-16,14 L-8.8817842e-16,12 L8,7.2 L8,1.99508929 C8,0.893231902 8.88772964,0 10,0 C11.1045695,0 12,0.892622799 12,1.99508929 L12,7.2 L20,12 L20,14 L12,11.6 Z" id="Combined-Shape" transform="translate(10.000000, 10.000000) rotate(-270.000000) translate(-10.000000, -10.000000) "></path>
</g>
</g>
</svg>airplane</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M1,1 L19,1 L19,3 L1,3 L1,1 Z M1,9 L19,9 L19,11 L1,11 L1,9 Z M1,17 L19,17 L19,19 L1,19 L1,17 Z M4,5 L16,5 L16,7 L4,7 L4,5 Z M4,13 L16,13 L16,15 L4,15 L4,13 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>align-center</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M1,1 L19,1 L19,3 L1,3 L1,1 Z M1,9 L19,9 L19,11 L1,11 L1,9 Z M1,17 L19,17 L19,19 L1,19 L1,17 Z M1,5 L19,5 L19,7 L1,7 L1,5 Z M1,13 L19,13 L19,15 L1,15 L1,13 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>align-justified</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M1,1 L19,1 L19,3 L1,3 L1,1 Z M1,9 L19,9 L19,11 L1,11 L1,9 Z M1,17 L19,17 L19,19 L1,19 L1,17 Z M1,5 L13,5 L13,7 L1,7 L1,5 Z M1,13 L13,13 L13,15 L1,15 L1,13 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>align-left</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M1,1 L19,1 L19,3 L1,3 L1,1 Z M1,9 L19,9 L19,11 L1,11 L1,9 Z M1,17 L19,17 L19,19 L1,19 L1,17 Z M7,5 L19,5 L19,7 L7,7 L7,5 Z M7,13 L19,13 L19,15 L7,15 L7,13 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>align-right</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M3,6 L3,5.99810135 C3,4.89458045 3.89706013,4 5.00585866,4 L13,4 L17,0 L19,0 L19,16 L17,16 L13,12 L5.00585866,12 C3.89805351,12 3,11.1132936 3,10.0018986 L3,10 L1,10 L1,6 L3,6 Z M11,15 L13,15 L13,13 L5,13 L5,15 L6.33333333,15 L8,20 L11,20 L11,15 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>announcement</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,0 10,0 C4.4771525,0 0,4.4771525 0,10 C0,15.5228475 4.4771525,20 10,20 Z M10,18 C14.418278,18 18,14.418278 18,10 C18,5.581722 14.418278,2 10,2 C5.581722,2 2,5.581722 2,10 C2,14.418278 5.581722,18 10,18 Z M8,10 L12,10 L12,5 L8,5 L8,10 Z M10,15 L15,10 L5,10 L10,15 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>arrow-outline-down</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M0,10 C0,15.5228475 4.4771525,20 10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,1.01453063e-15 10,0 C4.4771525,-1.01453063e-15 3.55271368e-15,4.4771525 0,10 L0,10 Z M2,10 C2,14.418278 5.581722,18 10,18 C14.418278,18 18,14.418278 18,10 C18,5.581722 14.418278,2 10,2 C5.581722,2 2,5.581722 2,10 L2,10 Z M10,8 L10,12 L15,12 L15,8 L10,8 L10,8 Z M5,10 L10,15 L10,5 L5,10 L5,10 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>arrow-outline-left</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M20,10 C20,4.4771525 15.5228475,0 10,0 C4.4771525,0 9.50500275e-16,4.4771525 6.123234e-16,10 C2.74146524e-16,15.5228475 4.4771525,20 10,20 C15.5228475,20 20,15.5228475 20,10 L20,10 Z M18,10 C18,5.581722 14.418278,2 10,2 C5.581722,2 2,5.581722 2,10 C2,14.418278 5.581722,18 10,18 C14.418278,18 18,14.418278 18,10 L18,10 Z M10,12 L10,8 L5,8 L5,12 L10,12 L10,12 Z M15,10 L10,5 L10,15 L15,10 L15,10 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>arrow-outline-right</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M10,0 C4.4771525,-3.55271368e-15 3.55271368e-15,4.4771525 0,10 C0,15.5228475 4.4771525,20 10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,0 10,0 L10,0 Z M10,2 C5.581722,2 2,5.581722 2,10 C2,14.418278 5.581722,18 10,18 C14.418278,18 18,14.418278 18,10 C18,5.581722 14.418278,2 10,2 L10,2 Z M12,10 L8,10 L8,15 L12,15 L12,10 L12,10 Z M10,5 L5,10 L15,10 L10,5 L10,5 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>arrow-outline-up</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M13,10 L13,2 L7,2 L7,10 L2,10 L10,18 L18,10 L13,10 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>arrow-thick-down</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<polygon id="Combined-Shape" points="10 13 18 13 18 7 10 7 10 2 2 10 10 18 10 13"></polygon>
</g>
</g>
</svg>arrow-thick-left</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<polygon id="Combined-Shape" points="10 7 2 7 2 13 10 13 10 18 18 10 10 2 10 7"></polygon>
</g>
</g>
</svg>arrow-thick-right</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<polygon id="Combined-Shape" points="7 10 7 18 13 18 13 10 18 10 10 2 2 10 7 10"></polygon>
</g>
</g>
</svg>arrow-thick-up</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<polygon id="Combined-Shape" points="9 16.1715729 2.92893219 10.1005051 1.51471863 11.5147186 10 20 10.7071068 19.2928932 18.4852814 11.5147186 17.0710678 10.1005051 11 16.1715729 11 0 9 0"></polygon>
</g>
</g>
</svg>arrow-thin-down</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<polygon id="Combined-Shape-Copy" points="3.82842712 9 9.89949494 2.92893219 8.48528137 1.51471863 0 10 0.707106781 10.7071068 8.48528137 18.4852814 9.89949494 17.0710678 3.82842712 11 20 11 20 9 3.82842712 9"></polygon>
</g>
</g>
</svg>arrow-thin-left</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<polygon id="Combined-Shape-Copy" points="16.1715729 9 10.1005051 2.92893219 11.5147186 1.51471863 20 10 19.2928932 10.7071068 11.5147186 18.4852814 10.1005051 17.0710678 16.1715729 11 -5.68434189e-14 11 -5.68434189e-14 9"></polygon>
</g>
</g>
</svg>arrow-thin-right</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<polygon id="Combined-Shape" points="9 3.82842712 2.92893219 9.89949494 1.51471863 8.48528137 10 0 10.7071068 0.707106781 18.4852814 8.48528137 17.0710678 9.89949494 11 3.82842712 11 20 9 20 9 3.82842712"></polygon>
</g>
</g>
</svg>arrow-thin-up</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M13.6038462,13.465884 C14.2335946,14.3918325 15.2957747,15 16.5,15 C18.4329966,15 20,13.4329966 20,11.4999996 L20,10 L19.8315922,10 L20,10 C20,4.4771525 15.5228475,0 10,0 C4.4771525,0 0,4.4771525 0,10 C0,15.5228475 4.4771525,20 10,20 C11.6078966,20 13.1271602,19.6205173 14.4731143,18.9462285 L14.4731143,18.9462285 L13.5784914,17.1569828 C12.5017282,17.6964138 11.2863173,18 10,18 C5.581722,18 2,14.418278 2,10 C2,5.581722 5.581722,2 10,2 C14.418278,2 18,5.581722 18,10 L18,10.7499176 L18,11.5 C17.9999117,12.3284424 17.3341474,13 16.5,13 C15.6715729,13 15,12.3256778 15,11.4998351 L15,9.16840779 L15,5 L13,5 L13,5.99963381 C12.1643395,5.37194482 11.1256059,5 10,5 C7.23857625,5 5,7.23857625 5,10 C5,12.7614237 7.23857625,15 10,15 C11.4158008,15 12.6941617,14.4115493 13.6038462,13.465884 L13.6038462,13.465884 Z M10,13 C11.6568542,13 13,11.6568542 13,10 C13,8.34314575 11.6568542,7 10,7 C8.34314575,7 7,8.34314575 7,10 C7,11.6568542 8.34314575,13 10,13 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>at-symbol</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M15,3 L7,3 C3.13400675,3 0,6.13400675 0,10 C0,13.8659932 3.13400675,17 7,17 L15,17 L15,15 L9.44949137,15 L7,15 C4.23857625,15 2,12.7614237 2,10 C2,7.23857625 4.23857625,5 7,5 L9.44949137,5 L12.9998169,5 L15,5 C16.6568542,5 18,6.34314575 18,8 C18,9.65685425 16.6568542,11 15,11 L12.9998169,11 L8.41464715,11 L7,11 C6.44771525,11 6,10.5522847 6,10 C6,9.44771525 6.44771525,9 7,9 L8.41464715,9 L15,9 L15,7 L7,7 C5.34314575,7 4,8.34314575 4,10 C4,11.6568542 5.34314575,13 7,13 L15,13 C17.7614237,13 20,10.7614237 20,8 C20,5.23857625 17.7614237,3 15,3 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>attachment</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M14.4142136,10 L16.5355339,7.87867966 L15.1213203,6.46446609 L13,8.58578644 L10.8786797,6.46446609 L9.46446609,7.87867966 L11.5857864,10 L9.46446609,12.1213203 L10.8786797,13.5355339 L13,11.4142136 L15.1213203,13.5355339 L16.5355339,12.1213203 L14.4142136,10 Z M0,10 L7,3 L20,3 L20,17 L7,17 L0,10 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>backspace</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M10,12 C13.3137085,12 16,9.3137085 16,6 C16,2.6862915 13.3137085,0 10,0 C6.6862915,0 4,2.6862915 4,6 C4,9.3137085 6.6862915,12 10,12 Z M10,9 C11.6568542,9 13,7.65685425 13,6 C13,4.34314575 11.6568542,3 10,3 C8.34314575,3 7,4.34314575 7,6 C7,7.65685425 8.34314575,9 10,9 Z M14,11.7453107 L14,20 L10,16 L6,20 L6,11.7453107 C7.13383348,12.5361852 8.51275186,13 10,13 C11.4872481,13 12.8661665,12.5361852 14,11.7453107 L14,11.7453107 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>badge</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M0,6.0085302 C0,4.8992496 0.898212381,4 1.99079514,4 L18.0092049,4 C19.1086907,4 20,4.90195036 20,6.0085302 L20,13.9914698 C20,15.1007504 19.1017876,16 18.0092049,16 L1.99079514,16 C0.891309342,16 0,15.0980496 0,13.9914698 L0,6.0085302 Z M2,6 L18,6 L18,14 L2,14 L2,6 Z M3,7 L7,7 L7,13 L3,13 L3,7 Z M8,7 L12,7 L12,13 L8,13 L8,7 Z M13,7 L17,7 L17,13 L13,13 L13,7 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>battery-full</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M0,6.0085302 C0,4.8992496 0.898212381,4 1.99079514,4 L18.0092049,4 C19.1086907,4 20,4.90195036 20,6.0085302 L20,13.9914698 C20,15.1007504 19.1017876,16 18.0092049,16 L1.99079514,16 C0.891309342,16 0,15.0980496 0,13.9914698 L0,6.0085302 Z M2,6 L18,6 L18,14 L2,14 L2,6 Z M3,7 L7,7 L7,13 L3,13 L3,7 Z M8,7 L12,7 L12,13 L8,13 L8,7 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>battery-half</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M0,6.0085302 C0,4.8992496 0.898212381,4 1.99079514,4 L18.0092049,4 C19.1086907,4 20,4.90195036 20,6.0085302 L20,13.9914698 C20,15.1007504 19.1017876,16 18.0092049,16 L1.99079514,16 C0.891309342,16 0,15.0980496 0,13.9914698 L0,6.0085302 Z M2,6 L18,6 L18,14 L2,14 L2,6 Z M3,7 L7,7 L7,13 L3,13 L3,7 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>battery-low</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M9,18 L9,11 L0,2 L0,0 L20,0 L20,2 L11,11 L11,18 L16,19 L16,20 L4,20 L4,19 L9,18 Z M11,8 C12.1045695,8 13,7.1045695 13,6 C13,4.8954305 12.1045695,4 11,4 C9.8954305,4 9,4.8954305 9,6 C9,7.1045695 9.8954305,8 11,8 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>beverage</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M16.3198574,5.09435615 C17.3729184,6.44903985 18,8.15128855 18,10 C18,14.418278 14.418278,18 10,18 C8.15128855,18 6.44903985,17.3729184 5.09435615,16.3198574 L16.3198574,5.09435615 L16.3198574,5.09435615 Z M14.9056439,3.68014258 C13.5509601,2.62708161 11.8487115,2 10,2 C5.581722,2 2,5.581722 2,10 C2,11.8487115 2.62708161,13.5509601 3.68014258,14.9056439 L14.9056439,3.68014258 L14.9056439,3.68014258 Z M0,10 C3.55271368e-15,15.5228475 4.4771525,20 10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,1.77635684e-15 10,0 C4.4771525,-8.8817842e-16 5.32907052e-15,4.4771525 0,10 L0,10 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>block</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M9.41421356,5.55111512e-17 L14.3535534,4.93933983 L15.4142136,6 L14.3535534,7.06066017 L11.4142136,10 L14.3535534,12.9393398 L15.4142136,14 L14.3535534,15.0606602 L9.41421356,20 L9,20 L9,17.2928932 L9,12.4142136 L5.70710678,15.7071068 L4.29289322,14.2928932 L8.58578644,10 L4.29289322,5.70710678 L5.70710678,4.29289322 L9,7.58578644 L9,2.70710678 L9,0 L9.41421356,0 Z M11,4.41421356 L11,7.58578644 L12.5857864,6 L11,4.41421356 Z M12.5857864,14 L11,15.5857864 L11,12.4142136 L12.5857864,14 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>bluetooth</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M13,8 L13,0 L3,12 L7,12 L7,20 L17,8 L13,8 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>bolt</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M2,1.99079514 C2,0.891309342 2.89706013,0 4.00585866,0 L14.9931545,0 C15.5492199,0 16,0.443864822 16,1 L16,2 L5.00247329,2 C4.44882258,2 4,2.44386482 4,3 C4,3.55228475 4.44994876,4 5.00684547,4 L16.9931545,4 C17.5492199,4 18,4.44463086 18,5.00087166 L18,18.0059397 C18,19.1072288 17.1054862,20 16.0059397,20 L3.99406028,20 C2.8927712,20 2,19.1017876 2,18.0092049 L2,1.99079514 Z M6,4 L10,4 L10,12 L8,10 L6,12 L6,4 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>book-reference</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M2,1.99079514 C2,0.891309342 2.89451376,0 3.99406028,0 L16.0059397,0 C17.1072288,0 18,0.898212381 18,1.99079514 L18,20 L10,16 L2,20 L2,1.99079514 Z" id="Rectangle-373"></path>
</g>
</g>
</svg>bookmark</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M11,11 L11,17 L17,17 L17,11 L11,11 Z M11,9 L11,3 L17,3 L17,9 L11,9 Z M9,11 L9,17 L3,17 L3,11 L9,11 Z M9,9 L9,3 L3,3 L3,9 L9,9 Z M1,18 L1,1 L2,1 L18,1 L19,1 L19,19 L18,19 L1,19 L1,18 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>border-all</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M1,1 L3,1 L3,3 L1,3 L1,1 Z M1,5 L3,5 L3,7 L1,7 L1,5 Z M1,9 L3,9 L3,11 L1,11 L1,9 Z M1,13 L3,13 L3,15 L1,15 L1,13 Z M1,17 L19,17 L19,19 L1,19 L1,17 Z M5,1 L7,1 L7,3 L5,3 L5,1 Z M5,9 L7,9 L7,11 L5,11 L5,9 Z M9,1 L11,1 L11,3 L9,3 L9,1 Z M9,5 L11,5 L11,7 L9,7 L9,5 Z M9,9 L11,9 L11,11 L9,11 L9,9 Z M9,13 L11,13 L11,15 L9,15 L9,13 Z M13,1 L15,1 L15,3 L13,3 L13,1 Z M13,9 L15,9 L15,11 L13,11 L13,9 Z M17,1 L19,1 L19,3 L17,3 L17,1 Z M17,5 L19,5 L19,7 L17,7 L17,5 Z M17,9 L19,9 L19,11 L17,11 L17,9 Z M17,13 L19,13 L19,15 L17,15 L17,13 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>border-bottom</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M1,1 L3,1 L3,3 L1,3 L1,1 Z M1,5 L3,5 L3,7 L1,7 L1,5 Z M1,9 L19,9 L19,11 L1,11 L1,9 Z M1,13 L3,13 L3,15 L1,15 L1,13 Z M1,17 L3,17 L3,19 L1,19 L1,17 Z M5,1 L7,1 L7,3 L5,3 L5,1 Z M5,17 L7,17 L7,19 L5,19 L5,17 Z M9,1 L11,1 L11,3 L9,3 L9,1 Z M9,5 L11,5 L11,7 L9,7 L9,5 Z M9,13 L11,13 L11,15 L9,15 L9,13 Z M9,17 L11,17 L11,19 L9,19 L9,17 Z M13,1 L15,1 L15,3 L13,3 L13,1 Z M13,17 L15,17 L15,19 L13,19 L13,17 Z M17,1 L19,1 L19,3 L17,3 L17,1 Z M17,5 L19,5 L19,7 L17,7 L17,5 Z M17,13 L19,13 L19,15 L17,15 L17,13 Z M17,17 L19,17 L19,19 L17,19 L17,17 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>border-horizontal</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M9,9 L1,9 L1,11 L9,11 L9,19 L11,19 L11,11 L19,11 L19,9 L11,9 L11,1 L9,1 L9,9 Z M1,1 L3,1 L3,3 L1,3 L1,1 Z M1,5 L3,5 L3,7 L1,7 L1,5 Z M1,13 L3,13 L3,15 L1,15 L1,13 Z M1,17 L3,17 L3,19 L1,19 L1,17 Z M5,1 L7,1 L7,3 L5,3 L5,1 Z M5,17 L7,17 L7,19 L5,19 L5,17 Z M13,1 L15,1 L15,3 L13,3 L13,1 Z M13,17 L15,17 L15,19 L13,19 L13,17 Z M17,1 L19,1 L19,3 L17,3 L17,1 Z M17,5 L19,5 L19,7 L17,7 L17,5 Z M17,13 L19,13 L19,15 L17,15 L17,13 Z M17,17 L19,17 L19,19 L17,19 L17,17 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>border-inner</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M1,1 L3,1 L3,19 L1,19 L1,1 Z M5,1 L7,1 L7,3 L5,3 L5,1 Z M5,9 L7,9 L7,11 L5,11 L5,9 Z M5,17 L7,17 L7,19 L5,19 L5,17 Z M9,1 L11,1 L11,3 L9,3 L9,1 Z M9,5 L11,5 L11,7 L9,7 L9,5 Z M9,9 L11,9 L11,11 L9,11 L9,9 Z M9,13 L11,13 L11,15 L9,15 L9,13 Z M9,17 L11,17 L11,19 L9,19 L9,17 Z M13,1 L15,1 L15,3 L13,3 L13,1 Z M13,9 L15,9 L15,11 L13,11 L13,9 Z M13,17 L15,17 L15,19 L13,19 L13,17 Z M17,1 L19,1 L19,3 L17,3 L17,1 Z M17,5 L19,5 L19,7 L17,7 L17,5 Z M17,9 L19,9 L19,11 L17,11 L17,9 Z M17,13 L19,13 L19,15 L17,15 L17,13 Z M17,17 L19,17 L19,19 L17,19 L17,17 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>border-left</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M1,1 L3,1 L3,3 L1,3 L1,1 Z M1,5 L3,5 L3,7 L1,7 L1,5 Z M1,9 L3,9 L3,11 L1,11 L1,9 Z M1,13 L3,13 L3,15 L1,15 L1,13 Z M1,17 L3,17 L3,19 L1,19 L1,17 Z M5,1 L7,1 L7,3 L5,3 L5,1 Z M5,9 L7,9 L7,11 L5,11 L5,9 Z M5,17 L7,17 L7,19 L5,19 L5,17 Z M9,1 L11,1 L11,3 L9,3 L9,1 Z M9,5 L11,5 L11,7 L9,7 L9,5 Z M9,9 L11,9 L11,11 L9,11 L9,9 Z M9,13 L11,13 L11,15 L9,15 L9,13 Z M9,17 L11,17 L11,19 L9,19 L9,17 Z M13,1 L15,1 L15,3 L13,3 L13,1 Z M13,9 L15,9 L15,11 L13,11 L13,9 Z M13,17 L15,17 L15,19 L13,19 L13,17 Z M17,1 L19,1 L19,3 L17,3 L17,1 Z M17,5 L19,5 L19,7 L17,7 L17,5 Z M17,9 L19,9 L19,11 L17,11 L17,9 Z M17,13 L19,13 L19,15 L17,15 L17,13 Z M17,17 L19,17 L19,19 L17,19 L17,17 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>border-none</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M2,19 L1,19 L1,1 L2,1 L19,1 L19,2 L19,18 L19,19 L2,19 Z M3,17 L3,3 L17,3 L17,17 L3,17 Z M13,9 L15,9 L15,11 L13,11 L13,9 Z M9,9 L11,9 L11,11 L9,11 L9,9 Z M5,9 L7,9 L7,11 L5,11 L5,9 Z M9,5 L11,5 L11,7 L9,7 L9,5 Z M9,13 L11,13 L11,15 L9,15 L9,13 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>border-outer</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M5,1 L7,1 L7,3 L5,3 L5,1 Z M5,9 L7,9 L7,11 L5,11 L5,9 Z M5,17 L7,17 L7,19 L5,19 L5,17 Z M9,1 L11,1 L11,3 L9,3 L9,1 Z M9,5 L11,5 L11,7 L9,7 L9,5 Z M9,9 L11,9 L11,11 L9,11 L9,9 Z M9,13 L11,13 L11,15 L9,15 L9,13 Z M9,17 L11,17 L11,19 L9,19 L9,17 Z M13,1 L15,1 L15,3 L13,3 L13,1 Z M13,9 L15,9 L15,11 L13,11 L13,9 Z M13,17 L15,17 L15,19 L13,19 L13,17 Z M1,1 L3,1 L3,3 L1,3 L1,1 Z M1,5 L3,5 L3,7 L1,7 L1,5 Z M1,9 L3,9 L3,11 L1,11 L1,9 Z M1,13 L3,13 L3,15 L1,15 L1,13 Z M1,17 L3,17 L3,19 L1,19 L1,17 Z M17,1 L19,1 L19,19 L17,19 L17,1 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>border-right</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M1,1 L19,1 L19,3 L1,3 L1,1 Z M1,5 L3,5 L3,7 L1,7 L1,5 Z M1,9 L3,9 L3,11 L1,11 L1,9 Z M1,13 L3,13 L3,15 L1,15 L1,13 Z M1,17 L3,17 L3,19 L1,19 L1,17 Z M5,9 L7,9 L7,11 L5,11 L5,9 Z M5,17 L7,17 L7,19 L5,19 L5,17 Z M9,5 L11,5 L11,7 L9,7 L9,5 Z M9,9 L11,9 L11,11 L9,11 L9,9 Z M9,13 L11,13 L11,15 L9,15 L9,13 Z M9,17 L11,17 L11,19 L9,19 L9,17 Z M13,9 L15,9 L15,11 L13,11 L13,9 Z M13,17 L15,17 L15,19 L13,19 L13,17 Z M17,5 L19,5 L19,7 L17,7 L17,5 Z M17,9 L19,9 L19,11 L17,11 L17,9 Z M17,13 L19,13 L19,15 L17,15 L17,13 Z M17,17 L19,17 L19,19 L17,19 L17,17 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>border-top</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M1,1 L3,1 L3,3 L1,3 L1,1 Z M1,5 L3,5 L3,7 L1,7 L1,5 Z M1,9 L3,9 L3,11 L1,11 L1,9 Z M1,13 L3,13 L3,15 L1,15 L1,13 Z M1,17 L3,17 L3,19 L1,19 L1,17 Z M5,1 L7,1 L7,3 L5,3 L5,1 Z M5,9 L7,9 L7,11 L5,11 L5,9 Z M5,17 L7,17 L7,19 L5,19 L5,17 Z M9,1 L11,1 L11,19 L9,19 L9,1 Z M13,1 L15,1 L15,3 L13,3 L13,1 Z M13,9 L15,9 L15,11 L13,11 L13,9 Z M13,17 L15,17 L15,19 L13,19 L13,17 Z M17,1 L19,1 L19,3 L17,3 L17,1 Z M17,5 L19,5 L19,7 L17,7 L17,5 Z M17,9 L19,9 L19,11 L17,11 L17,9 Z M17,13 L19,13 L19,15 L17,15 L17,13 Z M17,17 L19,17 L19,19 L17,19 L17,17 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>border-vertical</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M0,2 C0,0.8954305 0.898212381,0 1.99079514,0 L18.0092049,0 C19.1086907,0 20,0.887729645 20,2 L20,4 L0,4 L0,2 Z M1,5 L19,5 L19,18.0081158 C19,19.1082031 18.1073772,20 17.0049107,20 L2.99508929,20 C1.8932319,20 1,19.1066027 1,18.0081158 L1,5 Z M7,7 L13,7 L13,9 L7,9 L7,7 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>box</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M10,13 C11.6568542,13 13,11.6568542 13,10 C13,8.34314575 11.6568542,7 10,7 C8.34314575,7 7,8.34314575 7,10 C7,11.6568542 8.34314575,13 10,13 Z M9,4 C9,3.44771525 9.44386482,3 10,3 C10.5522847,3 11,3.44386482 11,4 C11,4.55228475 10.5561352,5 10,5 C9.44771525,5 9,4.55613518 9,4 Z M13.5355339,5.05025253 C13.9260582,4.65972824 14.5565005,4.65700558 14.9497475,5.05025253 C15.3402718,5.44077682 15.3429944,6.07121914 14.9497475,6.46446609 C14.5592232,6.85499039 13.9287809,6.85771305 13.5355339,6.46446609 C13.1450096,6.0739418 13.142287,5.44349949 13.5355339,5.05025253 Z M16,9 C16.5522847,9 17,9.44386482 17,10 C17,10.5522847 16.5561352,11 16,11 C15.4477153,11 15,10.5561352 15,10 C15,9.44771525 15.4438648,9 16,9 Z M14.9497475,13.5355339 C15.3402718,13.9260582 15.3429944,14.5565005 14.9497475,14.9497475 C14.5592232,15.3402718 13.9287809,15.3429944 13.5355339,14.9497475 C13.1450096,14.5592232 13.142287,13.9287809 13.5355339,13.5355339 C13.9260582,13.1450096 14.5565005,13.142287 14.9497475,13.5355339 Z M11,16 C11,16.5522847 10.5561352,17 10,17 C9.44771525,17 9,16.5561352 9,16 C9,15.4477153 9.44386482,15 10,15 C10.5522847,15 11,15.4438648 11,16 Z M6.46446609,14.9497475 C6.0739418,15.3402718 5.44349949,15.3429944 5.05025253,14.9497475 C4.65972824,14.5592232 4.65700558,13.9287809 5.05025253,13.5355339 C5.44077682,13.1450096 6.07121914,13.142287 6.46446609,13.5355339 C6.85499039,13.9260582 6.85771305,14.5565005 6.46446609,14.9497475 Z M4,11 C3.44771525,11 3,10.5561352 3,10 C3,9.44771525 3.44386482,9 4,9 C4.55228475,9 5,9.44386482 5,10 C5,10.5522847 4.55613518,11 4,11 Z M5.05025253,6.46446609 C4.65972824,6.0739418 4.65700558,5.44349949 5.05025253,5.05025253 C5.44077682,4.65972824 6.07121914,4.65700558 6.46446609,5.05025253 C6.85499039,5.44077682 6.85771305,6.07121914 6.46446609,6.46446609 C6.0739418,6.85499039 5.44349949,6.85771305 5.05025253,6.46446609 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>brightness-down</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M10,14 C12.209139,14 14,12.209139 14,10 C14,7.790861 12.209139,6 10,6 C7.790861,6 6,7.790861 6,10 C6,12.209139 7.790861,14 10,14 Z M9,1.0093689 C9,0.451909848 9.44386482,0 10,0 C10.5522847,0 11,0.443353176 11,1.0093689 L11,2.9906311 C11,3.54809015 10.5561352,4 10,4 C9.44771525,4 9,3.55664682 9,2.9906311 L9,1.0093689 Z M15.6502294,2.935557 C16.0444125,2.54137392 16.6778209,2.53568523 17.0710678,2.92893219 C17.4615921,3.31945648 17.4646766,3.94953701 17.064443,4.34977056 L15.6634791,5.7507345 C15.269296,6.14491758 14.6358876,6.15060627 14.2426407,5.75735931 C13.8521164,5.36683502 13.8490319,4.73675449 14.2492655,4.33652094 L15.6502294,2.935557 Z M18.9906311,9 C19.5480902,9 20,9.44386482 20,10 C20,10.5522847 19.5566468,11 18.9906311,11 L17.0093689,11 C16.4519098,11 16,10.5561352 16,10 C16,9.44771525 16.4433532,9 17.0093689,9 L18.9906311,9 Z M17.064443,15.6502294 C17.4586261,16.0444125 17.4643148,16.6778209 17.0710678,17.0710678 C16.6805435,17.4615921 16.050463,17.4646766 15.6502294,17.064443 L14.2492655,15.6634791 C13.8550824,15.269296 13.8493937,14.6358876 14.2426407,14.2426407 C14.633165,13.8521164 15.2632455,13.8490319 15.6634791,14.2492655 L17.064443,15.6502294 Z M11,18.9906311 C11,19.5480902 10.5561352,20 10,20 C9.44771525,20 9,19.5566468 9,18.9906311 L9,17.0093689 C9,16.4519098 9.44386482,16 10,16 C10.5522847,16 11,16.4433532 11,17.0093689 L11,18.9906311 Z M4.34977056,17.064443 C3.95558749,17.4586261 3.32217914,17.4643148 2.92893219,17.0710678 C2.5384079,16.6805435 2.53532344,16.050463 2.935557,15.6502294 L4.33652094,14.2492655 C4.73070401,13.8550824 5.36411236,13.8493937 5.75735931,14.2426407 C6.1478836,14.633165 6.15096806,15.2632455 5.7507345,15.6634791 L4.34977056,17.064443 Z M1.0093689,11 C0.451909848,11 1.4050796e-16,10.5561352 3.83475851e-17,10 C-6.31054776e-17,9.44771525 0.443353176,9 1.0093689,9 L2.9906311,9 C3.54809015,9 4,9.44386482 4,10 C4,10.5522847 3.55664682,11 2.9906311,11 L1.0093689,11 Z M2.935557,4.34977056 C2.54137392,3.95558749 2.53568523,3.32217914 2.92893219,2.92893219 C3.31945648,2.5384079 3.94953701,2.53532344 4.34977056,2.935557 L5.7507345,4.33652094 C6.14491758,4.73070401 6.15060627,5.36411236 5.75735931,5.75735931 C5.36683502,6.1478836 4.73675449,6.15096806 4.33652094,5.7507345 L2.935557,4.34977056 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>brightness-up</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M9,10 L7,10 L7,12 L9,12 L9,14 L11,14 L11,12 L13,12 L13,10 L11,10 L11,8 L9,8 L9,10 Z M0,2.99508929 C0,1.8932319 0.898212381,1 1.99079514,1 L18.0092049,1 C19.1086907,1 20,1.8926228 20,2.99508929 L20,17.0049107 C20,18.1067681 19.1017876,19 18.0092049,19 L1.99079514,19 C0.891309342,19 0,18.1073772 0,17.0049107 L0,2.99508929 Z M2,5 L18,5 L18,17 L2,17 L2,5 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>browser-window-add</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M0,2.99508929 C0,1.8932319 0.898212381,1 1.99079514,1 L18.0092049,1 C19.1086907,1 20,1.8926228 20,2.99508929 L20,17.0049107 C20,18.1067681 19.1017876,19 18.0092049,19 L1.99079514,19 C0.891309342,19 0,18.1073772 0,17.0049107 L0,2.99508929 Z M2,5 L18,5 L18,17 L2,17 L2,5 Z M10,8 L14,13 L6,13 L10,8 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>browser-window-open</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M0,2.99508929 C0,1.8932319 0.898212381,1 1.99079514,1 L18.0092049,1 C19.1086907,1 20,1.8926228 20,2.99508929 L20,17.0049107 C20,18.1067681 19.1017876,19 18.0092049,19 L1.99079514,19 C0.891309342,19 0,18.1073772 0,17.0049107 L0,2.99508929 Z M2,5 L18,5 L18,17 L2,17 L2,5 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>browser-window</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M15.3045988,14.8903852 C15.6126191,14.3102059 15.8280494,13.673533 15.9310427,13 L18.9970707,13 C19.5621186,13 20,12.5522847 20,12 C20,11.4438648 19.5509732,11 18.9970707,11 L16,11 L16,8.41421356 L19.0722962,5.3419174 C19.4582903,4.95592323 19.4615921,4.31945648 19.0710678,3.92893219 C18.6778209,3.53568523 18.0479285,3.53785794 17.6580826,3.92770383 L15.5608261,6.02496034 L4.4391739,6.02496034 L2.3419174,3.92770383 C1.95592323,3.54170967 1.31945648,3.5384079 0.928932188,3.92893219 C0.535685233,4.32217914 0.537857944,4.95207151 0.927703834,5.3419174 L4,8.41421356 L4,11 L1.00292933,11 C0.437881351,11 0,11.4477153 0,12 C0,12.5561352 0.449026756,13 1.00292933,13 L4.06906435,13 C4.17211321,13.6730161 4.38756247,14.3096774 4.69570598,14.8900805 L1.92770383,17.6580826 C1.54170967,18.0440768 1.5384079,18.6805435 1.92893219,19.0710678 C2.32217914,19.4643148 2.95207151,19.4621421 3.3419174,19.0722962 L5.92661633,16.4875972 C6.76466839,17.2628271 7.82437108,17.8025933 9,18.0001127 L9,9.03992409 C9,8.48397016 9.44386482,8.03328045 10,8.03328045 C10.5522847,8.03328045 11,8.4909374 11,9.03992409 L11,18.0000473 C12.1747032,17.8025694 13.2348613,17.26319 14.0735097,16.4877232 L16.6580826,19.0722962 C17.0440768,19.4582903 17.6805435,19.4615921 18.0710678,19.0710678 C18.4643148,18.6778209 18.4621421,18.0479285 18.0722962,17.6580826 L15.3045988,14.8903852 L15.3045988,14.8903852 Z M15,5 C15,2.23857625 12.7614237,0 10,0 C7.23857625,0 5,2.23857625 5,5 L15,5 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>bug</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M2.8430172,13.5784914 C3.61700769,15.1234609 4.87653905,16.3829923 6.4215086,17.1569828 L7.76344287,14.4731143 C6.79783691,13.9893702 6.0106298,13.2021631 5.52688575,12.2365571 L2.8430172,13.5784914 Z M2.8430172,6.4215086 C3.61700769,4.87653905 4.87653905,3.61700769 6.4215086,2.8430172 L7.76344287,5.52688575 C6.79783691,6.0106298 6.0106298,6.79783691 5.52688575,7.76344287 L2.8430172,6.4215086 Z M13.5784914,17.1569828 C15.1234609,16.3829923 16.3829923,15.1234609 17.1569828,13.5784914 L14.4731143,12.2365571 C13.9893702,13.2021631 13.2021631,13.9893702 12.2365571,14.4731143 L13.5784914,17.1569828 Z M17.1569828,6.4215086 C16.3829923,4.87653905 15.1234609,3.61700769 13.5784914,2.8430172 L12.2365571,5.52688575 C13.2021631,6.0106298 13.9893702,6.79783691 14.4731143,7.76344287 L17.1569828,6.4215086 Z M11.1673928,5.13701373 C10.7928692,5.04743534 10.4019741,5 10,5 C9.59802585,5 9.20713083,5.04743534 8.83260721,5.13701373 C9.20713083,5.04743534 9.59802585,5 10,5 C10.4019741,5 10.7928692,5.04743534 11.1673928,5.13701373 Z M10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,0 10,0 C4.4771525,0 0,4.4771525 0,10 C0,15.5228475 4.4771525,20 10,20 Z M10,13 C11.6568542,13 13,11.6568542 13,10 C13,8.34314575 11.6568542,7 10,7 C8.34314575,7 7,8.34314575 7,10 C7,11.6568542 8.34314575,13 10,13 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>buoy</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M2,1.99079514 C2,0.891309342 2.89451376,0 3.99406028,0 L16.0059397,0 C17.1072288,0 18,0.898212381 18,1.99079514 L18,18.0092049 C18,19.1086907 17.1054862,20 16.0059397,20 L3.99406028,20 C2.8927712,20 2,19.1017876 2,18.0092049 L2,1.99079514 Z M5,3 L15,3 L15,5 L5,5 L5,3 Z M5,7 L7,7 L7,9 L5,9 L5,7 Z M9,7 L11,7 L11,9 L9,9 L9,7 Z M13,7 L15,7 L15,9 L13,9 L13,7 Z M5,11 L7,11 L7,13 L5,13 L5,11 Z M9,11 L11,11 L11,13 L9,13 L9,11 Z M13,11 L15,11 L15,17 L13,17 L13,11 Z M5,15 L7,15 L7,17 L5,17 L5,15 Z M9,15 L11,15 L11,17 L9,17 L9,15 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>calculator</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M1,3.99508929 C1,2.8932319 1.8926228,2 2.99508929,2 L17.0049107,2 C18.1067681,2 19,2.8926228 19,3.99508929 L19,18.0049107 C19,19.1067681 18.1073772,20 17.0049107,20 L2.99508929,20 C1.8932319,20 1,19.1073772 1,18.0049107 L1,3.99508929 Z M3,6 L17,6 L17,18 L3,18 L3,6 Z M5,0 L7,0 L7,2 L5,2 L5,0 Z M13,0 L15,0 L15,2 L13,2 L13,0 Z M5,9 L7,9 L7,11 L5,11 L5,9 Z M5,13 L7,13 L7,15 L5,15 L5,13 Z M9,9 L11,9 L11,11 L9,11 L9,9 Z M9,13 L11,13 L11,15 L9,15 L9,13 Z M13,9 L15,9 L15,11 L13,11 L13,9 Z M13,13 L15,13 L15,15 L13,15 L13,13 Z" id="Combined-Shape"></path> </g>
</g>
</svg>calendar</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M0,6.00585866 C0,4.89805351 0.893899798,4 2.0048815,4 L5,4 L7,2 L13,2 L15,4 L17.9951185,4 C19.102384,4 20,4.89706013 20,6.00585866 L20,15.9941413 C20,17.1019465 19.1017876,18 18.0092049,18 L1.99079514,18 C0.891309342,18 0,17.1029399 0,15.9941413 L0,6.00585866 Z M10,16 C12.7614237,16 15,13.7614237 15,11 C15,8.23857625 12.7614237,6 10,6 C7.23857625,6 5,8.23857625 5,11 C5,13.7614237 7.23857625,16 10,16 Z M10,14 C11.6568542,14 13,12.6568542 13,11 C13,9.34314575 11.6568542,8 10,8 C8.34314575,8 7,9.34314575 7,11 C7,12.6568542 8.34314575,14 10,14 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>camera</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M1,10 L4,10 L4,20 L1,20 L1,10 Z M6,0 L9,0 L9,20 L6,20 L6,0 Z M11,8 L14,8 L14,20 L11,20 L11,8 Z M16,4 L19,4 L19,20 L16,20 L16,4 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>chart-bar</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M19.9506248,11 C19.4489003,16.0533227 15.1853481,20 10,20 C4.4771525,20 0,15.5228475 0,10 C0,4.8146519 3.94667731,0.551099672 9,0.0493752426 L9,11 L19.9506248,11 L19.9506248,11 Z M19.8726884,8.4 C19.1906421,4.15869069 15.8413093,0.809357943 11.6,0.127311599 L11.6,8.4 L19.8726884,8.4 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>chart-pie</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M10,15 L18.0092049,15 C19.1017876,15 20,14.1019465 20,12.9941413 L20,3.00585866 C20,1.89706013 19.1086907,1 18.0092049,1 L1.99079514,1 C0.898212381,1 0,1.89805351 0,3.00585866 L0,12.9941413 C0,14.1029399 0.891309342,15 1.99079514,15 L6,15 L6,19 L10,15 Z M5,7 L7,7 L7,9 L5,9 L5,7 Z M9,7 L11,7 L11,9 L9,9 L9,7 Z M13,7 L15,7 L15,9 L13,9 L13,7 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>chat-bubble-dots</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M2.92893219,17.0710678 C6.83417511,20.9763107 13.1658249,20.9763107 17.0710678,17.0710678 C20.9763107,13.1658249 20.9763107,6.83417511 17.0710678,2.92893219 C13.1658249,-0.976310729 6.83417511,-0.976310729 2.92893219,2.92893219 C-0.976310729,6.83417511 -0.976310729,13.1658249 2.92893219,17.0710678 L2.92893219,17.0710678 L2.92893219,17.0710678 Z M15.6568542,15.6568542 C18.7810486,12.5326599 18.7810486,7.46734008 15.6568542,4.34314575 C12.5326599,1.21895142 7.46734008,1.21895142 4.34314575,4.34314575 C1.21895142,7.46734008 1.21895142,12.5326599 4.34314575,15.6568542 C7.46734008,18.7810486 12.5326599,18.7810486 15.6568542,15.6568542 L15.6568542,15.6568542 Z M4,10 L6,8 L9,11 L14,6 L16,8 L9,15 L4,10 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>checkmark-outline</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<polygon id="Path-126" points="0 11 2 9 7 14 18 3 20 5 7 18"></polygon>
</g>
</g>
</svg>checkmark</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<polygon id="Combined-Shape" points="9.29289322 12.9497475 10 13.6568542 15.6568542 8 14.2426407 6.58578644 10 10.8284271 5.75735931 6.58578644 4.34314575 8"></polygon> </g>
</g>
</svg>cheveron-down</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<polygon id="Combined-Shape" points="7.05025253 9.29289322 6.34314575 10 12 15.6568542 13.4142136 14.2426407 9.17157288 10 13.4142136 5.75735931 12 4.34314575"></polygon> </g>
</g>
</svg>cheveron-left</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M9.29289322,12.5355339 L5.75735931,9 L7.17157288,7.58578644 L10,10.4142136 L12.8284271,7.58578644 L14.2426407,9 L10,13.2426407 L9.29289322,12.5355339 L9.29289322,12.5355339 Z M20,10 C20,4.4771525 15.5228475,-5.32907052e-14 10,-5.68434189e-14 C4.4771525,-5.68434189e-14 -5.68434189e-14,4.4771525 -5.68434189e-14,10 C-5.86197757e-14,15.5228475 4.4771525,20 10,20 C15.5228475,20 20,15.5228475 20,10 L20,10 Z M10,2 C5.581722,2 2,5.581722 2,10 C2,14.418278 5.581722,18 10,18 C14.418278,18 18,14.418278 18,10 C18,5.581722 14.418278,2 10,2 L10,2 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>cheveron-outline-down</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M7.46446609,9.29289322 L11,5.75735931 L12.4142136,7.17157288 L9.58578644,10 L12.4142136,12.8284271 L11,14.2426407 L6.75735931,10 L7.46446609,9.29289322 L7.46446609,9.29289322 Z M10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,-5.68434189e-14 10,-5.68434189e-14 C4.4771525,-5.86197757e-14 -5.68434189e-14,4.4771525 -5.77315973e-14,10 C-5.86197757e-14,15.5228475 4.4771525,20 10,20 L10,20 Z M18,10 C18,5.581722 14.418278,2 10,2 C5.581722,2 2,5.581722 2,10 C2,14.418278 5.581722,18 10,18 C14.418278,18 18,14.418278 18,10 L18,10 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>cheveron-outline-left</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M12.5355339,10.7071068 L9,14.2426407 L7.58578644,12.8284271 L10.4142136,10 L7.58578644,7.17157288 L9,5.75735931 L13.2426407,10 L12.5355339,10.7071068 L12.5355339,10.7071068 Z M10,-5.68434189e-14 C4.4771525,-5.68434189e-14 -5.68434189e-14,4.4771525 -5.68434189e-14,10 C-5.68434189e-14,15.5228475 4.4771525,20 10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,-5.32907052e-14 10,-5.68434189e-14 L10,-5.68434189e-14 Z M2,10 C2,14.418278 5.581722,18 10,18 C14.418278,18 18,14.418278 18,10 C18,5.581722 14.418278,2 10,2 C5.581722,2 2,5.581722 2,10 L2,10 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>cheveron-outline-right</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M10.7071068,7.46446609 L14.2426407,11 L12.8284271,12.4142136 L10,9.58578644 L7.17157288,12.4142136 L5.75735931,11 L10,6.75735931 L10.7071068,7.46446609 L10.7071068,7.46446609 Z M-5.68434189e-14,10 C-5.32907052e-14,15.5228475 4.4771525,20 10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,-5.5067062e-14 10,-5.68434189e-14 C4.4771525,-5.68434189e-14 -5.5067062e-14,4.4771525 -5.68434189e-14,10 L-5.68434189e-14,10 Z M10,18 C14.418278,18 18,14.418278 18,10 C18,5.581722 14.418278,2 10,2 C5.581722,2 2,5.581722 2,10 C2,14.418278 5.581722,18 10,18 L10,18 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>cheveron-outline-up</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<polygon id="Combined-Shape" points="12.9497475 10.7071068 13.6568542 10 8 4.34314575 6.58578644 5.75735931 10.8284271 10 6.58578644 14.2426407 8 15.6568542 12.9497475 10.7071068"></polygon>
</g>
</g>
</svg>cheveron-right</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<polygon id="Combined-Shape" points="10.7071068 7.05025253 10 6.34314575 4.34314575 12 5.75735931 13.4142136 10 9.17157288 14.2426407 13.4142136 15.6568542 12"></polygon>
</g>
</g>
</svg>cheveron-up</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M12.9728369,2.59456737 C12.7749064,1.12946324 11.5193533,0 10,0 C8.48064666,0 7.2250936,1.12946324 7.02716314,2.59456737 L5,3 L5,4 L3.99406028,4 C2.89451376,4 2,4.8927712 2,5.99406028 L2,18.0059397 C2,19.1054862 2.8927712,20 3.99406028,20 L16.0059397,20 C17.1054862,20 18,19.1072288 18,18.0059397 L18,5.99406028 C18,4.89451376 17.1072288,4 16.0059397,4 L15,4 L15,3 L12.9728369,2.59456737 Z M5,6 L4,6 L4,18 L16,18 L16,6 L15,6 L15,7 L5,7 L5,6 Z M10,4 C10.5522847,4 11,3.55228475 11,3 C11,2.44771525 10.5522847,2 10,2 C9.44771525,2 9,2.44771525 9,3 C9,3.55228475 9.44771525,4 10,4 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>clipboard</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M11.4142136,10 L14.2426407,7.17157288 L12.8284271,5.75735931 L10,8.58578644 L7.17157288,5.75735931 L5.75735931,7.17157288 L8.58578644,10 L5.75735931,12.8284271 L7.17157288,14.2426407 L10,11.4142136 L12.8284271,14.2426407 L14.2426407,12.8284271 L11.4142136,10 L11.4142136,10 Z M2.92893219,17.0710678 C6.83417511,20.9763107 13.1658249,20.9763107 17.0710678,17.0710678 C20.9763107,13.1658249 20.9763107,6.83417511 17.0710678,2.92893219 C13.1658249,-0.976310729 6.83417511,-0.976310729 2.92893219,2.92893219 C-0.976310729,6.83417511 -0.976310729,13.1658249 2.92893219,17.0710678 L2.92893219,17.0710678 Z M4.34314575,15.6568542 C7.46734008,18.7810486 12.5326599,18.7810486 15.6568542,15.6568542 C18.7810486,12.5326599 18.7810486,7.46734008 15.6568542,4.34314575 C12.5326599,1.21895142 7.46734008,1.21895142 4.34314575,4.34314575 C1.21895142,7.46734008 1.21895142,12.5326599 4.34314575,15.6568542 L4.34314575,15.6568542 Z" id="Combined-Shape-Copy"></path>
</g>
</g>
</svg>close-outline</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M11.4142136,10 L14.2426407,7.17157288 L12.8284271,5.75735931 L10,8.58578644 L7.17157288,5.75735931 L5.75735931,7.17157288 L8.58578644,10 L5.75735931,12.8284271 L7.17157288,14.2426407 L10,11.4142136 L12.8284271,14.2426407 L14.2426407,12.8284271 L11.4142136,10 L11.4142136,10 Z M2.92893219,17.0710678 C6.83417511,20.9763107 13.1658249,20.9763107 17.0710678,17.0710678 C20.9763107,13.1658249 20.9763107,6.83417511 17.0710678,2.92893219 C13.1658249,-0.976310729 6.83417511,-0.976310729 2.92893219,2.92893219 C-0.976310729,6.83417511 -0.976310729,13.1658249 2.92893219,17.0710678 L2.92893219,17.0710678 Z" id="Combined-Shape-Copy"></path>
</g>
</g>
</svg>close-solid</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M16.8792928,9.09695343 C18.6654343,9.4976045 20,11.09295 20,13 C20,15.209139 18.209139,17 16,17 L5,17 C2.23857625,17 0,14.7614237 0,12 C0,9.58046798 1.71857515,7.56233069 4.00162508,7.09968852 C4.00054449,7.06659179 4,7.03335948 4,7 C4,5.34314575 5.34314575,4 7,4 C7.55384606,4 8.07263826,4.1500834 8.51792503,4.41179863 C9.4182103,3.53797709 10.6462795,3 12,3 C14.7614237,3 17,5.23857625 17,8 C17,8.37684164 16.9583108,8.74394625 16.8792928,9.09695343 Z M10,7 L14,11 L6,11 L10,7 Z M9,11 L11,11 L11,14 L9,14 L9,11 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>cloud-upload</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M16.8792928,9.09695343 C18.6654343,9.4976045 20,11.09295 20,13 C20,15.209139 18.209139,17 16,17 L5,17 C2.23857625,17 0,14.7614237 0,12 C0,9.58046798 1.71857515,7.56233069 4.00162508,7.09968852 C4.00054449,7.06659179 4,7.03335948 4,7 C4,5.34314575 5.34314575,4 7,4 C7.55384606,4 8.07263826,4.1500834 8.51792503,4.41179863 C9.4182103,3.53797709 10.6462795,3 12,3 C14.7614237,3 17,5.23857625 17,8 C17,8.37684164 16.9583108,8.74394625 16.8792928,9.09695343 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>cloud</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M0.707106781,10.7071068 L-2.00988464e-13,10 L5.48528137,4.51471863 L6.89949494,5.92893219 L2.82842712,10 L6.89949494,14.0710678 L5.48528137,15.4852814 L0.707106781,10.7071068 Z M19.2928932,10.7071068 L20,10 L14.5147186,4.51471863 L13.1005051,5.92893219 L17.1715729,10 L13.1005051,14.0710678 L14.5147186,15.4852814 L19.2928932,10.7071068 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>code</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M3.07341517,8.98249621 C3.02504367,9.31467099 3,9.65441086 3,10 C3,10.3455891 3.02504367,10.685329 3.07341517,11.0175038 L0.339745962,13.2679492 L2.33974596,16.7320508 L5.6562237,15.4895842 C6.186564,15.9097976 6.77922001,16.2547893 7.41807354,16.5084412 L8,20 L12,20 L12.5819265,16.5084412 C13.22078,16.2547893 13.813436,15.9097976 14.3437763,15.4895842 L17.660254,16.7320508 L19.660254,13.2679492 L16.9265848,11.0175038 C16.9749563,10.685329 17,10.3455891 17,10 C17,9.65441086 16.9749563,9.31467099 16.9265848,8.98249621 L19.660254,6.73205081 L17.660254,3.26794919 L14.3437763,4.51041581 C13.813436,4.09020245 13.22078,3.7452107 12.5819265,3.49155876 L12,0 L8,0 L7.41807354,3.49155876 C6.77922001,3.7452107 6.186564,4.09020245 5.6562237,4.51041581 L2.33974596,3.26794919 L0.339745962,6.73205081 L3.07341517,8.98249621 Z M10,13 C11.6568542,13 13,11.6568542 13,10 C13,8.34314575 11.6568542,7 10,7 C8.34314575,7 7,8.34314575 7,10 C7,11.6568542 8.34314575,13 10,13 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>cog</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M9,20 L18.0092049,20 C19.1017876,20 20,19.1054196 20,18.0018986 L20,13.9981014 C20,12.8867064 19.1086907,12 18.0092049,12 L15.0710678,12 L9.01026535,18.0608025 C9.00998975,18.139716 9.00652788,18.217877 9,18.2951708 L9,20 Z M9,16.6568542 L16.7344309,8.92242337 C17.5070036,8.14985069 17.5095717,6.88215473 16.7292646,6.10184761 L13.8981524,3.27073539 C13.1122774,2.48486045 11.8550305,2.48811526 11.0775766,3.26556912 L9,5.34314575 L9,16.6568542 Z M0,1.99079514 C0,0.891309342 0.886706352,0 1.99810135,0 L6.00189865,0 C7.10541955,0 8,0.898212381 8,1.99079514 L8,18.0092049 C8,19.1086907 7.11329365,20 6.00189865,20 L1.99810135,20 C0.894580447,20 0,19.1017876 0,18.0092049 L0,1.99079514 Z M4,17 C4.55228475,17 5,16.5522847 5,16 C5,15.4477153 4.55228475,15 4,15 C3.44771525,15 3,15.4477153 3,16 C3,16.5522847 3.44771525,17 4,17 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>color-palette</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M2,4 L2,18 L16,18 L16,12 L18,10 L18,20 L17,20 L0,20 L0,19 L0,3 L0,2 L10,2 L8,4 L2,4 Z M12.2928932,3.70710678 L4,12 L4,16 L8,16 L16.2928932,7.70710678 L12.2928932,3.70710678 Z M13.7071068,2.29289322 L16,0 L20,4 L17.7071068,6.29289322 L13.7071068,2.29289322 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>compose</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M3,19 L7,17 L13,17 L17,19 L17,20 L3,20 L3,19 Z M0,2.00010618 C0,0.895478039 0.898212381,0 1.99079514,0 L18.0092049,0 C19.1086907,0 20,0.890058413 20,2.00010618 L20,14.9998938 C20,16.104522 19.1017876,17 18.0092049,17 L1.99079514,17 C0.891309342,17 0,16.1099416 0,14.9998938 L0,2.00010618 Z M2,2 L18,2 L18,13 L2,13 L2,2 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>computer-desktop</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M18,16 L18,3.99406028 C18,2.89451376 17.1072288,2 16.0059397,2 L3.99406028,2 C2.89451376,2 2,2.8927712 2,3.99406028 L2,16 L0,16 L0,17 C0,17.5561352 0.444045377,18 0.99180311,18 L19.0081969,18 C19.5446944,18 20,17.5522847 20,17 L20,16 L18,16 Z M4,4 L16,4 L16,13 L4,13 L4,4 Z M8,15 L12,15 L12,16 L8,16 L8,15 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>computer-laptop</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M14,11 L8.00585866,11 C6.89706013,11 6,10.1081436 6,9.00798298 L6,1.99201702 C6,0.900176167 6.89805351,0 8.00585866,0 L17.9941413,0 C19.1029399,0 20,0.891856397 20,1.99201702 L20,9.00798298 C20,10.0998238 19.1019465,11 17.9941413,11 L17,11 L17,14 L14,11 Z M14,13 L14,15.007983 C14,16.1081436 13.1029399,17 11.9941413,17 L6,17 L3,20 L3,17 L2.00585866,17 C0.898053512,17 0,16.0998238 0,15.007983 L0,7.99201702 C0,6.8918564 0.897060126,6 2.00585866,6 L4,6 L4,8.99349548 C4,11.2060545 5.78916089,13 7.99620271,13 L14,13 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>conversation</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M0,3.99406028 C0,2.8927712 0.898212381,2 1.99079514,2 L18.0092049,2 C19.1086907,2 20,2.89451376 20,3.99406028 L20,16.0059397 C20,17.1072288 19.1017876,18 18.0092049,18 L1.99079514,18 C0.891309342,18 0,17.1054862 0,16.0059397 L0,3.99406028 Z M2,4 L18,4 L18,16 L2,16 L2,4 Z M2,6 L18,6 L18,10 L2,10 L2,6 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>credit-card</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M11.9321237,9.48208981 C12.110309,10.1493234 11.9376722,10.8907549 11.4142136,11.4142136 C10.633165,12.1952621 9.36683502,12.1952621 8.58578644,11.4142136 C7.80473785,10.633165 7.80473785,9.36683502 8.58578644,8.58578644 C9.10924511,8.06232776 9.8506766,7.88969103 10.5179102,8.06787625 L13.5355339,5.05025253 L14.9497475,6.46446609 L11.9321237,9.48208981 Z M15.5995658,15.7135719 C17.0809102,14.261603 18,12.238134 18,10 C18,5.581722 14.418278,2 10,2 C5.581722,2 2,5.581722 2,10 C2,12.238134 2.91908983,14.261603 4.40043425,15.7135719 C5.99810554,14.63183 7.92526686,14 10,14 C12.0747331,14 14.0018945,14.63183 15.5995658,15.7135719 Z M10,20 C15.5228475,20 20,15.5228475 20,10 C20,4.4771525 15.5228475,0 10,0 C4.4771525,0 0,4.4771525 0,10 C0,15.5228475 4.4771525,20 10,20 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>dashboard</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M9,11 L7,11 L7,13 L9,13 L9,15 L11,15 L11,13 L13,13 L13,11 L11,11 L11,9 L9,9 L9,11 Z M1,3.99508929 C1,2.8932319 1.8926228,2 2.99508929,2 L17.0049107,2 C18.1067681,2 19,2.8926228 19,3.99508929 L19,18.0049107 C19,19.1067681 18.1073772,20 17.0049107,20 L2.99508929,20 C1.8932319,20 1,19.1073772 1,18.0049107 L1,3.99508929 Z M3,6 L17,6 L17,18 L3,18 L3,6 Z M5,0 L7,0 L7,2 L5,2 L5,0 Z M13,0 L15,0 L15,2 L13,2 L13,0 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>date-add</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M5,4 C6.1045695,4 7,3.1045695 7,2 C7,0.8954305 6.1045695,0 5,0 C3.8954305,0 3,0.8954305 3,2 C3,3.1045695 3.8954305,4 5,4 Z M10,4 C11.1045695,4 12,3.1045695 12,2 C12,0.8954305 11.1045695,0 10,0 C8.8954305,0 8,0.8954305 8,2 C8,3.1045695 8.8954305,4 10,4 Z M15,4 C16.1045695,4 17,3.1045695 17,2 C17,0.8954305 16.1045695,0 15,0 C13.8954305,0 13,0.8954305 13,2 C13,3.1045695 13.8954305,4 15,4 Z M5,9 C6.1045695,9 7,8.1045695 7,7 C7,5.8954305 6.1045695,5 5,5 C3.8954305,5 3,5.8954305 3,7 C3,8.1045695 3.8954305,9 5,9 Z M10,9 C11.1045695,9 12,8.1045695 12,7 C12,5.8954305 11.1045695,5 10,5 C8.8954305,5 8,5.8954305 8,7 C8,8.1045695 8.8954305,9 10,9 Z M15,9 C16.1045695,9 17,8.1045695 17,7 C17,5.8954305 16.1045695,5 15,5 C13.8954305,5 13,5.8954305 13,7 C13,8.1045695 13.8954305,9 15,9 Z M5,14 C6.1045695,14 7,13.1045695 7,12 C7,10.8954305 6.1045695,10 5,10 C3.8954305,10 3,10.8954305 3,12 C3,13.1045695 3.8954305,14 5,14 Z M10,14 C11.1045695,14 12,13.1045695 12,12 C12,10.8954305 11.1045695,10 10,10 C8.8954305,10 8,10.8954305 8,12 C8,13.1045695 8.8954305,14 10,14 Z M10,20 C11.1045695,20 12,19.1045695 12,18 C12,16.8954305 11.1045695,16 10,16 C8.8954305,16 8,16.8954305 8,18 C8,19.1045695 8.8954305,20 10,20 Z M15,14 C16.1045695,14 17,13.1045695 17,12 C17,10.8954305 16.1045695,10 15,10 C13.8954305,10 13,10.8954305 13,12 C13,13.1045695 13.8954305,14 15,14 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>dial-pad</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M9,10 L7,10 L7,12 L9,12 L9,14 L11,14 L11,12 L13,12 L13,10 L11,10 L11,8 L9,8 L9,10 Z M4,18 L4,2 L12,2 L12,6 L16,6 L16,18 L4,18 Z M2,19 L2,0 L3,0 L12,0 L14,0 L18,4 L18,6 L18,20 L17,20 L2,20 L2,19 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>document-add</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon-shape">
<path d="M4,18 L4,2 L12,2 L12,6 L16,6 L16,18 L4,18 Z M2,19 L2,0 L3,0 L12,0 L14,0 L18,4 L18,6 L18,20 L17,20 L2,20 L2,19 Z" id="Combined-Shape"></path>
</g>
</g>
</svg>document</span>
</div>
<div class="icon-container col-xs-12 col-sm-4">
<span class="svg-icon">