@iconify-react/material-symbols-light 1.0.17 → 1.0.18
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/c/car-spark-outline-rounded.jsx +22 -0
- package/components/c/car-spark-outline-sharp.jsx +22 -0
- package/components/c/car-spark-outline.jsx +22 -0
- package/components/c/car-spark-rounded.jsx +22 -0
- package/components/c/car-spark-sharp.jsx +22 -0
- package/components/c/car-spark.jsx +22 -0
- package/components/c/credit-card-spark-outline-rounded.jsx +22 -0
- package/components/c/credit-card-spark-outline-sharp.jsx +22 -0
- package/components/c/credit-card-spark-outline.jsx +22 -0
- package/components/c/credit-card-spark-rounded.jsx +22 -0
- package/components/c/credit-card-spark-sharp.jsx +22 -0
- package/components/c/credit-card-spark.jsx +22 -0
- package/components/f/flight-spark-rounded.jsx +22 -0
- package/components/f/flight-spark.jsx +22 -0
- package/components/l/local-shipping-spark-outline-rounded.jsx +22 -0
- package/components/l/local-shipping-spark-outline.jsx +22 -0
- package/components/l/local-shipping-spark-rounded.jsx +22 -0
- package/components/l/local-shipping-spark.jsx +22 -0
- package/components/m/mail-spark-outline-rounded.jsx +22 -0
- package/components/m/mail-spark-outline-sharp.jsx +22 -0
- package/components/m/mail-spark-outline.jsx +22 -0
- package/components/m/mail-spark-rounded.jsx +22 -0
- package/components/m/mail-spark-sharp.jsx +22 -0
- package/components/m/mail-spark.jsx +22 -0
- package/components/p/passport-spark-outline-rounded.jsx +22 -0
- package/components/p/passport-spark-outline-sharp.jsx +22 -0
- package/components/p/passport-spark-outline.jsx +22 -0
- package/components/p/passport-spark-rounded.jsx +22 -0
- package/components/p/passport-spark-sharp.jsx +22 -0
- package/components/p/passport-spark.jsx +22 -0
- package/components/s/screen-spark-pause-outline-rounded.jsx +22 -0
- package/components/s/screen-spark-pause-outline-sharp.jsx +22 -0
- package/components/s/screen-spark-pause-outline.jsx +22 -0
- package/components/s/screen-spark-pause-rounded.jsx +22 -0
- package/components/s/screen-spark-pause-sharp.jsx +22 -0
- package/components/s/screen-spark-pause.jsx +22 -0
- package/components/s/split-scene-2-outline-rounded.jsx +22 -0
- package/components/s/split-scene-2-outline-sharp.jsx +22 -0
- package/components/s/split-scene-2-outline.jsx +22 -0
- package/components/s/split-scene-2-rounded.jsx +22 -0
- package/components/s/split-scene-2-sharp.jsx +22 -0
- package/components/s/split-scene-2.jsx +22 -0
- package/components/w/workspace-studio-outline.jsx +22 -0
- package/components/w/workspace-studio.jsx +22 -0
- package/iconify.json +2 -2
- package/package.json +189 -13
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.a4j9w2b-t {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M5 17v-4.846v.346v-.077zm2.428-1.308q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.793q0 .467.326.79q.327.321.793.321m9.155 0q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322M4.73 20H4.5q-.213 0-.356-.144T4 19.5v-7.073q0-.136.016-.273q.015-.137.065-.268L5.985 6.5q.073-.238.281-.37q.209-.13.465-.13h4.348q.212 0 .356.144t.144.357t-.144.356t-.356.143h-4.19l-1.473 4.154h9.22q.213 0 .357.144t.144.357t-.144.356t-.356.143H5V17h14v-4.083q0-.22.144-.37q.144-.149.357-.149t.356.15t.143.37V19.5q0 .213-.144.356T19.5 20h-.23q-.213 0-.357-.144t-.144-.356V18H5.231v1.5q0 .213-.144.356T4.731 20m13.25-9.885q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.356 2.387-1.356t1.359-2.39q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.387q-.024.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="a4j9w2b-t"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:car-spark-outline-rounded",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.yznl2r02u {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M5 17v-4.846v.346v-.077zm2.428-1.308q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.793q0 .467.326.79q.327.321.793.321m9.155 0q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322M4 20v-7.846L6.162 6h5.344q-.012.25.004.5t.069.5h-4.69l-1.473 4.154h8.678q.444.373.971.638q.527.266 1.108.362H5V17h14v-4.602q.256-.05.502-.096t.498-.129V20h-1.23v-2H5.23v2zm13.98-9.885q-.15 0-.2-.15q-.36-1.39-1.358-2.387q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.356 2.387-1.356t1.359-2.39q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.387q-.024.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="yznl2r02u"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:car-spark-outline-sharp",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.rw_-ukqvt {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M5 17v-4.846v.346v-.077zm2.428-1.308q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.793q0 .467.326.79q.327.321.793.321m9.155 0q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322M4.73 20H4.5q-.213 0-.356-.144T4 19.5v-7.346L5.985 6.5q.073-.238.281-.37q.209-.13.465-.13h4.775q-.012.25.004.5t.069.5h-4.69l-1.473 4.154h8.678q.444.373.971.638q.527.266 1.108.362H5V17h14v-4.602q.256-.05.502-.096t.498-.129V19.5q0 .213-.144.356T19.5 20h-.23q-.213 0-.357-.144t-.144-.356V18H5.231v1.5q0 .213-.144.356T4.731 20m13.25-9.885q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.356 2.387-1.356t1.359-2.39q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.387q-.024.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="rw_-ukqvt"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:car-spark-outline",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.gwzhy3bib {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M17.98 10.116q-.15 0-.2-.15q-.36-1.391-1.358-2.388q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.361 2.387-1.358t1.359-2.388q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15m-1.398 5.576q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322m-9.154 0q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.793.322M4.732 20H4.5q-.213 0-.356-.144T4 19.5v-7.073q0-.136.016-.273q.015-.137.065-.268L5.985 6.5q.073-.238.281-.37q.209-.13.465-.13h4.348q.212 0 .356.144t.144.357t-.144.356t-.356.143h-4.19l-1.473 4.154h8.678q.829.662 1.827 1.004t2.06.342q.292-.006.55-.024t.544-.068q.373-.062.649.159t.276.562V19.5q0 .213-.144.356T19.5 20h-.23q-.213 0-.357-.144t-.144-.356V18H5.231v1.5q0 .213-.144.356T4.731 20");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="gwzhy3bib"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:car-spark-rounded",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.bhmil1blk {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M17.98 10.116q-.15 0-.2-.15q-.36-1.391-1.358-2.388q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.361 2.387-1.358t1.359-2.388q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15m-1.398 5.576q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322m-9.154 0q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.793.322M4 20v-7.846L6.162 6h5.344q-.012.25.004.5t.069.5h-4.69l-1.473 4.154h8.678q.829.662 1.827 1.004t2.053.342q.528-.012 1.029-.09q.5-.077.997-.237V20h-1.23v-2H5.23v2z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="bhmil1blk"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:car-spark-sharp",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.t40nynbke {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M4.73 20H4.5q-.213 0-.356-.144T4 19.5v-7.346L5.985 6.5q.073-.238.281-.37q.209-.13.465-.13h4.775q-.012.25.004.5t.069.5h-4.69l-1.473 4.154h8.678q.829.662 1.827 1.004t2.053.342q.528-.012 1.029-.09q.5-.077.997-.237V19.5q0 .213-.144.356T19.5 20h-.23q-.213 0-.357-.144t-.144-.356V18H5.231v1.5q0 .213-.144.356T4.731 20m2.697-4.308q.466 0 .788-.326q.323-.327.323-.793q0-.467-.327-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.793.322m9.155 0q.466 0 .788-.326q.322-.327.322-.793q0-.467-.326-.79q-.327-.321-.793-.321q-.467 0-.79.326q-.321.327-.321.794q0 .466.326.788q.327.322.794.322m1.399-5.576q-.15 0-.2-.15q-.362-1.391-1.359-2.388t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="t40nynbke"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:car-spark",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.d563b2_ke {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M4 18v-7.577v.194V6zm.616 1q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v3.367q0 .373-.301.584t-.649.089q-.396-.104-.808-.168t-.838-.065q-.835 0-1.594.195t-1.433.574H4v6.193q0 .23.192.423t.423.192h7.045q.213 0 .354.143q.14.144.14.357t-.143.357t-.357.143zM4 8.808h16V6.616q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616zM18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="d563b2_ke"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:credit-card-spark-outline-rounded",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.fm38c737p {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M4 18v-7.577v.194V6zm-1 1V5h18v6q-.608-.263-1.252-.42q-.645-.157-1.344-.157q-.828 0-1.591.195t-1.436.574H4V18h8.025q.05.275.115.516q.064.24.148.484zM4 8.808h16V6H4zM18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="fm38c737p"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:credit-card-spark-outline-sharp",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.of-371bmh {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M4 18v-7.577v.194V6zm.616 1q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616V11q-.608-.263-1.252-.42t-1.344-.157q-.835 0-1.594.195t-1.433.574H4v6.193q0 .23.192.423t.423.192h7.41q.05.275.115.516q.064.24.148.484zM4 8.808h16V6.616q0-.231-.192-.424T19.385 6H4.615q-.23 0-.423.192T4 6.616zM18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="of-371bmh"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:credit-card-spark-outline",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.zt2l_pbjy {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15M4.616 19q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v3.89q0 .213-.143.357t-.357.143t-.357-.143t-.143-.357V8.808H4v2.384h9.34q.46 0 .627.445t-.2.784q-1.13 1.181-1.584 2.724t-.098 3.147q.061.274-.098.49t-.431.218z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="zt2l_pbjy"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:credit-card-spark-rounded",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.mlhhai70i {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M18.404 21q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15m-6.115-2H3V5h18v6.006q-.238-.127-.479-.224q-.24-.098-.521-.165v-1.81H4v2.385h11.377q-1.529.818-2.492 2.345t-.962 3.367q0 .535.096 1.066t.27 1.03");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="mlhhai70i"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:credit-card-spark-sharp",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.n7n5fbcvr {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M12.289 19H4.616q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v4.39q-.239-.127-.479-.224T20 10.617v-1.81H4v2.385h11.377q-1.529.818-2.492 2.345t-.962 3.367q0 .535.096 1.066t.27 1.03m6.115 2q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359t-1.36 2.387q-.024.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="n7n5fbcvr"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:credit-card-spark",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.on6p3ibal {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M17.98 10.116q-.15 0-.2-.15q-.36-1.391-1.358-2.388q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15m-8.422 3.011l-6.46 2.602q-.407.154-.753-.083T2 14.983v-.36q0-.196.087-.369t.246-.283l7.225-5.09V4.442q0-.595.423-1.018Q10.405 3 11 3t1.018.424t.424 1.018v4.439l7.225 5.09q.159.11.246.283t.087.37v.359q0 .425-.345.663t-.753.083l-6.46-2.602v4.33l2.575 1.82q.128.094.2.227t.072.29v.35q0 .327-.25.515t-.556.095L11 19.692l-3.483 1.062q-.308.092-.557-.095t-.249-.515v-.355q0-.149.072-.283t.2-.229l2.575-1.82z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="on6p3ibal"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:flight-spark-rounded",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.l2nhcxbkq {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M17.98 10.116q-.15 0-.2-.15q-.36-1.391-1.358-2.388q-.997-.997-2.387-1.359q-.15-.05-.15-.2q0-.175.15-.2q1.39-.361 2.387-1.358t1.359-2.388q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.998.997-1.36 2.388q-.024.15-.2.15M6.713 21v-1.538l2.846-2.004v-4.331L2 16.173v-1.961L9.558 8.88V4.442q0-.594.424-1.018T11 3t1.018.424t.424 1.018v4.439L20 14.21v1.962l-7.558-3.046v4.33l2.827 2.005V21L11 19.692z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="l2nhcxbkq"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:flight-spark",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.x_fkorbme {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M6.838 17.645q.47-.47.47-1.145t-.47-1.145t-1.146-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.146-.47m12.384 0q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.145-.47M16.538 13.5h4.712l-2.942-3.884h-1.77zM3.837 18.353q-.76-.763-.76-1.853H2.5q-.343 0-.575-.232t-.233-.576v-5.401q0-.213.144-.357t.357-.143t.356.143t.143.357V15.5h.647q.213-.662.869-1.138t1.484-.478q.79 0 1.466.468q.675.467.888 1.148h7.493V6h-1.985q-.206 0-.347-.137q-.142-.138-.153-.342q-.012-.217.14-.369t.36-.152h2.177q.343 0 .575.232t.232.576v2.807h1.5q.384 0 .727.172q.344.172.566.474l2.653 3.58q.162.222.243.464t.08.505v1.882q0 .343-.232.576t-.575.232h-.808q0 1.09-.764 1.853t-1.855.762t-1.852-.762t-.76-1.853H8.309q0 1.096-.764 1.856t-1.856.76t-1.852-.763m2.76-8.66q-.15 0-.2-.15q-.362-1.391-1.359-2.388T2.65 5.796q-.15-.05-.15-.2q0-.169.15-.2Q4.04 5.04 5.037 4.04t1.36-2.39q.05-.15.2-.15q.168 0 .2.15q.36 1.39 1.358 2.388q.997.997 2.387 1.358q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359T6.796 9.542q-.025.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="x_fkorbme"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:local-shipping-spark-outline-rounded",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.giyhsnbwf {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M6.838 17.645q.47-.47.47-1.145t-.47-1.145t-1.146-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.146-.47m12.384 0q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.145-.47M16.538 13.5h4.712l-2.942-3.884h-1.77zm-3.5-8.5h3.502v3.616h2.307l3.462 4.653V16.5h-1.616q0 1.09-.764 1.853t-1.855.762t-1.852-.762t-.76-1.853H8.309q0 1.096-.764 1.856t-1.856.76t-1.852-.763t-.759-1.853H1.692V9.79q.233.252.474.472t.526.411V15.5h.647q.213-.662.869-1.138t1.484-.478q.79 0 1.466.468q.675.467.888 1.148h7.493V6H13.07q.031-.25.013-.5t-.048-.5m-6.44 4.692q-.15 0-.2-.15q-.361-1.39-1.358-2.387T2.65 5.796q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.388-1.355T6.396 1.65q.05-.15.2-.15q.17 0 .2.15q.362 1.39 1.359 2.388q.997.997 2.387 1.358q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359T6.796 9.542q-.025.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="giyhsnbwf"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:local-shipping-spark-outline",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.huyaljqyt {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M6.596 9.692q-.15 0-.2-.15q-.361-1.39-1.358-2.387T2.65 5.796q-.15-.05-.15-.2q0-.175.15-.2q1.39-.361 2.388-1.358T6.396 1.65q.05-.15.2-.15q.17 0 .2.15q.362 1.39 1.359 2.388q.997.997 2.387 1.358q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359T6.796 9.542q-.025.15-.2.15m.241 7.953q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.146-.47m12.384 0q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.145-.47M16.538 13.5h4.712l-2.942-3.884h-1.77zM3.837 18.353q-.76-.763-.76-1.853H2.5q-.343 0-.575-.232t-.233-.576v-4.638q0-.348.324-.484q.323-.135.601.101q.847.662 1.86 1.034t2.12.372q1.35 0 2.524-.52t2.05-1.386q.921-.921 1.409-2.106q.487-1.186.486-2.488q-.012-.223.148-.4t.38-.177h2.137q.343 0 .575.232t.233.576v2.808h1.5q.383 0 .727.171t.565.475l2.654 3.579q.161.222.242.464t.08.505v1.882q0 .344-.231.576t-.576.232h-.808q0 1.09-.764 1.853t-1.855.762t-1.852-.762t-.76-1.853H8.309q0 1.096-.764 1.856t-1.856.76t-1.852-.763");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="huyaljqyt"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:local-shipping-spark-rounded",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.iqt2v1poc {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M6.838 17.645q.47-.47.47-1.145t-.47-1.145t-1.146-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.146-.47m12.384 0q.47-.47.47-1.145t-.47-1.145t-1.145-.47t-1.145.47t-.47 1.145t.47 1.145t1.145.47t1.145-.47M16.538 13.5h4.712l-2.942-3.884h-1.77zM6.596 9.692q-.15 0-.2-.15q-.361-1.39-1.358-2.387T2.65 5.796q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.388-1.355T6.396 1.65q.05-.15.2-.15q.17 0 .2.15q.362 1.39 1.359 2.388q.997.997 2.387 1.358q.15.025.15.2q0 .15-.15.2q-1.39.362-2.387 1.359T6.796 9.542q-.025.15-.2.15m-2.76 8.664q-.759-.76-.759-1.856H1.692V9.79q.92 1.068 2.198 1.677q1.277.61 2.706.61q2.675 0 4.578-1.9t1.903-4.58q0-.145-.009-.299T13.037 5h3.502v3.616h2.307l3.462 4.653V16.5h-1.616q0 1.096-.76 1.856q-.759.76-1.855.76t-1.856-.76t-.76-1.856H8.308q0 1.096-.76 1.856t-1.856.76t-1.856-.76");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="iqt2v1poc"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:local-shipping-spark",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.j9u66cb4x {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("m12 11l7.692-5H4.308zm-7.384 8q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.196q0 .213-.143.356t-.357.144t-.357-.144t-.143-.356V6.904l-7.123 4.638q-.404.262-.877.262t-.877-.262L4 6.904v10.48q0 .27.173.443t.443.173h6.813q.213 0 .357.143t.143.357t-.143.357t-.357.143zm13.788 3.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="j9u66cb4x"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:mail-spark-outline-rounded",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.v01drvbcs {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("m12 11l7.692-5H4.308zm-.083 8H3V5h18v7.077h-1V6.904l-8 5.212l-8-5.212V18h7.917zm6.487 3.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="v01drvbcs"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:mail-spark-outline-sharp",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.zb2chubtb {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("m12 11l7.692-5H4.308zm-.083 8H4.616q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.461h-1V6.904l-8 5.212l-8-5.212v10.48q0 .27.173.443t.443.173h7.301zm6.487 3.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="zb2chubtb"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:mail-spark-outline",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.jlzjzn_rv {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M4.616 19q-.691 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.201q0 .243-.195.383t-.432.054q-1.71-.562-3.466-.154t-3.078 1.729q-.921.921-1.409 2.107q-.487 1.185-.486 2.487q.012.223-.15.4q-.161.177-.378.177zm13.788 3.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15M12 11L4.82 6.32q-.195-.122-.402-.045t-.264.289q-.058.148-.015.306q.042.159.184.246l7.108 4.638q.269.165.569.165t.57-.165l7.107-4.638q.142-.087.194-.246t-.025-.307q-.057-.211-.264-.279q-.207-.067-.401.054z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="jlzjzn_rv"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:mail-spark-rounded",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.biw0robjw {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("m12 12.116l8-5.212L19.692 6L12 11L4.308 6L4 6.904zM11.964 19H3V5h18v7.506q-.602-.27-1.251-.426t-1.345-.157q-2.681 0-4.581 1.9t-1.9 4.58q0 .16.009.309t.031.288m6.44 3.5q-.15 0-.2-.15q-.36-1.39-1.358-2.387q-.997-.997-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="biw0robjw"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:mail-spark-sharp",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.oh6nuheqp {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("m12 12.116l8-5.212L19.692 6L12 11L4.308 6L4 6.904zM11.964 19H4.615q-.69 0-1.153-.462T3 17.384V6.616q0-.691.463-1.153T4.615 5h14.77q.69 0 1.152.463T21 6.616v5.89q-.602-.27-1.249-.426q-.647-.157-1.347-.157q-2.681 0-4.581 1.9t-1.9 4.58q0 .15.009.305q.008.154.031.292m6.44 3.5q-.15 0-.2-.15q-.36-1.39-1.358-2.387q-.997-.997-2.387-1.36q-.15-.05-.15-.2q0-.174.15-.2q1.39-.36 2.387-1.358q.997-.997 1.359-2.387q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.359q.15.025.15.2q0 .15-.15.2q-1.39.362-2.388 1.359t-1.358 2.387q-.025.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="oh6nuheqp"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:mail-spark",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.dd56a1byr {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M6 20V4zm6-4.98q1.552 0 2.745-.916q1.194-.915 1.619-2.342q-.777-.276-1.439-.704q-.661-.43-1.215-1h-2.704q.075-.987.329-1.778q.253-.791.665-1.374V5.96q-1.883 0-3.201 1.328T7.481 10.5t1.318 3.201T12 15.019M5.808 21q-.348 0-.578-.23T5 20.192V3.808q0-.349.23-.578T5.808 3h6.004q.213 0 .356.143t.144.357t-.144.357t-.356.143H6v16h11.385q.23 0 .423-.192t.192-.424v-6.847q0-.214.143-.357t.357-.143t.357.143t.143.357v6.848q0 .67-.472 1.143q-.472.472-1.143.472zM12 14.037q-.412-.602-.666-1.384q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.075q-.984-.318-1.66-1.123t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m-2.504-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm4.642 3.904q.368-.731.593-1.496q.225-.764.275-1.524h.867q.192.154.375.26t.394.202q-.284.917-.94 1.598t-1.564.96m-4.069 4.23h6.116q.19 0 .316-.126q.126-.125.126-.316t-.126-.316q-.126-.126-.316-.126H8.942q-.19 0-.316.126q-.126.125-.126.316t.126.316t.316.126m9.462-8.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.361 1.39 1.358 2.387t2.388 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.388 1.358q-.997.997-1.358 2.387q-.025.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="dd56a1byr"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:passport-spark-outline-rounded",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.oyo3pdbxs {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M6 20V4zm6-4.98q1.552 0 2.745-.916q1.194-.915 1.619-2.342q-.777-.276-1.439-.704q-.661-.43-1.215-1h-2.704q.075-.987.329-1.778q.253-.791.665-1.374V5.96q-1.883 0-3.201 1.328T7.481 10.5t1.318 3.201T12 15.019M5 21V3h7.486q-.127.264-.214.504q-.088.24-.155.496H6v16h12v-7.923q.25.03.49.02q.24-.013.51-.06V21zm7-6.964q-.412-.601-.666-1.383q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.076q-.984-.317-1.66-1.122t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m-2.504-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm4.642 3.904q.368-.731.593-1.496q.225-.764.275-1.524h.867q.192.154.375.26t.394.202q-.284.917-.94 1.598t-1.564.96M8.5 18.192h7v-.884h-7zm9.904-8.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.997.997-1.36 2.387q-.024.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="oyo3pdbxs"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:passport-spark-outline-sharp",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Icon } from '@iconify/css-react';
|
|
2
|
+
import { createElement } from 'react';
|
|
3
|
+
|
|
4
|
+
const viewBox = {"width":24,"height":24};
|
|
5
|
+
|
|
6
|
+
/** @param {{width?: string; height?: string;}} */
|
|
7
|
+
function Component({width, height, ...props}) {
|
|
8
|
+
return createElement(Icon, {
|
|
9
|
+
...props,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
viewBox,
|
|
13
|
+
"content": `<style>.xxxp1ebbn {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M6 20V4zm6-4.98q1.552 0 2.745-.916q1.194-.915 1.619-2.342q-.777-.276-1.439-.704q-.661-.43-1.215-1h-2.704q.075-.987.329-1.778q.253-.791.665-1.374V5.96q-1.883 0-3.201 1.328T7.481 10.5t1.318 3.201T12 15.019M5 21V3h7.486q-.127.264-.214.504q-.088.24-.155.496H6v16h11.385q.23 0 .423-.192t.192-.424v-7.307q.25.03.49.02q.24-.013.51-.06v7.347q0 .672-.472 1.144T17.385 21zm7-6.964q-.412-.601-.666-1.383q-.253-.782-.328-1.71h1.988q-.075.928-.328 1.71q-.254.782-.666 1.384m-1.127-.076q-.984-.317-1.66-1.122t-.844-1.897h1.752q.031.722.218 1.476t.534 1.544m-2.504-3.904q.189-1.148.921-1.983q.733-.835 1.737-1.094q-.406.615-.63 1.399q-.226.783-.276 1.678zm4.642 3.904q.368-.731.593-1.496q.225-.764.275-1.524h.867q.192.154.375.26t.394.202q-.284.917-.94 1.598t-1.564.96M8.5 18.192h7v-.884h-7zm9.904-8.5q-.15 0-.2-.15q-.362-1.39-1.359-2.387t-2.387-1.359q-.15-.05-.15-.2q0-.169.15-.2q1.39-.355 2.387-1.355t1.359-2.391q.05-.15.2-.15q.169 0 .2.15q.362 1.39 1.359 2.387t2.387 1.36q.15.024.15.2q0 .15-.15.2q-1.39.36-2.387 1.358q-.997.997-1.36 2.387q-.024.15-.2.15");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="xxxp1ebbn"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:passport-spark-outline",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|