@siemens/ix-icons 1.0.0-beta.3 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +11 -1
- package/dist/css/ix-icons.css +436 -433
- package/dist/fonts/ix-icons.eot +0 -0
- package/dist/fonts/ix-icons.svg +443 -434
- package/dist/fonts/ix-icons.ttf +0 -0
- package/dist/fonts/ix-icons.woff +0 -0
- package/dist/fonts/ix-icons.woff2 +0 -0
- package/dist/sample.html +484 -433
- package/dist/sample.json +6 -0
- package/dist/scss/ix-icons.scss +436 -433
- package/dist/svg/cogwheel-filled.svg +9 -0
- package/dist/svg/download.svg +2 -2
- package/dist/svg/split-horizontally.svg +9 -0
- package/dist/svg/split-vertically.svg +9 -0
- package/package.json +8 -4
package/README.md
CHANGED
@@ -8,7 +8,6 @@ SPDX-License-Identifier: MIT
|
|
8
8
|
|
9
9
|
> Siemens Industrial Experience Icons
|
10
10
|
|
11
|
-
![version](https://img.shields.io/badge/version-0.0.0-green.svg)
|
12
11
|
![npm](https://img.shields.io/badge/npm-%3E%3D8.x.x-blue.svg)
|
13
12
|
![node](https://img.shields.io/badge/node-%3E%3D16.16.x-blue.svg)
|
14
13
|
![yarn](https://img.shields.io/badge/yarn->=1.x.x-blue.svg)
|
@@ -18,6 +17,17 @@ Icon web font library for `@siemens/ix`
|
|
18
17
|
|
19
18
|
## Usage
|
20
19
|
|
20
|
+
Using icons within your project. You need to:
|
21
|
+
|
22
|
+
- Install `@siemens/ix-icons` e.g `npm install --save @siemens/ix-icons`
|
23
|
+
- Load styling `@siemens/ix-icons/dist/scss/ix-icons.css` e.g
|
24
|
+
|
25
|
+
```scss
|
26
|
+
@import '@siemens/ix-icons/dist/scss/ix-icons.css';
|
27
|
+
```
|
28
|
+
|
29
|
+
## Development
|
30
|
+
|
21
31
|
### Installation
|
22
32
|
|
23
33
|
```sh
|