@iconify-json/material-icon-theme 1.2.0
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 +20 -0
- package/chars.json +1 -0
- package/icons.json +3740 -0
- package/index.d.ts +8 -0
- package/index.js +9 -0
- package/index.mjs +6 -0
- package/info.json +24 -0
- package/metadata.json +1 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Material Icon Theme
|
|
2
|
+
|
|
3
|
+
This package contains icon data for Material Icon Theme icon set.
|
|
4
|
+
|
|
5
|
+
Files:
|
|
6
|
+
|
|
7
|
+
- Icon data is stored in `icons.json` in `IconifyJSON` format. See [IconifyJSON documentation](https://iconify.design/docs/types/iconify-json.html).
|
|
8
|
+
- Icon set information is stored in `info.json` in `IconifyInfo` format. See [IconifyInfo documentation](https://iconify.design/docs/types/iconify-info.html).
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm install @iconify-json/material-icon-theme --save-dev
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
Icon data can be used with many tools and components, see [Iconify documentation](https://iconify.design/docs/usage/).
|
|
19
|
+
|
|
20
|
+
To convert to SVG, you can use [Iconify Utils](https://iconify.design/docs/libraries/utils/examples/export-svgs-from-icon-set.html) for basic usage or [Iconify Tools](https://iconify.design/docs/libraries/tools/).
|
package/chars.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|