@iconify-react/material-symbols 1.0.7 → 1.0.9
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/e/edit-location-alt-rounded.jsx +3 -3
- package/components/e/edit-location-outline-rounded.jsx +3 -3
- package/components/e/edit-location-rounded.jsx +3 -3
- package/components/e/explore-nearby-outline.jsx +22 -0
- package/components/e/explore-nearby.jsx +3 -3
- package/components/g/globe-location-pin.jsx +3 -3
- package/components/h/home-pin-outline-rounded.jsx +3 -3
- package/components/h/home-pin-rounded.jsx +3 -3
- package/components/l/location-chip-outline-sharp.jsx +3 -3
- package/components/l/location-chip-outline.jsx +3 -3
- package/components/l/location-chip-sharp.jsx +3 -3
- package/components/l/location-chip.jsx +3 -3
- package/components/m/map-pin-heart-outline-rounded.jsx +3 -3
- package/components/m/map-pin-heart-rounded.jsx +3 -3
- package/components/m/mode-of-travel-sharp.jsx +3 -3
- package/components/m/mode-of-travel.jsx +3 -3
- package/components/m/moved-location.jsx +3 -3
- package/components/p/pin-history.jsx +22 -0
- package/components/p/pin-road.jsx +22 -0
- package/components/s/share-location-outline-rounded.jsx +22 -0
- package/components/s/share-location-outline-sharp.jsx +22 -0
- package/components/s/share-location-outline.jsx +22 -0
- package/components/s/share-location.jsx +3 -3
- package/components/s/shield-card-outline-rounded.jsx +22 -0
- package/components/s/shield-card-outline-sharp.jsx +22 -0
- package/components/s/shield-card-outline.jsx +22 -0
- package/components/s/shield-card-rounded.jsx +22 -0
- package/components/s/shield-card-sharp.jsx +22 -0
- package/components/s/shield-card.jsx +22 -0
- package/components/s/shield-radar-outline-rounded.jsx +22 -0
- package/components/s/shield-radar-outline-sharp.jsx +22 -0
- package/components/s/shield-radar-outline.jsx +22 -0
- package/components/s/shield-radar-rounded.jsx +22 -0
- package/components/s/shield-radar-sharp.jsx +22 -0
- package/components/s/shield-radar.jsx +22 -0
- package/components/s/speed-2-outline-rounded.jsx +22 -0
- package/components/s/speed-2-outline-sharp.jsx +22 -0
- package/components/s/speed-2-outline.jsx +22 -0
- package/components/s/speed-2-rounded.jsx +22 -0
- package/components/s/speed-2-sharp.jsx +22 -0
- package/components/s/speed-2.jsx +22 -0
- package/components/s/speed-3-outline-rounded.jsx +22 -0
- package/components/s/speed-3-outline-sharp.jsx +22 -0
- package/components/s/speed-3-outline.jsx +22 -0
- package/components/s/speed-3-rounded.jsx +22 -0
- package/components/s/speed-3-sharp.jsx +22 -0
- package/components/s/speed-3.jsx +22 -0
- package/components/s/speed-4-outline-rounded.jsx +22 -0
- package/components/s/speed-4-outline-sharp.jsx +22 -0
- package/components/s/speed-4-outline.jsx +22 -0
- package/components/s/speed-4-rounded.jsx +22 -0
- package/components/s/speed-4-sharp.jsx +22 -0
- package/components/s/speed-4.jsx +22 -0
- package/components/t/touch-double-2-outline-rounded.jsx +22 -0
- package/components/t/touch-double-2-outline-sharp.jsx +22 -0
- package/components/t/touch-double-2-outline.jsx +22 -0
- package/components/t/touch-double-2-rounded.jsx +22 -0
- package/components/t/touch-double-2-sharp.jsx +22 -0
- package/components/t/touch-double-2.jsx +22 -0
- package/iconify.json +2 -2
- package/package.json +173 -5
|
@@ -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
|
+
/** @type {{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>.c09583jn {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M4 6.375q0-.625.363-1.125t.937-.725l6-2.25q.35-.125.7-.125t.7.125l6 2.25q.575.225.938.725T20 6.375v1.7q0 .425-.288.713T19 9.075t-.712-.287T18 8.075v-1.7l-6-2.25l-6 2.25V11.1q0 2 .8 3.863t2.275 3.212q.3.275.325.7t-.25.725t-.687.313t-.713-.263Q5.975 18 4.988 15.763T4 11.1zM21.3 21.3q-.3.3-.712.3t-.713-.3l-2.35-2.375Q17.45 18.95 17 19q-.825 0-1.412-.587T15 17t.588-1.412T17 15t1.413.588T19 17q0 .075-.075.525L21.3 19.9q.3.3.3.7t-.3.7M11 17q0-2.5 1.75-4.25T17 11t4.25 1.75T23 17q0 .425-.288.713T22 18t-.712-.288T21 17q0-1.65-1.175-2.825T17 13t-2.825 1.175T13 17t1.175 2.825T17 21q.425 0 .713.288T18 22t-.288.713T17 23q-2.5 0-4.25-1.75T11 17");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="c09583jn"/>`,
|
|
18
|
+
"fallback": "material-symbols:shield-radar-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
|
+
/** @type {{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>.o6egl9bz {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M10.325 21.4q-2.8-1.325-4.562-4.15T4 11.1V5l8-3l8 3v4.6q-.475-.2-.975-.325T18 9.075v-2.7l-6-2.25l-6 2.25V11.1q0 2.075.825 3.925t2.25 3.15q.125.875.45 1.688t.8 1.537M17 23q-2.5 0-4.25-1.75T11 17t1.75-4.25T17 11t4.25 1.75T23 17q0 .575-.1 1.1t-.3 1.025l-1.625-1.7Q21 17.3 21 17.213V17q0-1.65-1.175-2.825T17 13t-2.825 1.175T13 17t1.175 2.825T17 21h.213q.087 0 .212-.025l1.675 1.65q-.5.2-1.025.288T17 23m-1.412-7.413Q16.175 15 17 15t1.413.588T19 17q0 .075-.075.525L22 20.6L20.575 22l-3.05-3.075Q17.45 18.95 17 19q-.825 0-1.412-.588T15 17t.588-1.412");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="o6egl9bz"/>`,
|
|
18
|
+
"fallback": "material-symbols:shield-radar-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
|
+
/** @type {{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>.fnpgnv8h {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M10.325 21.4q-2.8-1.325-4.562-4.15T4 11.1V5l8-3l8 3v4.6q-.475-.2-.975-.325T18 9.075v-2.7l-6-2.25l-6 2.25V11.1q0 2.075.825 3.925t2.25 3.15q.125.875.45 1.688t.8 1.537M17 23q-2.5 0-4.25-1.75T11 17t1.75-4.25T17 11t4.25 1.75T23 17q0 .575-.1 1.1t-.3 1.025q-.05-.075-.113-.15t-.137-.15l-1.375-1.4Q21 17.3 21 17.213V17q0-1.65-1.175-2.825T17 13t-2.825 1.175T13 17t1.175 2.825T17 21h.213q.087 0 .212-.025l1.4 1.375l.15.15q.075.075.15.125q-.5.2-1.025.288T17 23m4.3-1.7q-.3.3-.713.3t-.712-.3l-2.35-2.375Q17.45 18.95 17 19q-.825 0-1.412-.587T15 17t.588-1.412T17 15t1.413.588T19 17q0 .075-.075.525L21.3 19.9q.3.3.3.7t-.3.7");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="fnpgnv8h"/>`,
|
|
18
|
+
"fallback": "material-symbols:shield-radar-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
|
+
/** @type {{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>.krmz_vvs {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M21.3 21.3q-.3.3-.712.3t-.713-.3l-2.35-2.375Q17.45 18.95 17 19q-.825 0-1.412-.587T15 17t.588-1.412T17 15t1.413.588T19 17q0 .075-.075.525L21.3 19.9q.3.3.3.7t-.3.7M4 11.1V6.375q0-.625.363-1.125t.937-.725l6-2.25q.35-.125.7-.125t.7.125l6 2.25q.575.225.938.725T20 6.375v1.7q0 .575-.45.888t-1 .187q-.375-.075-.763-.113T17 9q-3.35 0-5.675 2.325T9 17q0 .8.163 1.588t.462 1.512q.125.3-.112.513t-.488.062q-2.35-1.575-3.687-4.163T4 11.1m7 5.9q0-2.5 1.75-4.25T17 11t4.25 1.75T23 17q0 .425-.288.713T22 18t-.712-.288T21 17q0-1.65-1.175-2.825T17 13t-2.825 1.175T13 17t1.175 2.825T17 21q.425 0 .713.288T18 22t-.288.713T17 23q-2.5 0-4.25-1.75T11 17");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="krmz_vvs"/>`,
|
|
18
|
+
"fallback": "material-symbols:shield-radar-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
|
+
/** @type {{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>.b3hsjc3e {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M17 23q-2.5 0-4.25-1.75T11 17t1.75-4.25T17 11t4.25 1.75T23 17q0 .575-.1 1.1t-.3 1.025l-1.625-1.7Q21 17.3 21 17.212V17q0-1.65-1.175-2.825T17 13t-2.825 1.175T13 17t1.175 2.825T17 21h.213q.087 0 .212-.025l1.675 1.65q-.5.2-1.025.288T17 23m-1.412-7.413Q16.175 15 17 15t1.413.588T19 17q0 .075-.075.525L22 20.6L20.575 22l-3.05-3.075Q17.45 18.95 17 19q-.825 0-1.412-.588T15 17t.588-1.412M4 11.1V5l8-3l8 3v4.6q-.725-.275-1.475-.437T17 9q-3.35 0-5.675 2.325T9 17q0 1.175.338 2.3t.987 2.1q-2.8-1.325-4.562-4.15T4 11.1");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="b3hsjc3e"/>`,
|
|
18
|
+
"fallback": "material-symbols:shield-radar-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
|
+
/** @type {{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>.n5bo-ibi {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M17 23q-2.5 0-4.25-1.75T11 17t1.75-4.25T17 11t4.25 1.75T23 17q0 .575-.1 1.1t-.3 1.025q-.05-.075-.113-.15t-.137-.15l-1.375-1.4Q21 17.3 21 17.213V17q0-1.65-1.175-2.825T17 13t-2.825 1.175T13 17t1.175 2.825T17 21h.213q.087 0 .212-.025l1.4 1.375l.15.15q.075.075.15.125q-.5.2-1.025.288T17 23m4.3-1.7q-.3.3-.713.3t-.712-.3l-2.35-2.375Q17.45 18.95 17 19q-.825 0-1.412-.587T15 17t.588-1.412T17 15t1.413.588T19 17q0 .075-.075.525L21.3 19.9q.3.3.3.7t-.3.7M4 11.1V5l8-3l8 3v4.6q-.725-.275-1.475-.437T17 9q-3.35 0-5.675 2.325T9 17q0 1.175.338 2.3t.987 2.1q-2.8-1.325-4.562-4.15T4 11.1");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="n5bo-ibi"/>`,
|
|
18
|
+
"fallback": "material-symbols:shield-radar",
|
|
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
|
+
/** @type {{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>.wj39rjbt {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M13.4 15.425q.65-.65.6-1.513t-.75-1.387q-1.5-1.175-3.05-2.175t-3.125-2q-.35-.225-.65.075t-.075.65q1 1.575 2 3.138t2.1 3.112q.5.725 1.4.738t1.55-.638M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q0-.875.175-1.725t.525-1.65q.15-.375.55-.512t.75.062t.487.588t-.012.787q-.225.6-.35 1.225T3.975 13.9q0 1.1.287 2.138T5.125 18H18.9q.525-.9.813-1.912T20 14q0-3.325-2.337-5.663T12 6q-.675 0-1.325.125t-1.275.35q-.4.125-.775-.012T8.05 5.95T8 5.187t.525-.537q.825-.325 1.7-.488T12 4q2.075 0 3.888.788t3.175 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237zm6.85-5.95");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="wj39rjbt"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-2-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
|
+
/** @type {{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>.iy_j1hnc {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M13.4 15.425q.65-.65.6-1.5t-.75-1.4q-1.975-1.55-4.1-2.875t-4.175-2.7q1.35 2.075 2.675 4.188t2.8 4.187q.5.725 1.4.738t1.55-.638M3.9 20q-.875-1.575-1.412-2.925t-.513-3.225q.025-1.4.463-2.725T3.65 8.6l1.2 1.9q-.425.8-.65 1.663T3.975 13.9q0 1.1.288 2.138T5.125 18H18.9q.525-.9.813-1.912T20 14q0-3.325-2.337-5.663T12 6q-.925 0-1.812.225T8.5 6.85l-1.9-1.2q1.2-.8 2.563-1.225T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.85-.513 3.138T20.1 20zm8.075-5.95");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="iy_j1hnc"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-2-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
|
+
/** @type {{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>.igttgrdl {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M13.4 15.425q.65-.65.6-1.5t-.75-1.4q-1.975-1.55-4.1-2.875t-4.175-2.7q1.35 2.075 2.675 4.188t2.8 4.187q.5.725 1.4.738t1.55-.638M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-1.4.463-2.725T3.65 8.6l1.2 1.9q-.425.8-.65 1.663T3.975 13.9q0 1.1.288 2.138T5.125 18H18.9q.525-.9.813-1.912T20 14q0-3.325-2.337-5.663T12 6q-.925 0-1.812.225T8.5 6.85l-1.9-1.2q1.2-.8 2.563-1.225T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237zm6.85-5.95");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="igttgrdl"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-2-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
|
+
/** @type {{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>.lz4i5ofp {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M13.55 15.5q.65-.65.613-1.525T13.4 12.6l-3.15-2.1L7.1 8.4q-.35-.225-.65.063t-.075.637q1.05 1.575 2.112 3.15T10.6 15.4q.475.725 1.375.75t1.575-.65M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="lz4i5ofp"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-2-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
|
+
/** @type {{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>.krqtpqbb {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M13.4 15.425q.65-.65.6-1.5t-.75-1.4q-1.975-1.55-4.1-2.875t-4.175-2.7q1.35 2.075 2.675 4.188t2.8 4.187q.5.725 1.4.738t1.55-.638M3.9 20q-.875-1.575-1.412-2.925t-.513-3.225q0-2 .838-3.787t2.225-3.138t3.187-2.137T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.85-.513 3.138T20.1 20z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="krqtpqbb"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-2-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
|
+
/** @type {{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>.xks3l7bt {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M13.4 15.425q.65-.65.6-1.5t-.75-1.4q-1.975-1.55-4.1-2.875t-4.175-2.7q1.35 2.075 2.675 4.188t2.8 4.187q.5.725 1.4.738t1.55-.638M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-1.9.838-3.725T4.975 6.95q1.4-1.4 3.238-2.175T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="xks3l7bt"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-2",
|
|
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
|
+
/** @type {{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>.uhl7_nbh {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M12.825 15.8q.75-.35 1.113-1.2t-.163-1.6q-1.1-1.575-2.212-3.062T9.3 6.95q-.275-.35-.687-.162t-.313.637q.4 1.825.85 3.625t1 3.65q.25.875 1.038 1.163t1.637-.063m-7.7 4.2q-.525 0-1.012-.238t-.738-.712q-.7-1.15-1.025-2.437T2.025 14q0-1.725.588-3.463t1.862-3.112q.375-.425.8-.412t.7.262t.35.625t-.225.725q-.95 1.05-1.512 2.475T4.025 14q0 1.025.263 2.038T5.125 18H18.9q.525-.9.813-1.925T20 14q0-1.875-.812-3.475T17.025 7.8q-1.05-.875-2.375-1.35T11.95 6q-.4 0-.712-.262t-.363-.663t.15-.725t.6-.35q1.825-.075 3.563.525T18.35 6.3q1.675 1.4 2.663 3.375T22 14q0 1.4-.35 2.663t-1 2.387q-.275.475-.75.713t-1 .237zm6.9-6.025");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="uhl7_nbh"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-3-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
|
+
/** @type {{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>.cpgrg-bn {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M2.025 14q0-2.35 1.038-4.437T5.975 6.05L6.5 8.225Q5.3 9.35 4.663 10.85T4.025 14q0 1.05.275 2.075T5.125 18H18.9q.525-.925.813-1.937T20 14q0-3.35-2.325-5.675T12 6q-.25 0-.488.012t-.487.063L9.7 4.275q.575-.125 1.15-.2T12 4q2.075 0 3.9.788t3.175 2.137t2.138 3.175T22 14q0 1.6-.55 3.1T20.125 20h-16.2q-.8-1.4-1.362-2.887T2.025 14m10.8 1.8q.85-.375 1.15-1.225t-.2-1.575q-1.425-2.05-2.925-4.038T7.8 5.025q.475 2.45 1.05 4.863t1.3 4.812q.25.825 1.063 1.138t1.612-.038m-.8-1.825");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="cpgrg-bn"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-3-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
|
+
/** @type {{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>.uo83dzbd {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M5.125 20q-.55 0-1.012-.238t-.738-.712Q2.7 17.9 2.35 16.625T2.025 14q0-2.35 1.038-4.437T5.975 6.05L6.5 8.225Q5.3 9.35 4.663 10.85T4.025 14q0 1.05.275 2.075T5.125 18H18.9q.525-.925.813-1.937T20 14q0-3.35-2.325-5.675T12 6q-.25 0-.488.012t-.487.063L9.7 4.275q.575-.125 1.15-.2T12 4q2.075 0 3.9.788t3.175 2.137t2.138 3.175T22 14q0 1.35-.35 2.613t-1 2.437q-.275.475-.737.713T18.9 20zm7.7-4.2q.85-.375 1.15-1.225t-.2-1.575q-1.45-2.075-2.937-4.075T7.775 4.95q.475 2.475 1.063 4.9t1.312 4.85q.25.825 1.063 1.138t1.612-.038m-.8-1.825");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="uo83dzbd"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-3-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
|
+
/** @type {{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>.h9ud6ihr {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M12.825 15.8q.75-.35 1.113-1.2t-.163-1.6q-1.1-1.575-2.212-3.062T9.3 6.95q-.275-.35-.687-.162t-.313.637q.4 1.825.85 3.625t1 3.65q.25.875 1.038 1.163t1.637-.063m-7.7 4.2q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="h9ud6ihr"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-3-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
|
+
/** @type {{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>.kjf0z31o {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M12.825 15.8q.85-.375 1.15-1.225t-.2-1.575q-1.45-2.05-2.937-4.05T7.775 4.975Q8.3 7.45 8.863 9.863T10.15 14.7q.25.825 1.063 1.138t1.612-.038M3.9 20q-.875-1.575-1.412-2.925t-.513-3.225q0-2 .838-3.787t2.225-3.138t3.187-2.137T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.85-.513 3.138T20.1 20z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="kjf0z31o"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-3-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
|
+
/** @type {{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>.y2yzn0lu {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M12.825 15.8q.85-.375 1.15-1.225t-.2-1.575q-1.45-2.075-2.937-4.075T7.775 4.95q.475 2.475 1.063 4.9t1.312 4.85q.25.825 1.063 1.138t1.612-.038m-7.7 4.2q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="y2yzn0lu"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-3",
|
|
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
|
+
/** @type {{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>.l8mz89wa {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M11.2 15.8q.85.35 1.638.063t1.037-1.163q.55-1.85 1-3.65t.85-3.625q.1-.45-.312-.637t-.688.162q-1.15 1.5-2.262 2.988T10.25 13q-.525.75-.162 1.6t1.112 1.2M5.125 20q-.525 0-1-.238t-.75-.712q-.65-1.125-1-2.387T2.025 14q0-2.35.988-4.325T5.675 6.3Q7.1 5.125 8.838 4.525T12.4 4q.4.025.6.35t.15.725t-.363.662t-.712.263q-1.375-.025-2.7.45T7 7.8q-1.35 1.125-2.162 2.725T4.025 14q0 1.05.288 2.075T5.125 18H18.9q.575-.95.838-1.963T20 14q0-1.475-.562-2.9t-1.513-2.475q-.3-.35-.225-.725t.35-.625t.7-.262t.8.412q1.275 1.375 1.863 3.113T22 14q0 1.325-.325 2.613T20.65 19.05q-.25.475-.737.713T18.9 20zM12 13.975");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="l8mz89wa"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-4-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
|
+
/** @type {{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>.jgu6v4bo {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M3.9 20q-.775-1.4-1.325-2.9t-.55-3.1q0-2.075.788-3.9T4.95 6.925t3.175-2.137t3.9-.788q.575 0 1.15.075t1.15.2L13 6.075q-.25-.05-.488-.062T12.026 6Q8.675 6 6.35 8.325T4.025 14q0 1.05.287 2.063T5.125 18H18.9q.55-.9.825-1.925T20 14q0-1.65-.638-3.15t-1.837-2.625l.525-2.175q1.875 1.425 2.9 3.512T22 14q0 1.625-.55 3.113T20.1 20zm7.3-4.2q.8.35 1.613.038t1.062-1.138q.725-2.4 1.3-4.812t1.05-4.863q-1.55 1.95-3.05 3.938T10.25 13q-.5.725-.2 1.575T11.2 15.8m.8-1.825");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="jgu6v4bo"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-4-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
|
+
/** @type {{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>.hc1623bf {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M5.1 20q-.55 0-1.012-.238t-.738-.712q-.65-1.175-1-2.437T2 14q0-2.075.788-3.9t2.137-3.175T8.1 4.788T12 4q.575 0 1.15.075t1.15.2l-1.325 1.8q-.25-.05-.487-.062T12 6Q8.65 6 6.325 8.325T4 14q0 1.05.287 2.063T5.1 18h13.775q.55-.9.825-1.925T19.975 14q0-1.65-.638-3.15T17.5 8.225l.525-2.175q1.875 1.425 2.913 3.512T21.975 14q.025 1.35-.325 2.625t-1.025 2.425q-.275.475-.737.713T18.875 20zm6.075-4.2q.8.35 1.613.038T13.85 14.7q.725-2.425 1.313-4.85t1.062-4.9q-1.575 1.975-3.062 3.975T10.225 13q-.5.725-.2 1.575t1.15 1.225m.8-1.825");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="hc1623bf"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-4-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
|
+
/** @type {{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>.t_ozkacy {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M11.2 15.8q.85.35 1.638.063t1.037-1.163q.55-1.85 1-3.65t.85-3.625q.1-.45-.312-.637t-.688.162q-1.15 1.5-2.262 2.988T10.25 13q-.525.75-.162 1.6t1.112 1.2M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="t_ozkacy"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-4-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
|
+
/** @type {{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>.siv4h3xg {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M11.2 15.8q.8.35 1.613.038t1.062-1.138q.725-2.425 1.288-4.837t1.087-4.888Q14.675 6.95 13.188 8.95T10.25 13q-.5.725-.2 1.575T11.2 15.8M3.9 20q-.875-1.575-1.412-2.925t-.513-3.225q0-2 .838-3.787t2.225-3.138t3.187-2.137T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.85-.513 3.138T20.1 20z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="siv4h3xg"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-4-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
|
+
/** @type {{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>.fmvkakbz {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M11.175 15.8q.8.35 1.613.038T13.85 14.7q.725-2.425 1.313-4.85t1.062-4.9q-1.575 1.975-3.062 3.975T10.225 13q-.5.725-.2 1.575t1.15 1.225M5.125 20q-.55 0-1.012-.238t-.738-.712q-.7-1.2-1.05-2.512t-.35-2.688q.025-2 .85-3.787t2.2-3.138T8.2 4.788T12 4q2.075 0 3.888.788t3.174 2.15t2.15 3.175T22 14q0 1.35-.35 2.625t-1 2.425q-.275.475-.75.713t-1 .237z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="fmvkakbz"/>`,
|
|
18
|
+
"fallback": "material-symbols:speed-4",
|
|
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
|
+
/** @type {{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>.y6qf54jr {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M10.45 22q-.7 0-1.3-.262t-1.025-.813L3.2 14.65q-.225-.3-.2-.687t.3-.663q.425-.425 1.063-.5t1.187.25l1.95 1.175V8q0-.425.288-.712T8.5 7t.713.288T9.5 8v8.05q0 .575-.513.863T7.976 16.9l-.925-.575l2.625 3.325q.125.2.338.275t.437.075H16q.825 0 1.413-.575T18 18v-4q0-.425-.288-.712T17 13h-1.5q-.425 0-.712-.288T14.5 12t.288-.712T15.5 11H17q1.25 0 2.125.875T20 14v4q0 1.675-1.175 2.838T16 22zm.838-9.287Q11 12.425 11 12V6.25q0-.425.288-.712T12 5.25t.713.288t.287.712V12q0 .425-.288.713T12 13t-.712-.288M10.5 3q-1.05 0-1.963.4T6.95 4.475Q6.3 5.125 5.913 6t-.438 1.8q-.025.425-.262.763t-.663.387t-.775-.187t-.35-.663q-.025-1.3.6-2.725T5.55 3.05q.95-.95 2.225-1.5T10.5 1t2.725.55t2.225 1.5q1.025 1.025 1.525 2.275t.5 2.675q0 .425-.313.675t-.737.2t-.675-.362t-.275-.738q-.05-.95-.413-1.787t-1.037-1.513T12.45 3.4T10.5 3m2.025 13");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="y6qf54jr"/>`,
|
|
18
|
+
"fallback": "material-symbols:touch-double-2-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
|
+
/** @type {{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>.ghi476bq {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M8.975 22L2.65 13.95L4.3 12.3l3.2 1.925V7h2v10.825l-2.45-1.5L9.95 20H18v-7h-3.5v-2H20v11zM11 13V5.25h2V13zM3.575 9.1Q3.5 8.825 3.5 8.55V8q0-2.9 2.038-4.95T10.5 1q2.9 0 4.95 2.05T17.5 8q0 .275-.038.638L17.426 9l-2-.225l.038-.288Q15.5 8.2 15.5 8q0-2.075-1.463-3.537T10.5 3Q8.4 3 6.95 4.463T5.5 8v.4q0 .2.05.4zm8.95 6.9");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="ghi476bq"/>`,
|
|
18
|
+
"fallback": "material-symbols:touch-double-2-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
|
+
/** @type {{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>.z24xyxbn {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M10.45 22q-.7 0-1.3-.262t-1.025-.813L2.65 13.95l.65-.65q.425-.425 1.063-.5t1.187.25l1.95 1.175V8q0-.425.288-.712T8.5 7t.713.288T9.5 8v9.825l-2.45-1.5l2.625 3.325q.125.2.338.275t.437.075H16q.825 0 1.413-.575T18 18v-4q0-.425-.288-.712T17 13h-2.5v-2H17q1.25 0 2.125.875T20 14v4q0 1.675-1.175 2.838T16 22zm.55-9V6.25q0-.425.288-.712T12 5.25t.713.288t.287.712V13zM3.575 9.1Q3.5 8.825 3.5 8.55V8q0-2.9 2.038-4.95T10.5 1q2.9 0 4.95 2.05T17.5 8q0 .275-.038.638L17.426 9l-2-.225l.038-.288Q15.5 8.2 15.5 8q0-2.075-1.463-3.537T10.5 3Q8.4 3 6.95 4.463T5.5 8v.4q0 .2.05.4zm8.95 6.9");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="z24xyxbn"/>`,
|
|
18
|
+
"fallback": "material-symbols:touch-double-2-outline",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|