@iconify-svelte/material-symbols 1.0.30 → 1.0.31
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/b/bitbucket.svelte +17 -0
- package/components/g/gitlab.svelte +17 -0
- package/components/i/ink-highlighter-off-outline-rounded.svelte +17 -0
- package/components/i/ink-highlighter-off-outline-sharp.svelte +17 -0
- package/components/i/ink-highlighter-off-outline.svelte +17 -0
- package/components/i/ink-highlighter-off-rounded.svelte +17 -0
- package/components/i/ink-highlighter-off-sharp.svelte +17 -0
- package/components/i/ink-highlighter-off.svelte +17 -0
- package/iconify.json +2 -2
- package/package.json +33 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="soxopw68y"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:bitbucket" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.soxopw68y) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M5.7 21q-.425 0-.7-.225t-.35-.65L2.025 3.9q-.05-.4.15-.65T2.75 3h18.5q.4 0 .6.25t.125.65l-.725 4.275q-.075.425-.337.65t-.688.225H9.075q-.075 0-.225.3l.875 5.35q0 .05.25.25H14q.1 0 .25-.25l.625-3.875q.05-.35.263-.512t.562-.163h4.375q.4 0 .6.25t.15.625l-1.475 9.1q-.075.425-.35.65t-.7.225z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="l0d_6gbnl"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:gitlab" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.l0d_6gbnl) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M11.5 20.85L4.525 15.6q-1.275-.95-1.7-2.5t.15-3.05l2.55-6.625q.075-.2.25-.312T6.15 3t.388.113t.262.362L8.525 8.75h6.95L17.2 3.475q.075-.25.263-.363T17.85 3t.375.113t.25.312L21 10.05q.575 1.5.15 3.05t-1.7 2.5l-7 5.25q-.2.15-.475.15t-.475-.15");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="limyixrdo"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:ink-highlighter-off-outline-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.limyixrdo) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m18.8 3.6l2.6 2.6q.6.6.6 1.4T21.4 9l-4.075 4.075q-.3.3-.712.3t-.713-.3t-.3-.7t.3-.7L20 7.6L17.4 5l-4.075 4.075q-.3.3-.712.3t-.713-.3t-.3-.7t.3-.7L16 3.6q.6-.6 1.4-.6t1.4.6m1.725 18.275q-.3.3-.712.3t-.713-.3L13.8 16.6L10 20.425q-.6.6-1.412.6t-1.413-.6l-.125.1q-.275.225-.6.35T5.775 21h-3.05q-.35 0-.488-.3t.113-.55l2.3-2.275q-.6-.6-.625-1.437T4.6 15l3.8-3.8l-6.3-6.3q-.3-.3-.3-.712t.3-.713t.713-.3t.712.3l17 17q.3.3.3.7t-.3.7M6 16.4L8.6 19l3.8-3.8l-2.6-2.6zm5.1-2.5");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="xdef3npmm"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:ink-highlighter-off-outline-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.xdef3npmm) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m16.6 13.8l-1.4-1.425L20 7.6L17.4 5l-4.8 4.8l-1.4-1.425L17.4 2.2l5.4 5.4zm-8 5.2l3.8-3.8l-2.6-2.6L6 16.4zm11.2 3.6l-6-6l-4.5 4.5H7.9l-.75-.75l-.65.65h-5l3.15-3.15l-.75-.75v-1.4l4.5-4.5l-7-7l1.425-1.425l18.4 18.4z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="z15-u3btw"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:ink-highlighter-off-outline" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.z15-u3btw) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m16.6 13.8l-1.4-1.425L20 7.6L17.4 5l-4.8 4.8l-1.4-1.425L16 3.6q.6-.6 1.4-.6t1.4.6l2.6 2.6q.6.6.6 1.4T21.4 9zm3.2 8.8l-6-6l-3.8 3.8q-.6.6-1.4.6t-1.4-.6l-.05-.05l-.65.65h-5l3.15-3.15l-.05-.05q-.6-.6-.6-1.4t.6-1.4l3.8-3.8l-7-7l1.425-1.425l18.4 18.4zM6 16.4L8.6 19l3.8-3.8l-2.6-2.6zm5.1-2.5");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="a7cxobc6t"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:ink-highlighter-off-rounded" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.a7cxobc6t) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("m18.8 3.6l2.6 2.6q.6.6.6 1.4T21.4 9l-4.05 4.075q-.3.3-.725.3t-.725-.3L11.925 9.1q-.3-.3-.3-.725t.3-.725L16 3.6q.6-.6 1.4-.6t1.4.6m1.725 18.275q-.3.3-.712.3t-.713-.3L13.8 16.6L10 20.425q-.6.6-1.412.6t-1.413-.6l-.125.1q-.275.225-.6.35T5.775 21h-3.05q-.35 0-.488-.3t.113-.55l2.3-2.275q-.6-.6-.625-1.437T4.6 15l3.8-3.8l-6.3-6.3q-.3-.3-.3-.712t.3-.713t.713-.3t.712.3l17 17q.3.3.3.7t-.3.7");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="k3iskdbsl"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:ink-highlighter-off-sharp" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.k3iskdbsl) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M16.625 13.8L11.2 8.375L17.4 2.2l5.4 5.4zm3.175 8.8l-6-6l-4.5 4.5H7.9l-.75-.75l-.65.65h-5l3.15-3.15l-.75-.75v-1.4l4.5-4.5l-7-7l1.425-1.425l18.4 18.4z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
|
|
4
|
+
/** @type {{width?: string; height?: string;}} */
|
|
5
|
+
let {width, height, ...props} = $props();
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="y80vh4bkm"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="material-symbols:ink-highlighter-off" {...props}></Icon>
|
|
11
|
+
<style>
|
|
12
|
+
:global(.y80vh4bkm) {
|
|
13
|
+
fill: currentColor;
|
|
14
|
+
d: path("M16.625 13.8L11.2 8.375L16 3.6q.6-.6 1.4-.6t1.4.6l2.6 2.6q.6.6.6 1.4T21.4 9zm3.175 8.8l-6-6l-3.8 3.8q-.6.6-1.4.6t-1.4-.6l-.05-.05l-.65.65h-5l3.15-3.15l-.05-.05q-.6-.6-.6-1.4t.6-1.4l3.8-3.8l-7-7l1.425-1.425l18.4 18.4z");
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
</style>
|
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": 15369,
|
|
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": 1778304537
|
|
31
31
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-svelte/material-symbols",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.31",
|
|
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",
|
|
@@ -7714,6 +7714,10 @@
|
|
|
7714
7714
|
"types": "./types/gfwqskkx.d.ts",
|
|
7715
7715
|
"svelte": "./components/b/biotech-rounded.svelte"
|
|
7716
7716
|
},
|
|
7717
|
+
"./bitbucket": {
|
|
7718
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
7719
|
+
"svelte": "./components/b/bitbucket.svelte"
|
|
7720
|
+
},
|
|
7717
7721
|
"./blanket": {
|
|
7718
7722
|
"types": "./types/gfwqskkx.d.ts",
|
|
7719
7723
|
"svelte": "./components/b/blanket.svelte"
|
|
@@ -26474,6 +26478,10 @@
|
|
|
26474
26478
|
"types": "./types/gfwqskkx.d.ts",
|
|
26475
26479
|
"svelte": "./components/g/gite-rounded.svelte"
|
|
26476
26480
|
},
|
|
26481
|
+
"./gitlab": {
|
|
26482
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
26483
|
+
"svelte": "./components/g/gitlab.svelte"
|
|
26484
|
+
},
|
|
26477
26485
|
"./glass-cup": {
|
|
26478
26486
|
"types": "./types/gfwqskkx.d.ts",
|
|
26479
26487
|
"svelte": "./components/g/glass-cup.svelte"
|
|
@@ -30270,6 +30278,30 @@
|
|
|
30270
30278
|
"types": "./types/gfwqskkx.d.ts",
|
|
30271
30279
|
"svelte": "./components/i/ink-highlighter-move-sharp.svelte"
|
|
30272
30280
|
},
|
|
30281
|
+
"./ink-highlighter-off": {
|
|
30282
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
30283
|
+
"svelte": "./components/i/ink-highlighter-off.svelte"
|
|
30284
|
+
},
|
|
30285
|
+
"./ink-highlighter-off-outline": {
|
|
30286
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
30287
|
+
"svelte": "./components/i/ink-highlighter-off-outline.svelte"
|
|
30288
|
+
},
|
|
30289
|
+
"./ink-highlighter-off-outline-rounded": {
|
|
30290
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
30291
|
+
"svelte": "./components/i/ink-highlighter-off-outline-rounded.svelte"
|
|
30292
|
+
},
|
|
30293
|
+
"./ink-highlighter-off-outline-sharp": {
|
|
30294
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
30295
|
+
"svelte": "./components/i/ink-highlighter-off-outline-sharp.svelte"
|
|
30296
|
+
},
|
|
30297
|
+
"./ink-highlighter-off-rounded": {
|
|
30298
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
30299
|
+
"svelte": "./components/i/ink-highlighter-off-rounded.svelte"
|
|
30300
|
+
},
|
|
30301
|
+
"./ink-highlighter-off-sharp": {
|
|
30302
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
30303
|
+
"svelte": "./components/i/ink-highlighter-off-sharp.svelte"
|
|
30304
|
+
},
|
|
30273
30305
|
"./ink-highlighter-outline": {
|
|
30274
30306
|
"types": "./types/gfwqskkx.d.ts",
|
|
30275
30307
|
"svelte": "./components/i/ink-highlighter-outline.svelte"
|