@iconify-solid/material-symbols-light 1.0.4 → 1.0.5
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.
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.waox7ihg {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M13.69 19.379q-.069-.11-.044-.27l.816-5.648h-3.877q-.49 0-.727-.444t.055-.848l5.502-7.571q.106-.13.23-.159t.255.022t.199.16t.043.27l-.815 5.667h3.877q.49 0 .717.444t-.065.848l-5.483 7.552q-.106.13-.23.159t-.255-.022t-.198-.16M4.5 17.25q-.213 0-.356-.144T4 16.749t.144-.356t.356-.143h6.646q.25 0 .375.155t.125.341t-.125.345t-.375.159zm-1-4.75q-.213 0-.356-.144T3 11.999t.144-.356t.356-.143h3q.25 0 .375.155t.125.342t-.125.344t-.375.159zm1.98-4.75q-.212 0-.355-.144t-.144-.357t.144-.356t.356-.143h4.548q.25 0 .375.155t.125.341t-.125.345t-.375.159z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="waox7ihg"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:bolt-boost-rounded"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-solid';
|
|
2
|
+
import { splitProps } from 'solid-js';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
const content = `<style>.y8sp8nb {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("m13.52 20l.942-6.539H8.994L15.846 4h.423l-.942 6.558h5.448L13.942 20zM4 17.25v-1h7.72l-.147 1zM3 12.5v-1h4.489l-.739 1zm1.98-4.75v-1h6.024l-.72 1z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="y8sp8nb"/>`;
|
|
10
|
+
|
|
11
|
+
/** @param props {{width?: string; height?: string;}} */
|
|
12
|
+
function Component(props) {
|
|
13
|
+
const [local, others] = splitProps(props, ["width","height"]);
|
|
14
|
+
|
|
15
|
+
return (<Icon width={local.width} height={local.height} viewBox={viewBox} content={content} fallback={"material-symbols-light:bolt-boost"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "material-symbols-light",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Material Symbols Light",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 15335,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Google",
|
|
8
8
|
"url": "https://github.com/google/material-design-icons"
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
],
|
|
29
29
|
"palette": false
|
|
30
30
|
},
|
|
31
|
-
"lastModified":
|
|
31
|
+
"lastModified": 1775804586
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-solid/material-symbols-light",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.5",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/material-symbols-light/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -7490,6 +7490,14 @@
|
|
|
7490
7490
|
"types": "./types/vn2rmosy.d.ts",
|
|
7491
7491
|
"default": "./components/b/bolt.jsx"
|
|
7492
7492
|
},
|
|
7493
|
+
"./bolt-boost": {
|
|
7494
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
7495
|
+
"default": "./components/b/bolt-boost.jsx"
|
|
7496
|
+
},
|
|
7497
|
+
"./bolt-boost-rounded": {
|
|
7498
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
7499
|
+
"default": "./components/b/bolt-boost-rounded.jsx"
|
|
7500
|
+
},
|
|
7493
7501
|
"./bolt-outline": {
|
|
7494
7502
|
"types": "./types/vn2rmosy.d.ts",
|
|
7495
7503
|
"default": "./components/b/bolt-outline.jsx"
|