-
Notifications
You must be signed in to change notification settings - Fork 4
/
icons.html
82 lines (79 loc) · 2.9 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
---
layout: default
title: Icons
subnav: UI
---
<section id="icons">
<h2 id="UI" class="m-b-1-xs inline-block-xs">Common UI Icons</h2><span class="button button--small-xs circle relative-xs pos-t-05-xs pos-l-1-xs">WIP: Only use in docs</span>
<p class="m-b-2-xs">Currently, Leap only comes with a few basic icons that will cover a lot of common UI pieces. For all other icons, continue using our rails helper that is built into the Treehouse app.</p>
<table class="table-border-rows m-b-4-xs">
<thead>
<tr>
<th>Icon</th>
<th>Icon Name</th>
</tr>
</thead>
<tbody>
<tr>
<td class="table-icon">{% include icon.html icon="add" %}</td>
<td><code>icon-add</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="add" class="rotate-45-xs" %}</td>
<td><code>icon-add, rotate-45-xs</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="arrow" %}</td>
<td><code>icon-arrow</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="arrow" class="rotate-90-xs" %}</td>
<td><code>icon-arrow, rotate-90-xs</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="arrow" class="rotate-180-xs" %}</td>
<td><code>icon-arrow, rotate-180-xs</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="arrow" class="rotate-270-xs" %}</td>
<td><code>icon-arrow, rotate-270-xs</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="chevron" %}</td>
<td><code>icon-chevron</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="chevron" class="rotate-90-xs" %}</td>
<td><code>icon-chevron, rotate-90-xs</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="chevron" class="rotate-180-xs" %}</td>
<td><code>icon-chevron, rotate-180-xs</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="chevron" class="rotate-270-xs" %}</td>
<td><code>icon-chevron, rotate-270-xs</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="search" %}</td>
<td><code>icon-search</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="maintenance" %}</td>
<td><code>icon-maintenance</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="info" %}</td>
<td><code>icon-info</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="gear" %}</td>
<td><code>icon-gear</code></td>
</tr>
<tr>
<td class="table-icon">{% include icon.html icon="star" %}</td>
<td><code>icon-star</code></td>
</tr>
</tbody>
</table>
</section>