@iconify-react/material-symbols-light 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.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.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>.o35_5abz {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
d: path("M10.412 21q-.547 0-1.04-.215q-.495-.214-.824-.668l-4.917-6.283l.323-.322q.31-.31.755-.356q.445-.047.841.182l2.508 1.54V8.193q0-.194.143-.347t.357-.153q.194 0 .347.153t.153.347v3.789h2.269V6.519q0-.194.143-.347t.357-.153q.194 0 .347.153t.153.347v5.462h4.288q.981 0 1.683.702T19 14.366v3.288q0 1.406-.983 2.376t-2.363.97zM4.344 9.158q-.055-.237-.065-.473q-.01-.237-.01-.493q0-2.573 1.797-4.383Q7.864 2 10.462 2q2.573 0 4.373 1.81t1.8 4.382q0 .218-.038.551l-.038.334l-.98-.11l.028-.287q.028-.288.028-.488q0-2.151-1.511-3.672T10.462 3Q8.285 3 6.777 4.52T5.269 8.192v.4q0 .2.05.4z");
|
|
16
|
+
}
|
|
17
|
+
</style><path class="o35_5abz"/>`,
|
|
18
|
+
"fallback": "material-symbols-light:touch-double-2",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export default Component;
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "material-symbols-light",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Material Symbols Light",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 15419,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Google",
|
|
8
8
|
"url": "https://github.com/google/material-design-icons"
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
],
|
|
29
29
|
"palette": false
|
|
30
30
|
},
|
|
31
|
-
"lastModified":
|
|
31
|
+
"lastModified": 1777005953
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-react/material-symbols-light",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.9",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/material-symbols-light/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -20358,6 +20358,10 @@
|
|
|
20358
20358
|
"types": "./types/hqrkovbr.d.ts",
|
|
20359
20359
|
"default": "./components/e/explore-nearby.jsx"
|
|
20360
20360
|
},
|
|
20361
|
+
"./explore-nearby-outline": {
|
|
20362
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
20363
|
+
"default": "./components/e/explore-nearby-outline.jsx"
|
|
20364
|
+
},
|
|
20361
20365
|
"./explore-off": {
|
|
20362
20366
|
"types": "./types/hqrkovbr.d.ts",
|
|
20363
20367
|
"default": "./components/e/explore-off.jsx"
|
|
@@ -42718,6 +42722,10 @@
|
|
|
42718
42722
|
"types": "./types/hqrkovbr.d.ts",
|
|
42719
42723
|
"default": "./components/p/pin-end-sharp.jsx"
|
|
42720
42724
|
},
|
|
42725
|
+
"./pin-history": {
|
|
42726
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
42727
|
+
"default": "./components/p/pin-history.jsx"
|
|
42728
|
+
},
|
|
42721
42729
|
"./pin-invoke": {
|
|
42722
42730
|
"types": "./types/hqrkovbr.d.ts",
|
|
42723
42731
|
"default": "./components/p/pin-invoke.jsx"
|
|
@@ -42742,6 +42750,10 @@
|
|
|
42742
42750
|
"types": "./types/hqrkovbr.d.ts",
|
|
42743
42751
|
"default": "./components/p/pin-outline-sharp.jsx"
|
|
42744
42752
|
},
|
|
42753
|
+
"./pin-road": {
|
|
42754
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
42755
|
+
"default": "./components/p/pin-road.jsx"
|
|
42756
|
+
},
|
|
42745
42757
|
"./pin-rounded": {
|
|
42746
42758
|
"types": "./types/hqrkovbr.d.ts",
|
|
42747
42759
|
"default": "./components/p/pin-rounded.jsx"
|
|
@@ -49002,13 +49014,17 @@
|
|
|
49002
49014
|
"types": "./types/hqrkovbr.d.ts",
|
|
49003
49015
|
"default": "./components/s/share-location.jsx"
|
|
49004
49016
|
},
|
|
49005
|
-
"./share-location-
|
|
49017
|
+
"./share-location-outline": {
|
|
49006
49018
|
"types": "./types/hqrkovbr.d.ts",
|
|
49007
|
-
"default": "./components/s/share-location-
|
|
49019
|
+
"default": "./components/s/share-location-outline.jsx"
|
|
49008
49020
|
},
|
|
49009
|
-
"./share-location-
|
|
49021
|
+
"./share-location-outline-rounded": {
|
|
49010
49022
|
"types": "./types/hqrkovbr.d.ts",
|
|
49011
|
-
"default": "./components/s/share-location-
|
|
49023
|
+
"default": "./components/s/share-location-outline-rounded.jsx"
|
|
49024
|
+
},
|
|
49025
|
+
"./share-location-outline-sharp": {
|
|
49026
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49027
|
+
"default": "./components/s/share-location-outline-sharp.jsx"
|
|
49012
49028
|
},
|
|
49013
49029
|
"./share-off": {
|
|
49014
49030
|
"types": "./types/hqrkovbr.d.ts",
|
|
@@ -49166,6 +49182,30 @@
|
|
|
49166
49182
|
"types": "./types/hqrkovbr.d.ts",
|
|
49167
49183
|
"default": "./components/s/shield.jsx"
|
|
49168
49184
|
},
|
|
49185
|
+
"./shield-card": {
|
|
49186
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49187
|
+
"default": "./components/s/shield-card.jsx"
|
|
49188
|
+
},
|
|
49189
|
+
"./shield-card-outline": {
|
|
49190
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49191
|
+
"default": "./components/s/shield-card-outline.jsx"
|
|
49192
|
+
},
|
|
49193
|
+
"./shield-card-outline-rounded": {
|
|
49194
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49195
|
+
"default": "./components/s/shield-card-outline-rounded.jsx"
|
|
49196
|
+
},
|
|
49197
|
+
"./shield-card-outline-sharp": {
|
|
49198
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49199
|
+
"default": "./components/s/shield-card-outline-sharp.jsx"
|
|
49200
|
+
},
|
|
49201
|
+
"./shield-card-rounded": {
|
|
49202
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49203
|
+
"default": "./components/s/shield-card-rounded.jsx"
|
|
49204
|
+
},
|
|
49205
|
+
"./shield-card-sharp": {
|
|
49206
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49207
|
+
"default": "./components/s/shield-card-sharp.jsx"
|
|
49208
|
+
},
|
|
49169
49209
|
"./shield-lock": {
|
|
49170
49210
|
"types": "./types/hqrkovbr.d.ts",
|
|
49171
49211
|
"default": "./components/s/shield-lock.jsx"
|
|
@@ -49270,6 +49310,30 @@
|
|
|
49270
49310
|
"types": "./types/hqrkovbr.d.ts",
|
|
49271
49311
|
"default": "./components/s/shield-question-rounded.jsx"
|
|
49272
49312
|
},
|
|
49313
|
+
"./shield-radar": {
|
|
49314
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49315
|
+
"default": "./components/s/shield-radar.jsx"
|
|
49316
|
+
},
|
|
49317
|
+
"./shield-radar-outline": {
|
|
49318
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49319
|
+
"default": "./components/s/shield-radar-outline.jsx"
|
|
49320
|
+
},
|
|
49321
|
+
"./shield-radar-outline-rounded": {
|
|
49322
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49323
|
+
"default": "./components/s/shield-radar-outline-rounded.jsx"
|
|
49324
|
+
},
|
|
49325
|
+
"./shield-radar-outline-sharp": {
|
|
49326
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49327
|
+
"default": "./components/s/shield-radar-outline-sharp.jsx"
|
|
49328
|
+
},
|
|
49329
|
+
"./shield-radar-rounded": {
|
|
49330
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49331
|
+
"default": "./components/s/shield-radar-rounded.jsx"
|
|
49332
|
+
},
|
|
49333
|
+
"./shield-radar-sharp": {
|
|
49334
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
49335
|
+
"default": "./components/s/shield-radar-sharp.jsx"
|
|
49336
|
+
},
|
|
49273
49337
|
"./shield-rounded": {
|
|
49274
49338
|
"types": "./types/hqrkovbr.d.ts",
|
|
49275
49339
|
"default": "./components/s/shield-rounded.jsx"
|
|
@@ -51566,6 +51630,30 @@
|
|
|
51566
51630
|
"types": "./types/hqrkovbr.d.ts",
|
|
51567
51631
|
"default": "./components/s/speed-1-7x-sharp.jsx"
|
|
51568
51632
|
},
|
|
51633
|
+
"./speed-2": {
|
|
51634
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51635
|
+
"default": "./components/s/speed-2.jsx"
|
|
51636
|
+
},
|
|
51637
|
+
"./speed-2-outline": {
|
|
51638
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51639
|
+
"default": "./components/s/speed-2-outline.jsx"
|
|
51640
|
+
},
|
|
51641
|
+
"./speed-2-outline-rounded": {
|
|
51642
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51643
|
+
"default": "./components/s/speed-2-outline-rounded.jsx"
|
|
51644
|
+
},
|
|
51645
|
+
"./speed-2-outline-sharp": {
|
|
51646
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51647
|
+
"default": "./components/s/speed-2-outline-sharp.jsx"
|
|
51648
|
+
},
|
|
51649
|
+
"./speed-2-rounded": {
|
|
51650
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51651
|
+
"default": "./components/s/speed-2-rounded.jsx"
|
|
51652
|
+
},
|
|
51653
|
+
"./speed-2-sharp": {
|
|
51654
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51655
|
+
"default": "./components/s/speed-2-sharp.jsx"
|
|
51656
|
+
},
|
|
51569
51657
|
"./speed-2x": {
|
|
51570
51658
|
"types": "./types/hqrkovbr.d.ts",
|
|
51571
51659
|
"default": "./components/s/speed-2x.jsx"
|
|
@@ -51578,6 +51666,54 @@
|
|
|
51578
51666
|
"types": "./types/hqrkovbr.d.ts",
|
|
51579
51667
|
"default": "./components/s/speed-2x-sharp.jsx"
|
|
51580
51668
|
},
|
|
51669
|
+
"./speed-3": {
|
|
51670
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51671
|
+
"default": "./components/s/speed-3.jsx"
|
|
51672
|
+
},
|
|
51673
|
+
"./speed-3-outline": {
|
|
51674
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51675
|
+
"default": "./components/s/speed-3-outline.jsx"
|
|
51676
|
+
},
|
|
51677
|
+
"./speed-3-outline-rounded": {
|
|
51678
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51679
|
+
"default": "./components/s/speed-3-outline-rounded.jsx"
|
|
51680
|
+
},
|
|
51681
|
+
"./speed-3-outline-sharp": {
|
|
51682
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51683
|
+
"default": "./components/s/speed-3-outline-sharp.jsx"
|
|
51684
|
+
},
|
|
51685
|
+
"./speed-3-rounded": {
|
|
51686
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51687
|
+
"default": "./components/s/speed-3-rounded.jsx"
|
|
51688
|
+
},
|
|
51689
|
+
"./speed-3-sharp": {
|
|
51690
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51691
|
+
"default": "./components/s/speed-3-sharp.jsx"
|
|
51692
|
+
},
|
|
51693
|
+
"./speed-4": {
|
|
51694
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51695
|
+
"default": "./components/s/speed-4.jsx"
|
|
51696
|
+
},
|
|
51697
|
+
"./speed-4-outline": {
|
|
51698
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51699
|
+
"default": "./components/s/speed-4-outline.jsx"
|
|
51700
|
+
},
|
|
51701
|
+
"./speed-4-outline-rounded": {
|
|
51702
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51703
|
+
"default": "./components/s/speed-4-outline-rounded.jsx"
|
|
51704
|
+
},
|
|
51705
|
+
"./speed-4-outline-sharp": {
|
|
51706
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51707
|
+
"default": "./components/s/speed-4-outline-sharp.jsx"
|
|
51708
|
+
},
|
|
51709
|
+
"./speed-4-rounded": {
|
|
51710
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51711
|
+
"default": "./components/s/speed-4-rounded.jsx"
|
|
51712
|
+
},
|
|
51713
|
+
"./speed-4-sharp": {
|
|
51714
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
51715
|
+
"default": "./components/s/speed-4-sharp.jsx"
|
|
51716
|
+
},
|
|
51581
51717
|
"./speed-camera": {
|
|
51582
51718
|
"types": "./types/hqrkovbr.d.ts",
|
|
51583
51719
|
"default": "./components/s/speed-camera.jsx"
|
|
@@ -57138,6 +57274,30 @@
|
|
|
57138
57274
|
"types": "./types/hqrkovbr.d.ts",
|
|
57139
57275
|
"default": "./components/t/touch-double.jsx"
|
|
57140
57276
|
},
|
|
57277
|
+
"./touch-double-2": {
|
|
57278
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
57279
|
+
"default": "./components/t/touch-double-2.jsx"
|
|
57280
|
+
},
|
|
57281
|
+
"./touch-double-2-outline": {
|
|
57282
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
57283
|
+
"default": "./components/t/touch-double-2-outline.jsx"
|
|
57284
|
+
},
|
|
57285
|
+
"./touch-double-2-outline-rounded": {
|
|
57286
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
57287
|
+
"default": "./components/t/touch-double-2-outline-rounded.jsx"
|
|
57288
|
+
},
|
|
57289
|
+
"./touch-double-2-outline-sharp": {
|
|
57290
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
57291
|
+
"default": "./components/t/touch-double-2-outline-sharp.jsx"
|
|
57292
|
+
},
|
|
57293
|
+
"./touch-double-2-rounded": {
|
|
57294
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
57295
|
+
"default": "./components/t/touch-double-2-rounded.jsx"
|
|
57296
|
+
},
|
|
57297
|
+
"./touch-double-2-sharp": {
|
|
57298
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
57299
|
+
"default": "./components/t/touch-double-2-sharp.jsx"
|
|
57300
|
+
},
|
|
57141
57301
|
"./touch-double-outline": {
|
|
57142
57302
|
"types": "./types/hqrkovbr.d.ts",
|
|
57143
57303
|
"default": "./components/t/touch-double-outline.jsx"
|
|
@@ -63482,6 +63642,14 @@
|
|
|
63482
63642
|
"types": "./types/hqrkovbr.d.ts",
|
|
63483
63643
|
"default": "./components/s/settings-cell.jsx"
|
|
63484
63644
|
},
|
|
63645
|
+
"./share-location-rounded": {
|
|
63646
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
63647
|
+
"default": "./components/s/share-location-rounded.jsx"
|
|
63648
|
+
},
|
|
63649
|
+
"./share-location-sharp": {
|
|
63650
|
+
"types": "./types/hqrkovbr.d.ts",
|
|
63651
|
+
"default": "./components/s/share-location-sharp.jsx"
|
|
63652
|
+
},
|
|
63485
63653
|
"./signal-cellular-0-bar": {
|
|
63486
63654
|
"types": "./types/hqrkovbr.d.ts",
|
|
63487
63655
|
"default": "./components/s/signal-cellular-0-bar.jsx"
|