microns 1.0.8 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -7
- package/fonts/microns.eot +0 -0
- package/fonts/microns.woff +0 -0
- package/fonts/microns.woff2 +0 -0
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
# Microns
|
|
2
|
-
|
|
2
|
+

|
|
3
|
+

|
|
4
|
+

|
|
5
|
+
|
|
6
|
+
The universal icon set for user interfaces. [Read more](https://www.s-ings.com/projects/microns-icon-font/).
|
|
3
7
|
|
|
4
|
-
Find out more at https://www.s-ings.com/projects/microns-icon-font/
|
|
5
8
|
|
|
6
9
|
```
|
|
7
10
|
npm install microns
|
|
8
11
|
```
|
|
9
12
|
|
|
10
|
-
-----
|
|
11
|
-
|
|
12
13
|
Microns are a no-nonsense set of icons designed specifically for user
|
|
13
14
|
interfaces. Rather than provide a large library of unnecessary glyphs,
|
|
14
15
|
microns provide a sensible baseline of well-drawn icons that will cover
|
|
@@ -148,14 +149,42 @@ microns provide a sensible baseline of well-drawn icons that will cover
|
|
|
148
149
|
</tr>
|
|
149
150
|
</table>
|
|
150
151
|
|
|
151
|
-
|
|
152
|
+
## Using Microns
|
|
153
|
+
|
|
154
|
+
Microns can be consumed as icon fonts or SVG files. Import the fonts with the provided CSS or Sass files.
|
|
155
|
+
|
|
156
|
+
A JSON dictionary provides a list of icon classes and corresponding unicode points.
|
|
157
|
+
|
|
158
|
+
```
|
|
159
|
+
icons.json
|
|
160
|
+
|
|
161
|
+
fonts/
|
|
162
|
+
microns.css
|
|
163
|
+
microns.scss
|
|
164
|
+
microns.woff2
|
|
165
|
+
microns.woff
|
|
166
|
+
microns.ttf
|
|
167
|
+
microns.svg
|
|
168
|
+
microns.eot
|
|
169
|
+
|
|
170
|
+
svg/
|
|
171
|
+
align-center.svg
|
|
172
|
+
align-left.svg
|
|
173
|
+
align-right.svg
|
|
174
|
+
arrow-down.svg
|
|
175
|
+
arrow-left.svg
|
|
176
|
+
arrow-right.svg
|
|
177
|
+
...
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
## License
|
|
152
181
|
|
|
153
|
-
|
|
182
|
+
### Icons/Artwork
|
|
154
183
|
|
|
155
184
|
Distributed under
|
|
156
185
|
[CC BY-SA](http://creativecommons.org/licenses/by-sa/3.0/) licence.
|
|
157
186
|
|
|
158
|
-
|
|
187
|
+
### Font
|
|
159
188
|
|
|
160
189
|
Distributed under
|
|
161
190
|
[SIL Open Font Licence](http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web) licence.
|
package/fonts/microns.eot
CHANGED
|
Binary file
|
package/fonts/microns.woff
CHANGED
|
Binary file
|
package/fonts/microns.woff2
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "microns",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "The universal icon set for user interfaces.",
|
|
5
5
|
"browser": "css/microns.css",
|
|
6
6
|
"homepage": "https://www.s-ings.com/projects/microns-icon-font/",
|
|
@@ -33,9 +33,8 @@
|
|
|
33
33
|
},
|
|
34
34
|
"license": "(OFL-1.1 OR CC-BY-SA-4.0)",
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"fonteditor-core": "^2.
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"svgpath": "^2.2.2"
|
|
36
|
+
"fonteditor-core": "^2.1.6",
|
|
37
|
+
"handlebars": "^4.7.7",
|
|
38
|
+
"svgpath": "^2.3.1"
|
|
40
39
|
}
|
|
41
40
|
}
|