You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+10-5
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,8 @@ Include `feather.js` or `feather.min.js` with a `<script>` tag:
83
83
<scriptsrc="path/to/dist/feather.js"></script>
84
84
```
85
85
86
-
> [!NOTE] > `feather.js` and `feather.min.js` are located in the `dist` directory of the npm package.
86
+
> [!NOTE]
87
+
> `feather.js` and `feather.min.js` are located in the `dist` directory of the npm package.
87
88
88
89
Or load the script from a CDN provider:
89
90
@@ -198,7 +199,8 @@ Include an icon on your page with the following markup:
198
199
</svg>
199
200
```
200
201
201
-
> [!NOTE] > `circle` in the above example can be replaced with any valid icon name. See the complete list of icon names at [feathericons.com](https://feathericons.com).
202
+
> [!NOTE]
203
+
> `circle` in the above example can be replaced with any valid icon name. See the complete list of icon names at [feathericons.com](https://feathericons.com).
202
204
203
205
However, this markup can be simplified using a simple CSS class to avoid repetition of SVG attributes between icons:
204
206
@@ -257,7 +259,8 @@ feather.icons.x.toString();
257
259
// '<line ... /><line ... />'
258
260
```
259
261
260
-
> [!NOTE] > `x` in the above example can be replaced with any valid icon name. See the complete list of icon names at [feathericons.com](https://feathericons.com). Icons with multi-word names (e.g. `arrow-right`) **cannot** be accessed using dot notation (e.g. `feather.icons.x`). Instead, use bracket notation (e.g. `feather.icons['arrow-right']`).
262
+
> [!NOTE]
263
+
> `x` in the above example can be replaced with any valid icon name. See the complete list of icon names at [feathericons.com](https://feathericons.com). Icons with multi-word names (e.g. `arrow-right`) **cannot** be accessed using dot notation (e.g. `feather.icons.x`). Instead, use bracket notation (e.g. `feather.icons['arrow-right']`).
0 commit comments