@iconify-solid/material-symbols 1.0.19 → 1.0.20
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/components/s/sign-language-off-outline-rounded.jsx +18 -0
- package/components/s/sign-language-off-outline-sharp.jsx +18 -0
- package/components/s/sign-language-off-outline.jsx +18 -0
- package/components/s/sign-language-off-rounded.jsx +18 -0
- package/components/s/sign-language-off-sharp.jsx +18 -0
- package/components/s/sign-language-off.jsx +18 -0
- package/iconify.json +2 -2
- package/package.json +25 -1
|
@@ -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>.o746byb1e {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M7.625 18.925L1.8 17.8q-.425-.075-.65-.4T1 16.65q.075-.4.412-.637t.763-.163l6 1.125zm.95-3.4l-6.75-1.85q-.425-.1-.612-.45t-.063-.775q.125-.4.45-.6t.75-.1L9.1 13.6zm5.05-6.325L9.65 3.475q-.25-.35-.175-.738T9.9 2.1q.35-.225.738-.162t.662.412l3.975 5.775zm4.825 6.4l-1.525-1.475L18.9 12.9q.15-.075.238-.213t.137-.337L20.3 9l-2.2 2.425L14.375 2.4q-.175-.35-.012-.737T14.9 1.1q.4-.15.775 0t.55.525l2.525 6.1l1.15-1.3q.275-.3.65-.45t.8-.125q.425.05.775.238t.6.537l.275.4l-1.8 5.925q-.15.5-.45.913t-.725.687zm-3.175-.3L4.75 9.8q-.4-.2-.513-.587t.088-.763q.2-.35.588-.475t.762.05l4.9 2.575zM2.75 22.225q-.425-.05-.7-.363t-.225-.737t.363-.675t.737-.225L11.55 21q.725.075 1.325-.325t.8-1.125l.65-2.4L2.1 4.9q-.275-.275-.288-.687T2.1 3.5q.275-.275.7-.275t.7.275l17 17q.275.275.288.688t-.288.712q-.275.275-.7.275t-.7-.275l-3.15-3.125l-.35 1.325q-.4 1.425-1.587 2.225T11.375 23zm14.175-8.1");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="o746byb1e"/>`;
|
|
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:sign-language-off-outline-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>.qewwuhb9l {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("m7.625 18.925l-6.8-1.3l.35-1.95l7 1.3zm.95-3.4l-7.7-2.075l.525-1.925L9.1 13.6zm5.05-6.325l-4.55-6.5L10.7 1.575l4.575 6.55zm4.825 6.4l-1.525-1.475L18.9 12.9q.15-.075.238-.213t.137-.337L20.3 9l-2.2 2.425l-4.15-9.9L15.825.75l2.925 6.975L20.725 5.5l2.35 1.325L21.2 12.95q-.15.5-.45.913t-.725.687zm-3.175-.3L3.85 9.375l.925-1.75l5.8 2.975zm-13.55 6.825l.175-1.95l9.65.825q.725.075 1.325-.325t.8-1.125l.65-2.4L1.4 4.2l1.4-1.4l18.4 18.4l-1.4 1.4l-3.85-3.825l-.35 1.325q-.4 1.425-1.587 2.225T11.375 23zm15.2-8");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="qewwuhb9l"/>`;
|
|
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:sign-language-off-outline-sharp"} {...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>.je-afto6l {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M7.625 18.925L1.8 17.8q-.425-.075-.65-.4T1 16.65q.075-.4.412-.637t.763-.163l6 1.125zm.95-3.4l-6.75-1.85q-.425-.1-.612-.45t-.063-.775q.125-.4.45-.6t.75-.1L9.1 13.6zm5.05-6.325L9.65 3.475q-.25-.35-.175-.738T9.9 2.1q.35-.225.738-.162t.662.412l3.975 5.775zm4.825 6.4l-1.525-1.475L18.9 12.9q.15-.075.238-.213t.137-.337L20.3 9l-2.2 2.425L14.375 2.4q-.175-.35-.012-.737T14.9 1.1q.4-.15.775 0t.55.525l2.525 6.1l1.15-1.3q.275-.3.65-.45t.8-.125q.425.05.775.238t.6.537l.275.4l-1.8 5.925q-.15.5-.45.913t-.725.687zm-3.175-.3L4.75 9.8q-.4-.2-.513-.587t.088-.763q.2-.35.588-.475t.762.05l4.9 2.575zM2.75 22.225q-.425-.05-.7-.363t-.225-.737t.363-.675t.737-.225L11.55 21q.725.075 1.325-.325t.8-1.125l.65-2.4L1.4 4.2l1.4-1.4l18.4 18.4l-1.4 1.4l-3.85-3.825l-.35 1.325q-.4 1.425-1.587 2.225T11.375 23zm14.175-8.1");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="je-afto6l"/>`;
|
|
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:sign-language-off-outline"} {...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>.l919_hi1f {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M2.75 22.225q-.425-.05-.7-.363t-.225-.737t.363-.675t.737-.225l4.225.375l.475-1.675L1.8 17.8q-.425-.075-.65-.4T1 16.65q.075-.4.412-.638t.763-.162l5.975 1.125l.425-1.45l-6.75-1.85q-.425-.1-.612-.45t-.063-.775q.125-.4.45-.6t.75-.1L9.1 13.6l.375-1.325L2.1 4.9q-.275-.275-.288-.687T2.1 3.5q.275-.275.7-.275t.7.275l17 17q.275.275.288.688t-.288.712q-.275.275-.7.275t-.7-.275l-3.15-3.125l-.35 1.325q-.375 1.425-1.575 2.225t-2.65.675zm15.7-6.625l-5.8-5.75l.85-.575l-3.85-5.8q-.25-.35-.175-.737T9.9 2.1q.35-.225.738-.162t.662.412l3.85 5.825l1.25-.85L14.375 2.4q-.175-.35-.013-.737T14.9 1.1q.4-.15.775 0t.55.525l2.525 6.1l1.15-1.3q.275-.3.65-.462t.8-.113q.725.05 1.2.575t.25 1.3l-1.6 5.225q-.15.5-.45.913t-.725.687zm-3.175-.3L4.75 9.8q-.4-.2-.513-.587t.088-.763q.2-.35.588-.475t.762.05l4.9 2.575z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="l919_hi1f"/>`;
|
|
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:sign-language-off-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>.iamjd_raz {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("m1.725 22.125l.175-1.95l5.25.425l.475-1.675l-6.8-1.325l.35-1.925l6.975 1.3l.425-1.45l-7.7-2.075l.525-1.925L9.1 13.6l.375-1.325L1.4 4.2l1.4-1.4l18.4 18.4l-1.4 1.4l-3.85-3.825l-.35 1.325q-.375 1.425-1.575 2.225t-2.65.675zM18.45 15.6l-5.8-5.75l.85-.575L9.075 2.7L10.7 1.575l4.45 6.6l1.25-.85l-2.45-5.8L15.825.75l2.925 6.975L20.725 5.5l2.35 1.325L21.2 12.95q-.15.5-.45.913t-.725.687zm-3.175-.3L3.85 9.375l.9-1.775l5.825 3z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="iamjd_raz"/>`;
|
|
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:sign-language-off-sharp"} {...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>.p-4y--bgw {
|
|
6
|
+
fill: currentColor;
|
|
7
|
+
d: path("M2.75 22.225q-.425-.05-.7-.363t-.225-.737t.363-.675t.737-.225l4.225.375l.475-1.675L1.8 17.8q-.425-.075-.65-.4T1 16.65q.075-.4.412-.638t.763-.162l5.975 1.125l.425-1.45l-6.75-1.85q-.425-.1-.612-.45t-.063-.775q.125-.4.45-.6t.75-.1L9.1 13.6l.375-1.325L1.4 4.2l1.4-1.4l18.4 18.4l-1.4 1.4l-3.85-3.825l-.35 1.325q-.4 1.425-1.587 2.225T11.375 23zm15.7-6.625l-5.8-5.75l.85-.575l-3.85-5.8q-.25-.35-.175-.737T9.9 2.1q.35-.225.738-.162t.662.412l3.85 5.825l1.25-.85L14.375 2.4q-.175-.35-.013-.737T14.9 1.1q.4-.15.775 0t.55.525l2.525 6.1l1.15-1.3q.275-.3.65-.45t.8-.125q.425.05.775.238t.6.537l.275.4l-1.8 5.925q-.15.5-.45.913t-.725.687zm-3.175-.3L4.75 9.8q-.4-.2-.513-.587t.088-.763q.2-.35.588-.475t.762.05l4.9 2.575z");
|
|
8
|
+
}
|
|
9
|
+
</style><path class="p-4y--bgw"/>`;
|
|
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:sign-language-off"} {...others} />);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Component;
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "material-symbols",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Material Symbols",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 15439,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Google",
|
|
8
8
|
"url": "https://github.com/google/material-design-icons"
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
],
|
|
28
28
|
"palette": false
|
|
29
29
|
},
|
|
30
|
-
"lastModified":
|
|
30
|
+
"lastModified": 1781845826
|
|
31
31
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-solid/material-symbols",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.20",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/material-symbols/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -51830,6 +51830,30 @@
|
|
|
51830
51830
|
"types": "./types/vn2rmosy.d.ts",
|
|
51831
51831
|
"default": "./components/s/sign-language-2-sharp.jsx"
|
|
51832
51832
|
},
|
|
51833
|
+
"./sign-language-off": {
|
|
51834
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
51835
|
+
"default": "./components/s/sign-language-off.jsx"
|
|
51836
|
+
},
|
|
51837
|
+
"./sign-language-off-outline": {
|
|
51838
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
51839
|
+
"default": "./components/s/sign-language-off-outline.jsx"
|
|
51840
|
+
},
|
|
51841
|
+
"./sign-language-off-outline-rounded": {
|
|
51842
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
51843
|
+
"default": "./components/s/sign-language-off-outline-rounded.jsx"
|
|
51844
|
+
},
|
|
51845
|
+
"./sign-language-off-outline-sharp": {
|
|
51846
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
51847
|
+
"default": "./components/s/sign-language-off-outline-sharp.jsx"
|
|
51848
|
+
},
|
|
51849
|
+
"./sign-language-off-rounded": {
|
|
51850
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
51851
|
+
"default": "./components/s/sign-language-off-rounded.jsx"
|
|
51852
|
+
},
|
|
51853
|
+
"./sign-language-off-sharp": {
|
|
51854
|
+
"types": "./types/vn2rmosy.d.ts",
|
|
51855
|
+
"default": "./components/s/sign-language-off-sharp.jsx"
|
|
51856
|
+
},
|
|
51833
51857
|
"./sign-language-outline": {
|
|
51834
51858
|
"types": "./types/vn2rmosy.d.ts",
|
|
51835
51859
|
"default": "./components/s/sign-language-outline.jsx"
|