@material-symbols-svg/react 0.1.13 → 0.1.15
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/README.md +1 -1
- package/dist/icons/family-group.d.ts +75 -0
- package/dist/icons/family-group.js +29 -0
- package/dist/icons/fitness-trackers.d.ts +75 -0
- package/dist/icons/fitness-trackers.js +38 -0
- package/dist/icons/home-app-logo.d.ts +14 -14
- package/dist/icons/home-app-logo.js +23 -14
- package/dist/icons/mail-asterisk.d.ts +75 -0
- package/dist/icons/mail-asterisk.js +38 -0
- package/dist/icons/mobile-theft.d.ts +75 -0
- package/dist/icons/mobile-theft.js +38 -0
- package/dist/icons/partly-cloudy-night.d.ts +14 -14
- package/dist/icons/partly-cloudy-night.js +14 -14
- package/dist/icons/sign-language.d.ts +14 -14
- package/dist/icons/sign-language.js +14 -14
- package/dist/index.d.ts +4 -4
- package/dist/index.js +4 -4
- package/dist/w100.d.ts +4 -4
- package/dist/w100.js +4 -4
- package/dist/w200.d.ts +4 -4
- package/dist/w200.js +4 -4
- package/dist/w300.d.ts +4 -4
- package/dist/w300.js +4 -4
- package/dist/w400.d.ts +4 -4
- package/dist/w400.js +4 -4
- package/dist/w500.d.ts +4 -4
- package/dist/w500.js +4 -4
- package/dist/w600.d.ts +4 -4
- package/dist/w600.js +4 -4
- package/dist/w700.d.ts +4 -4
- package/dist/w700.js +4 -4
- package/package.json +9 -9
- package/dist/icons/battery-saver.d.ts +0 -75
- package/dist/icons/battery-saver.js +0 -38
- package/dist/icons/motion-photos-off.d.ts +0 -75
- package/dist/icons/motion-photos-off.js +0 -38
- package/dist/icons/transcribe.d.ts +0 -75
- package/dist/icons/transcribe.js +0 -38
- package/dist/icons/volume-down-alt.d.ts +0 -75
- package/dist/icons/volume-down-alt.js +0 -38
|
@@ -3,72 +3,72 @@ import { IconProps } from '../types.js';
|
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* SignLanguage (Weight: 100) - Outlined style
|
|
6
|
-
* @preview 
|
|
7
7
|
*/
|
|
8
8
|
declare const SignLanguageW100: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
9
9
|
/**
|
|
10
10
|
* SignLanguage (Weight: 200) - Outlined style
|
|
11
|
-
* @preview 
|
|
12
12
|
*/
|
|
13
13
|
declare const SignLanguageW200: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
14
14
|
/**
|
|
15
15
|
* SignLanguage (Weight: 300) - Outlined style
|
|
16
|
-
* @preview 
|
|
17
17
|
*/
|
|
18
18
|
declare const SignLanguageW300: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
19
19
|
/**
|
|
20
20
|
* SignLanguage (Weight: 400) - Outlined style
|
|
21
|
-
* @preview 
|
|
22
22
|
*/
|
|
23
23
|
declare const SignLanguageW400: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
24
24
|
/**
|
|
25
25
|
* SignLanguage (Weight: 500) - Outlined style
|
|
26
|
-
* @preview 
|
|
27
27
|
*/
|
|
28
28
|
declare const SignLanguageW500: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
29
29
|
/**
|
|
30
30
|
* SignLanguage (Weight: 600) - Outlined style
|
|
31
|
-
* @preview 
|
|
32
32
|
*/
|
|
33
33
|
declare const SignLanguageW600: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
34
34
|
/**
|
|
35
35
|
* SignLanguage (Weight: 700) - Outlined style
|
|
36
|
-
* @preview 
|
|
37
37
|
*/
|
|
38
38
|
declare const SignLanguageW700: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
39
39
|
/**
|
|
40
40
|
* SignLanguageFill (Weight: 100) - Outlined style (Filled)
|
|
41
|
-
* @preview 
|
|
42
42
|
*/
|
|
43
43
|
declare const SignLanguageFillW100: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
44
44
|
/**
|
|
45
45
|
* SignLanguageFill (Weight: 200) - Outlined style (Filled)
|
|
46
|
-
* @preview 
|
|
47
47
|
*/
|
|
48
48
|
declare const SignLanguageFillW200: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
49
49
|
/**
|
|
50
50
|
* SignLanguageFill (Weight: 300) - Outlined style (Filled)
|
|
51
|
-
* @preview 
|
|
52
52
|
*/
|
|
53
53
|
declare const SignLanguageFillW300: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
54
54
|
/**
|
|
55
55
|
* SignLanguageFill (Weight: 400) - Outlined style (Filled)
|
|
56
|
-
* @preview 
|
|
57
57
|
*/
|
|
58
58
|
declare const SignLanguageFillW400: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
59
59
|
/**
|
|
60
60
|
* SignLanguageFill (Weight: 500) - Outlined style (Filled)
|
|
61
|
-
* @preview 
|
|
62
62
|
*/
|
|
63
63
|
declare const SignLanguageFillW500: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
64
64
|
/**
|
|
65
65
|
* SignLanguageFill (Weight: 600) - Outlined style (Filled)
|
|
66
|
-
* @preview 
|
|
67
67
|
*/
|
|
68
68
|
declare const SignLanguageFillW600: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
69
69
|
/**
|
|
70
70
|
* SignLanguageFill (Weight: 700) - Outlined style (Filled)
|
|
71
|
-
* @preview 
|
|
72
72
|
*/
|
|
73
73
|
declare const SignLanguageFillW700: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
74
74
|
|
|
@@ -2,22 +2,22 @@ import createMaterialIcon from '../createMaterialIcon.js';
|
|
|
2
2
|
|
|
3
3
|
const pathData = {
|
|
4
4
|
regular: {
|
|
5
|
-
"100": "
|
|
6
|
-
"200": "
|
|
7
|
-
"300": "
|
|
8
|
-
"400": "
|
|
9
|
-
"500": "
|
|
10
|
-
"600": "
|
|
11
|
-
"700": "
|
|
5
|
+
"100": "m655-611-81-230q-2-4 .5-8t6.5-6q4-2 8 .5t6 6.5l93 265 100-88q7-7 16-9t18 0q9 1 16.5 5.5T850-662l2 5-81 254q-8 24-16.5 48.5T733-304v-60 8l97-304q1-6-4-9t-9 0L699-563q-1 0-1.5-.5l-.5-.5-42-47ZM432-759l-35-61q-2-4-1-8t5-7q4-2 8-1t7 5l38 64q-6 2-11.5 4t-10.5 4Zm-42 153-27-4-73-105q-2-3-1.5-7.5t3.5-7.5q4-2 8.5-1.5t7.5 4.5l77 115h3l2 6Zm214 440-378 63q-4 0-8-2.5t-5-7.5q0-4 2.5-8t7.5-5l384-63q19-4 31-20t12-37v-247L472-692l-14 7 35 183-306-58q-5-1-8-4.5t-2-8.5q1-4 5-6.5t8-1.5l276 51-26-130q-3-9-.5-18.5T448-695q6-7 14-11.5t16-3.5h6l167 185q10 12 16 26.5t6 29.5v223q0 30-20 52.5T604-166ZM346-266l-192 16q-5 1-8.5-2t-3.5-8q-1-5 2-8.5t8-3.5l194-16v22Zm0-131-231-8q-5 0-7.5-3.5T105-417q0-5 3-7.5t8-2.5l230 8v22Zm152-22Z",
|
|
6
|
+
"200": "m651.54-628.08-78.46-223.3q-2.46-5.85.73-11.47 3.19-5.61 9.04-8.07 5.84-2.46 11.46.73 5.61 3.19 8.07 9.04l93.93 267.77 98.38-86.85q7.93-7.69 18.08-10.04 10.15-2.35 20.31-.35 10.15 1.24 18.57 6.54 8.43 5.31 13.12 14.23l3.15 6.62-87.69 273.61q-7.54 22.62-15.92 45.5-8.39 22.89-21.39 47.97v-81.93 6.16l91.93-288.54q.77-4.62-3.08-6.92-3.85-2.31-6.92 0L709.62-563.92q-1.24-.46-1.97-1.54t-1.19-1.54l-54.92-61.08ZM426.23-767.54 391-829q-2.92-5.62-1.46-11.46 1.46-5.85 7.08-9.54 5.61-2.92 11.46-1.46 5.84 1.46 9.54 7.08l38.69 65.61q-8.31 2-15.66 4.58-7.34 2.57-14.42 6.65Zm-41.77 155.08-32.54-5.39-71.15-102.46q-3.15-4.61-2.31-10.84.85-6.23 5.46-10.16 5.62-3.38 11.85-2.42 6.23.96 10.15 6.58l72.39 108.07q.77.93 1.65 1.73.89.81 1.12 1.73l3.38 13.16Zm228.08 459.84L219.08-87.08q-5.85.46-11.35-3.07-5.5-3.54-6.73-10.16-.46-5.84 3.19-11.34 3.66-5.5 10.27-6.73l398.08-65.54q17.15-3.54 28-17.81 10.84-14.27 10.84-32.96v-257.16l-178-199-10.76 5.39 36.15 187.84-321.69-61q-6.62-1.23-10.54-6.34-3.92-5.12-2.69-11.73 1.23-5.85 6.73-9.39 5.5-3.54 11.34-2.3l278.54 51.69-25.77-128.62q-3-10.15-.15-20.69 2.84-10.54 9.54-18.46 6.69-7.92 15.73-13t18.42-4.08l7.85.23 174.61 193.54q10.23 12.23 16.23 26.96t6 30.19v236.16q0 30.69-20.34 53.77-20.35 23.07-50.04 28.07ZM345.77-255.38l-201.46 16.92q-6.85 1-11.73-3.16-4.89-4.15-5.12-11-1-6.84 3.16-11.73 4.15-4.88 11-5.11l204.15-16.69v30.77Zm0-134.93-241.85-8.23q-6.84-.23-10.73-4.88-3.88-4.66-3.65-11.5.23-6.85 4.5-10.73 4.27-3.89 11.11-3.66l240.62 8.23v30.77Zm152.69-25Z",
|
|
7
|
+
"300": "m645.77-656.54-74.23-212.15q-3.23-8.92 1.11-17.23 4.35-8.31 13.27-11.54 8.93-3.23 17.23 1.12 8.31 4.34 11.54 13.26l95.46 272.39 95.7-84.92q9.46-8.85 21.53-11.77 12.08-2.93 24.16-.93 12.07 1.62 22.04 8.27 9.96 6.66 15.8 17.12l5.08 9.31-98.85 306.3q-6.77 20.31-14.96 40.5-8.19 20.19-21.19 43.73v-118.46 3.08l83.46-262.77q.39-2.31-1.54-3.46-1.92-1.16-3.46 0l-110.61 99.23q-1.62-1.23-2.73-3.27-1.12-2.04-2.35-3.27l-76.46-84.54ZM416.62-781.77 381-844q-4.46-8.31-2.23-17.23T389.31-875q8.31-4.46 17.23-2.23t13.77 10.54l39.84 68.31q-12.15 2-22.57 5.54-10.43 3.53-20.96 11.07Zm-41.39 158.54-41.77-7.69-68.07-98.23q-5.08-7.31-3.66-16.43 1.43-9.11 8.73-14.57 8.31-5.69 17.43-3.96 9.11 1.73 14.57 10.03l64.69 96.54q.39 2.47 1.08 4.62.69 2.15 1.31 4.61l5.69 25.08Zm251.54 492.92L207.54-60.54q-8.92 1.23-16.92-4.04-8-5.27-9.62-14.58-1.23-8.92 4.35-16.92 5.57-8 14.88-9.61l421.54-69.77q14.08-2.77 23-14.16 8.92-11.38 8.92-26.23v-274.07l-178-199-5.38 2.69 38.07 195.92-347.84-66q-9.31-1.61-14.77-9.42-5.46-7.81-3.85-17.12 1.62-8.92 9.62-14.19 8-5.27 16.92-3.65l282.77 52.84-25.38-126.3q-3-12.08.42-24.35 3.42-12.27 11.27-21.73t18.61-15.5q10.77-6.04 22.47-5.04l10.92.62 187.3 207.77q10.62 12.61 16.62 27.73 6 15.11 6 31.34v258.08q0 31.84-20.92 55.88-20.93 24.04-51.77 29.04ZM345.38-237.69l-217.22 18.46q-9.93 1-17.12-5.08-7.19-6.08-7.81-16-1-9.92 5.08-17.11 6.08-7.2 16-7.81l221.07-17.85v45.39Zm0-141.46-259.92-8.62q-9.92-.62-16.11-7.19-6.19-6.58-5.58-16.5.62-9.92 7-16.12 6.39-6.19 16.31-5.57l258.3 8.61v45.39Zm153.85-30Z",
|
|
8
|
+
"400": "m640-685-70-201q-4-12 1.5-23t17.5-15q12-4 23 1.5t15 17.5l97 277 93-83q11-10 25-13.5t28-1.5q14 2 25.5 10t18.5 20l7 12-110 339q-6 18-14 35.5T776-270v-155l75-237-106 95q-2-2-3.5-5t-3.5-5l-98-108ZM407-796l-36-63q-6-11-3-23t14-18q11-6 23-3t18 14l41 71q-16 2-29.5 6.5T407-796Zm-41 162-51-10-65-94q-7-10-5-22t12-19q11-8 23-5.5t19 13.5l57 85q0 4 .5 7.5t1.5 7.5l8 37Zm275 526L196-34q-12 2-22.5-5T161-58q-2-12 5.5-22.5T186-93l445-74q11-2 18-10.5t7-19.5v-291L478-687l40 204-374-71q-12-2-19-12.5t-5-22.5q2-12 12.5-19t22.5-5l287 54-25-124q-3-14 1-28t13-25q9-11 21.5-18t26.5-6l14 1 200 222q11 13 17 28.5t6 32.5v280q0 33-21.5 58T641-108ZM345-220l-233 20q-13 1-22.5-7T79-228q-1-13 7-22.5t21-10.5l238-19v60Zm0-148-278-9q-13-1-21.5-9.5T38-408q1-13 9.5-21.5T69-437l276 9v60Zm155-35Z",
|
|
9
|
+
"500": "m641.43-690.26-70.47-202.67q-4.24-12.72 1.5-24.2 5.74-11.48 18.45-15.72 12.48-4.24 23.96 1.62t15.72 18.34l98.19 280.59 93.72-83.48q11.24-10.48 25.6-14.1 14.36-3.62 28.83-1.62 14.48 2.24 26.46 10.48t18.98 20.72l7.48 12.47-112.39 346.18q-6.24 18.72-14.6 36.69-8.36 17.98-21.6 40.94v-157.15q0-1.2-.12-2.16-.12-.95-.36-1.91l75-237.24-106 95q-2.48-3.19-4.69-7.15-2.22-3.96-5.18-6.91l-98.48-108.72ZM405.09-801.02l-36.48-64.2q-6.48-11.48-3.24-24.07 3.24-12.6 14.72-18.84t23.95-3.12q12.48 3.12 18.72 14.6l42.2 72.67q-16.72 1.76-31.06 6.62-14.33 4.86-28.81 16.34Zm-40.76 164.39-53.16-10.48-65.71-94.96q-7.48-10.47-5.36-23.19t12.6-19.96q11.47-8 24.07-5.38t19.84 14.1l57.72 85.72q-.24 4.24.14 8.1.38 3.85 1.62 8.09l8.24 37.96ZM635.74-99.39 191.22-25.63q-12.72 2.24-23.7-5.12-10.98-7.36-12.98-19.84-2-12.71 5.86-23.69t20.34-13.22l446.19-74.24q13.87-2.24 22.55-13.49 8.67-11.25 8.67-25.6V-488L479.67-687.48l40.24 205.44-381.89-72.44q-12.48-2.24-19.84-13.22-7.35-10.97-5.11-23.45 2.23-12.48 13.09-19.84 10.86-7.36 23.58-5.36l290.59 54.72-25-124.72q-3.24-14.48.76-28.95 4-14.48 13.24-25.96t22.33-18.6q13.1-7.12 27.58-6.12l14.48 1 201.19 223.2q12.68 14.91 19.51 32.68 6.84 17.77 6.84 36.93v272.34q0 37.79-24.49 66.25-24.49 28.47-61.03 34.19ZM343.8-214.74 106.02-194.5q-13.72 1-23.69-7.24-9.98-8.24-10.98-21.96-1-13.71 7.24-23.69t21.95-10.98l243.26-19.24v62.87Zm0-150.63-283.97-9.24q-13.72-.76-22.46-9.74t-7.74-22.69q1-13.48 9.98-22.34t22.46-8.1l281.73 9.24v62.87Zm156.68-35.48Z",
|
|
10
|
+
"600": "m643.39-697.44-71.13-204.95q-4.56-13.7 1.5-25.83 6.07-12.13 19.76-16.69 13.13-4.57 25.26 1.78 12.13 6.35 16.7 19.48l99.82 285.48L830-722.3q11.57-11.14 26.41-14.92 14.85-3.78 29.98-1.78 15.13 2.56 27.76 11.13t19.63 21.7l8.13 13.13-115.65 355.95q-6.56 19.7-15.41 38.33-8.85 18.63-22.41 42.89v-160.09q0-2.82-.29-5.08-.28-2.26-.85-4.53l75-237.56-106 95q-3.13-4.83-6.32-10.09-3.2-5.26-7.46-9.52l-99.13-109.7ZM402.48-807.87l-37.13-65.83q-7.13-12.13-3.57-25.54 3.57-13.41 15.7-19.98 12.13-6.56 25.26-3.28t19.69 15.41l43.83 74.96q-17.69 1.43-33.17 6.78-15.48 5.35-30.61 17.48Zm-40.44 167.65-56.08-11.13-66.7-96.26q-8.13-11.13-5.85-24.83 2.29-13.69 13.42-21.26 12.13-8 25.54-5.21 13.41 2.78 20.98 14.91l58.69 86.7q-.56 4.56-.34 8.91.21 4.35 1.78 8.91l8.56 39.26ZM628.56-87.65 184.7-14.22q-13.7 2.57-25.33-5.28-11.63-7.85-13.63-20.98-2-13.69 6.35-25.32 8.34-11.63 21.47-14.2l447.83-74.56q17.78-2.57 28.74-17.57 10.96-15 10.96-33.91V-488L481.96-688.13l40.56 207.39-392.65-74.39q-13.13-2.57-20.98-14.2-7.85-11.63-5.28-24.76 2.56-13.13 13.91-20.98 11.35-7.84 25.04-5.84l295.48 55.69-25-125.69q-3.56-15.13.44-30.26t13.56-27.27q9.57-12.13 23.48-19.41 13.91-7.28 29.05-6.28l15.13 1L697.52-548.3q14.96 17.52 22.94 38.39t7.98 42.95v261.92q0 44.3-28.57 77.5-28.57 33.19-71.31 39.89ZM342.17-207.56 97.87-187q-14.7 1-25.33-7.56-10.63-8.57-11.63-23.27-1-14.69 7.57-25.32 8.56-10.63 23.26-11.63l250.43-19.57v66.79Zm0-154.22-292.13-9.57q-14.69-.43-23.76-10.06-9.06-9.63-8.06-24.33 1-14.13 10.63-23.48t23.76-8.91l289.56 9.56v66.79Zm158.96-36.13Z",
|
|
11
|
+
"700": "m646-707-72-208q-5-15 1.5-28t21.5-18q14-5 27 2t18 21l102 292 96-85q12-12 27.5-16t31.5-2q16 3 29.5 12t20.5 23l9 14-120 369q-7 21-16.5 40.5T798-245v-164q0-5-.5-9t-1.5-8l75-238-106 95q-4-7-8.5-14T746-596L646-707ZM399-817l-38-68q-8-13-4-27.5t17-21.5q13-7 27-3.5t21 16.5l46 78q-19 1-36 7t-33 19Zm-40 172-60-12-68-98q-9-12-6.5-27t14.5-23q13-8 27.5-5t22.5 16l60 88q-1 5-1 10t2 10l9 41ZM619-72 176 1q-15 3-27.5-5.5T134-27q-2-15 7-27.5T164-70l450-75q23-3 37-23t14-45v-275L485-689l41 210-407-77q-14-3-22.5-15.5T91-598q3-14 15-22.5t27-6.5l302 57-25-127q-4-16 0-32t14-29q10-13 25-20.5t31-6.5l16 1 205 227q18 21 27.5 46t9.5 51v248q0 53-34 92.5T619-72ZM340-198 87-177q-16 1-27.5-8T47-210q-1-16 8-27.5T80-250l260-20v72Zm0-159L37-367q-16 0-25.5-10.5T3-404q1-15 11.5-25T40-439l300 10v72Zm162-37Z"
|
|
12
12
|
},
|
|
13
13
|
filled: {
|
|
14
|
-
"100": "
|
|
15
|
-
"200": "
|
|
16
|
-
"300": "
|
|
17
|
-
"400": "
|
|
18
|
-
"500": "
|
|
19
|
-
"600": "
|
|
20
|
-
"700": "
|
|
14
|
+
"100": "M226-103q-4 0-8-2.5t-5-7.5q0-4 2.5-8t7.5-5l123-20v-120l-192 16q-5 1-8.5-2t-3.5-8q-1-5 2-8.5t8-3.5l194-16v-109l-231-8q-5 0-7.5-3.5T105-417q0-5 3-7.5t8-2.5l230 8v-111l-159-30q-5-1-8-4.5t-2-8.5q1-4 5-6.5t8-1.5l276 51-26-130q-3-9-.5-18.5T448-695q6-7 14-11.5t16-3.5h6l167 185q10 12 16 26.5t6 29.5v223q0 30-20 52.5T604-166l-378 63Zm507-201v-165q0-31-8-52t-28-43l-42-47-81-230q-2-4 .5-8t6.5-6q4-2 8 .5t6 6.5l93 265 100-88q7-7 16-9t18 0q9 1 16.5 5.5T850-662l2 5-81 254q-8 24-16.5 48.5T733-304ZM390-606l-27-4-73-105q-2-3-1.5-7.5t3.5-7.5q4-3 8.5-2t7.5 5l77 115h3l2 6Zm42-153-35-61q-2-4-1-8t5-7q4-2 8-1t7 5l38 64q-6 2-11.5 4t-10.5 4Z",
|
|
15
|
+
"200": "M219.08-87.08q-5.85.46-11.35-3.07-5.5-3.54-6.73-10.16-.46-5.84 3.19-11.34 3.66-5.5 10.27-6.73l131.31-21.39v-115.61l-201.46 16.92q-6.85 1-11.73-3.16-4.89-4.15-5.12-11-1-6.84 3.16-11.73 4.15-4.88 11-5.11l204.15-16.69v-104.16l-241.85-8.23q-6.84-.23-10.73-4.88-3.88-4.66-3.65-11.5.23-6.85 4.5-10.73 4.27-3.89 11.11-3.66l240.62 8.23v-105.69l-168.69-31.85q-6.62-1.23-10.54-6.34-3.92-5.12-2.69-11.73 1.23-5.85 6.73-9.39 5.5-3.54 11.34-2.3l278.54 51.69-25.77-128.62q-3-10.15-.15-20.69 2.84-10.54 9.54-18.46 6.69-7.92 15.73-13t18.42-4.08l7.85.23 174.61 193.54q10.23 12.23 16.23 26.96t6 30.19v236.16q0 30.69-20.34 53.77-20.35 23.07-50.04 28.07L219.08-87.08Zm523.84-209.07v-174.47q0-31.23-8.11-52.69-8.12-21.46-28.35-43.69l-54.92-61.08-78.46-223.3q-2.46-5.85.73-11.47 3.19-5.61 9.04-8.07 5.84-2.46 11.46.73 5.61 3.19 8.07 9.04l93.93 267.77 98.38-86.85q7.93-7.69 18.08-10.04 10.15-2.35 20.31-.35 10.15 1.24 18.57 6.54 8.43 5.31 13.12 14.23l3.15 6.62-87.69 273.61q-7.54 22.62-15.92 45.5-8.39 22.89-21.39 47.97ZM384.46-612.46l-32.54-5.39-71.15-102.46q-3.15-4.61-2.31-10.84.85-6.23 5.46-10.16 5.62-4.15 11.85-2.81 6.23 1.35 10.15 6.97l72.39 108.07q.77.93 1.65 1.73.89.81 1.12 1.73l3.38 13.16Zm41.77-155.08L391-829q-2.92-5.62-1.46-11.46 1.46-5.85 7.08-9.54 5.61-2.92 11.46-1.46 5.84 1.46 9.54 7.08l38.69 65.61q-8.31 2-15.66 4.58-7.34 2.57-14.42 6.65Z",
|
|
16
|
+
"300": "M207.54-60.54q-8.92 1.23-16.92-4.04-8-5.27-9.62-14.58-1.23-8.92 4.35-16.92 5.57-8 14.88-9.61l145.15-23.7v-108.3l-217.22 18.46q-9.93 1-17.12-5.08-7.19-6.08-7.81-16-1-9.92 5.08-17.11 6.08-7.2 16-7.81l221.07-17.85v-96.07l-259.92-8.62q-9.92-.62-16.11-7.19-6.19-6.58-5.58-16.5.62-9.92 7-16.12 6.39-6.19 16.31-5.57l258.3 8.61v-96.85l-184.84-34.92q-9.31-1.61-14.77-9.42-5.46-7.81-3.85-17.12 1.62-8.92 9.62-14.19 8-5.27 16.92-3.65l282.77 52.84-25.38-126.3q-3-12.08.42-24.35 3.42-12.27 11.27-21.73t18.61-15.5q10.77-6.04 22.47-5.04l10.92.62 187.3 207.77q10.62 12.61 16.62 27.73 6 15.11 6 31.34v258.08q0 31.84-20.92 55.88-20.93 24.04-51.77 29.04L207.54-60.54Zm551.92-222.54v-190.23q0-31.61-8.31-53.84-8.31-22.23-28.92-44.85l-76.46-84.54-74.23-212.15q-3.23-8.92 1.11-17.23 4.35-8.31 13.27-11.54 8.93-3.23 17.23 1.12 8.31 4.34 11.54 13.26l95.46 272.39 95.7-84.92q9.46-8.85 21.53-11.77 12.08-2.93 24.16-.93 12.07 1.62 22.04 8.27 9.96 6.66 15.8 17.12l5.08 9.31-98.85 306.3q-6.77 20.31-14.96 40.5-8.19 20.19-21.19 43.73ZM375.23-623.23l-41.77-7.69-68.07-98.23q-5.08-7.31-3.66-16.43 1.43-9.11 8.73-14.57 8.31-6.08 17.43-4.16 9.11 1.93 14.57 10.23l64.69 96.54q.39 2.47 1.08 4.62.69 2.15 1.31 4.61l5.69 25.08Zm41.39-158.54L381-844q-4.46-8.31-2.23-17.23T389.31-875q8.31-4.46 17.23-2.23t13.77 10.54l39.84 68.31q-12.15 2-22.57 5.54-10.43 3.53-20.96 11.07Z",
|
|
17
|
+
"400": "M196-34q-12 2-22.5-5T161-58q-2-12 5.5-22.5T186-93l159-26v-101l-233 20q-13 1-22.5-7T79-228q-1-13 7-22.5t21-10.5l238-19v-88l-278-9q-13-1-21.5-9.5T38-408q1-13 9.5-21.5T69-437l276 9v-88l-201-38q-12-2-19-12.5t-5-22.5q2-12 12.5-19t22.5-5l287 54-25-124q-3-14 1-28t13-25q9-11 21.5-18t26.5-6l14 1 200 222q11 13 17 28.5t6 32.5v280q0 33-21.5 58T641-108L196-34Zm580-236v-206q0-32-8.5-55T738-577l-98-108-70-201q-4-12 1.5-23t17.5-15q12-4 23 1.5t15 17.5l97 277 93-83q11-10 25-13.5t28-1.5q14 2 25.5 10t18.5 20l7 12-110 339q-6 18-14 35.5T776-270ZM366-634l-51-10-65-94q-7-10-5-22t12-19q11-8 23-5.5t19 13.5l57 85q0 4 .5 7.5t1.5 7.5l8 37Zm41-162-36-63q-6-11-3-23t14-18q11-6 23-3t18 14l41 71q-16 2-29.5 6.5T407-796Z",
|
|
18
|
+
"500": "M191.22-25.63q-12.72 2.24-23.7-5.12-10.98-7.36-12.98-19.84-2-12.71 5.86-23.69t20.34-13.22l163.06-26.72v-100.52L106.02-194.5q-13.72 1-23.69-7.24-9.98-8.24-10.98-21.96-1-13.71 7.24-23.69t21.95-10.98l243.26-19.24v-87.76l-283.97-9.24q-13.72-.76-22.46-9.74t-7.74-22.69q1-13.48 9.98-22.34t22.46-8.1l281.73 9.24v-87.52l-205.78-38.72q-12.48-2.24-19.84-13.22-7.35-10.97-5.11-23.45 2.23-12.48 13.09-19.84 10.86-7.36 23.58-5.36l290.59 54.72-25-124.72q-3.24-14.48.76-28.95 4-14.48 13.24-25.96t22.33-18.6q13.1-7.12 27.58-6.12l14.48 1 201.19 223.2q12.68 14.91 19.51 32.68 6.84 17.77 6.84 36.93v272.34q0 37.79-24.49 66.25-24.49 28.47-61.03 34.19L191.22-25.63Zm590.04-238.39v-208.15q0-35.35-9.1-59.67-9.09-24.31-32.25-49.7l-98.48-108.72-70.47-202.67q-4.24-12.72 1.5-24.2 5.74-11.48 18.45-15.72 12.48-4.24 23.96 1.62t15.72 18.34l98.19 280.59 93.72-83.48q11.24-10.48 25.6-14.1 14.36-3.62 28.83-1.62 14.48 2.24 26.46 10.48t18.98 20.72l7.48 12.47-112.39 346.18q-6.24 18.72-14.6 36.69-8.36 17.98-21.6 40.94ZM364.33-636.63l-53.16-10.48-65.71-94.96q-7.48-10.47-5.36-23.19t12.6-19.96q11.47-8 24.07-5.38t19.84 14.1l57.72 85.72q-.24 4.24.14 8.1.38 3.85 1.62 8.09l8.24 37.96Zm40.76-164.39-36.48-64.2q-6.48-11.48-3.24-24.07 3.24-12.6 14.72-18.84t23.95-3.12q12.48 3.12 18.72 14.6l42.2 72.67q-16.72 1.76-31.06 6.62-14.33 4.86-28.81 16.34Z",
|
|
19
|
+
"600": "M184.7-14.22q-13.7 2.57-25.33-5.28-11.63-7.85-13.63-20.98-2-13.69 6.35-25.32 8.34-11.63 21.47-14.2l168.61-27.7v-99.86L97.87-187q-14.7 1-25.33-7.56-10.63-8.57-11.63-23.27-1-14.69 7.57-25.32 8.56-10.63 23.26-11.63l250.43-19.57v-87.43l-292.13-9.57q-14.69-.43-23.76-10.06-9.06-9.63-8.06-24.33 1-14.13 10.63-23.48t23.76-8.91l289.56 9.56v-86.86l-212.3-39.7q-13.13-2.57-20.98-14.2-7.85-11.63-5.28-24.76 2.56-13.13 13.91-20.98 11.35-7.84 25.04-5.84l295.48 55.69-25-125.69q-3.56-15.13.44-30.26t13.56-27.27q9.57-12.13 23.48-19.41 13.91-7.28 29.05-6.28l15.13 1L697.52-548.3q14.96 17.52 22.94 38.39t7.98 42.95v261.92q0 44.3-28.57 77.5-28.57 33.19-71.31 39.89L184.7-14.22Zm603.74-241.65v-211.09q0-39.91-9.92-66.02-9.91-26.11-36-54.76l-99.13-109.7-71.13-204.95q-4.56-13.7 1.5-25.83 6.07-12.13 19.76-16.69 13.13-4.57 25.26 1.78 12.13 6.35 16.7 19.48l99.82 285.48L830-722.3q11.57-11.14 26.41-14.92 14.85-3.78 29.98-1.78 15.13 2.56 27.76 11.13t19.63 21.7l8.13 13.13-115.65 355.95q-6.56 19.7-15.41 38.33-8.85 18.63-22.41 42.89Zm-426.4-384.35-56.08-11.13-66.7-96.26q-8.13-11.13-5.85-24.83 2.29-13.69 13.42-21.26 12.13-8 25.54-5.21 13.41 2.78 20.98 14.91l58.69 86.7q-.56 4.56-.34 8.91.21 4.35 1.78 8.91l8.56 39.26Zm40.44-167.65-37.13-65.83q-7.13-12.13-3.57-25.54 3.57-13.41 15.7-19.98 12.13-6.56 25.26-3.28t19.69 15.41l43.83 74.96q-17.69 1.43-33.17 6.78-15.48 5.35-30.61 17.48Z",
|
|
20
|
+
"700": "M176 1q-15 3-27.5-5.5T134-27q-2-15 7-27.5T164-70l176-29v-99L87-177q-16 1-27.5-8T47-210q-1-16 8-27.5T80-250l260-20v-87L37-367q-16 0-25.5-10.5T3-404q1-15 11.5-25T40-439l300 10v-86l-221-41q-14-3-22.5-15.5T91-598q3-14 15-22.5t27-6.5l302 57-25-127q-4-16 0-32t14-29q10-13 25-20.5t31-6.5l16 1 205 227q18 21 27.5 46t9.5 51v248q0 53-34 92.5T619-72L176 1Zm622-246v-215q0-46-11-74.5T746-596L646-707l-72-208q-5-15 1.5-28t21.5-18q14-5 27 2t18 21l102 292 96-85q12-12 27.5-16t31.5-2q16 3 29.5 12t20.5 23l9 14-120 369q-7 21-16.5 40.5T798-245ZM359-645l-60-12-68-98q-9-12-6.5-27t14.5-23q13-8 27.5-5t22.5 16l60 88q-1 5-1 10t2 10l9 41Zm40-172-38-68q-8-13-4-27.5t17-21.5q13-7 27-3.5t21 16.5l46 78q-19 1-36 7t-33 19Z"
|
|
21
21
|
}
|
|
22
22
|
};
|
|
23
23
|
const SignLanguageW100 = createMaterialIcon("sign_language", pathData.regular[100]);
|
package/dist/index.d.ts
CHANGED
|
@@ -433,7 +433,6 @@ export { BatteryHoriz075W400 as BatteryHoriz075, BatteryHoriz075FillW400 as Batt
|
|
|
433
433
|
export { BatteryLowW400 as BatteryLow, BatteryLowFillW400 as BatteryLowFill } from './icons/battery-low.js';
|
|
434
434
|
export { BatteryPlusW400 as BatteryPlus, BatteryPlusFillW400 as BatteryPlusFill } from './icons/battery-plus.js';
|
|
435
435
|
export { BatteryProfileW400 as BatteryProfile, BatteryProfileFillW400 as BatteryProfileFill } from './icons/battery-profile.js';
|
|
436
|
-
export { BatterySaverW400 as BatterySaver, BatterySaverFillW400 as BatterySaverFill } from './icons/battery-saver.js';
|
|
437
436
|
export { BatteryShareW400 as BatteryShare, BatteryShareFillW400 as BatteryShareFill } from './icons/battery-share.js';
|
|
438
437
|
export { BatteryStatusGoodW400 as BatteryStatusGood, BatteryStatusGoodFillW400 as BatteryStatusGoodFill } from './icons/battery-status-good.js';
|
|
439
438
|
export { BatteryUnknownW400 as BatteryUnknown, BatteryUnknownFillW400 as BatteryUnknownFill } from './icons/battery-unknown.js';
|
|
@@ -1238,6 +1237,7 @@ export { FactCheckW400 as FactCheck, FactCheckFillW400 as FactCheckFill } from '
|
|
|
1238
1237
|
export { FactoryW400 as Factory, FactoryFillW400 as FactoryFill } from './icons/factory.js';
|
|
1239
1238
|
export { FallingW400 as Falling, FallingFillW400 as FallingFill } from './icons/falling.js';
|
|
1240
1239
|
export { FamiliarFaceAndZoneW400 as FamiliarFaceAndZone, FamiliarFaceAndZoneFillW400 as FamiliarFaceAndZoneFill } from './icons/familiar-face-and-zone.js';
|
|
1240
|
+
export { FamilyGroupW400 as FamilyGroup, FamilyGroupFillW400 as FamilyGroupFill } from './icons/family-group.js';
|
|
1241
1241
|
export { FamilyHistoryW400 as FamilyHistory, FamilyHistoryFillW400 as FamilyHistoryFill } from './icons/family-history.js';
|
|
1242
1242
|
export { FamilyHomeW400 as FamilyHome, FamilyHomeFillW400 as FamilyHomeFill } from './icons/family-home.js';
|
|
1243
1243
|
export { FamilyLinkW400 as FamilyLink, FamilyLinkFillW400 as FamilyLinkFill } from './icons/family-link.js';
|
|
@@ -1325,6 +1325,7 @@ export { FitScreenW400 as FitScreen, FitScreenFillW400 as FitScreenFill } from '
|
|
|
1325
1325
|
export { FitWidthW400 as FitWidth, FitWidthFillW400 as FitWidthFill } from './icons/fit-width.js';
|
|
1326
1326
|
export { FitnessCenterW400 as FitnessCenter, FitnessCenterFillW400 as FitnessCenterFill } from './icons/fitness-center.js';
|
|
1327
1327
|
export { FitnessTrackerW400 as FitnessTracker, FitnessTrackerFillW400 as FitnessTrackerFill } from './icons/fitness-tracker.js';
|
|
1328
|
+
export { FitnessTrackersW400 as FitnessTrackers, FitnessTrackersFillW400 as FitnessTrackersFill } from './icons/fitness-trackers.js';
|
|
1328
1329
|
export { Flag2W400 as Flag2, Flag2FillW400 as Flag2Fill } from './icons/flag-2.js';
|
|
1329
1330
|
export { FlagCheckW400 as FlagCheck, FlagCheckFillW400 as FlagCheckFill } from './icons/flag-check.js';
|
|
1330
1331
|
export { FlagCircleW400 as FlagCircle, FlagCircleFillW400 as FlagCircleFill } from './icons/flag-circle.js';
|
|
@@ -1964,6 +1965,7 @@ export { MagnificationLargeW400 as MagnificationLarge, MagnificationLargeFillW40
|
|
|
1964
1965
|
export { MagnificationSmallW400 as MagnificationSmall, MagnificationSmallFillW400 as MagnificationSmallFill } from './icons/magnification-small.js';
|
|
1965
1966
|
export { MagnifyDockedW400 as MagnifyDocked, MagnifyDockedFillW400 as MagnifyDockedFill } from './icons/magnify-docked.js';
|
|
1966
1967
|
export { MagnifyFullscreenW400 as MagnifyFullscreen, MagnifyFullscreenFillW400 as MagnifyFullscreenFill } from './icons/magnify-fullscreen.js';
|
|
1968
|
+
export { MailAsteriskW400 as MailAsterisk, MailAsteriskFillW400 as MailAsteriskFill } from './icons/mail-asterisk.js';
|
|
1967
1969
|
export { MailLockW400 as MailLock, MailLockFillW400 as MailLockFill } from './icons/mail-lock.js';
|
|
1968
1970
|
export { MailOffW400 as MailOff, MailOffFillW400 as MailOffFill } from './icons/mail-off.js';
|
|
1969
1971
|
export { MailShieldW400 as MailShield, MailShieldFillW400 as MailShieldFill } from './icons/mail-shield.js';
|
|
@@ -2096,6 +2098,7 @@ export { MobileSoundW400 as MobileSound, MobileSoundFillW400 as MobileSoundFill
|
|
|
2096
2098
|
export { MobileSpeakerW400 as MobileSpeaker, MobileSpeakerFillW400 as MobileSpeakerFill } from './icons/mobile-speaker.js';
|
|
2097
2099
|
export { MobileText2W400 as MobileText2, MobileText2FillW400 as MobileText2Fill } from './icons/mobile-text-2.js';
|
|
2098
2100
|
export { MobileTextW400 as MobileText, MobileTextFillW400 as MobileTextFill } from './icons/mobile-text.js';
|
|
2101
|
+
export { MobileTheftW400 as MobileTheft, MobileTheftFillW400 as MobileTheftFill } from './icons/mobile-theft.js';
|
|
2099
2102
|
export { MobileTicketW400 as MobileTicket, MobileTicketFillW400 as MobileTicketFill } from './icons/mobile-ticket.js';
|
|
2100
2103
|
export { MobileVibrateW400 as MobileVibrate, MobileVibrateFillW400 as MobileVibrateFill } from './icons/mobile-vibrate.js';
|
|
2101
2104
|
export { MobileWrenchW400 as MobileWrench, MobileWrenchFillW400 as MobileWrenchFill } from './icons/mobile-wrench.js';
|
|
@@ -2144,7 +2147,6 @@ export { MosqueW400 as Mosque, MosqueFillW400 as MosqueFill } from './icons/mosq
|
|
|
2144
2147
|
export { MotionBlurW400 as MotionBlur, MotionBlurFillW400 as MotionBlurFill } from './icons/motion-blur.js';
|
|
2145
2148
|
export { MotionModeW400 as MotionMode, MotionModeFillW400 as MotionModeFill } from './icons/motion-mode.js';
|
|
2146
2149
|
export { MotionPhotosAutoW400 as MotionPhotosAuto, MotionPhotosAutoFillW400 as MotionPhotosAutoFill } from './icons/motion-photos-auto.js';
|
|
2147
|
-
export { MotionPhotosOffW400 as MotionPhotosOff, MotionPhotosOffFillW400 as MotionPhotosOffFill } from './icons/motion-photos-off.js';
|
|
2148
2150
|
export { MotionPhotosOnW400 as MotionPhotosOn, MotionPhotosOnFillW400 as MotionPhotosOnFill } from './icons/motion-photos-on.js';
|
|
2149
2151
|
export { MotionPhotosPausedW400 as MotionPhotosPaused, MotionPhotosPausedFillW400 as MotionPhotosPausedFill } from './icons/motion-photos-paused.js';
|
|
2150
2152
|
export { MotionPlayW400 as MotionPlay, MotionPlayFillW400 as MotionPlayFill } from './icons/motion-play.js';
|
|
@@ -3421,7 +3423,6 @@ export { TrailLengthShortW400 as TrailLengthShort, TrailLengthShortFillW400 as T
|
|
|
3421
3423
|
export { TrailLengthW400 as TrailLength, TrailLengthFillW400 as TrailLengthFill } from './icons/trail-length.js';
|
|
3422
3424
|
export { TrainW400 as Train, TrainFillW400 as TrainFill } from './icons/train.js';
|
|
3423
3425
|
export { TramW400 as Tram, TramFillW400 as TramFill } from './icons/tram.js';
|
|
3424
|
-
export { TranscribeW400 as Transcribe, TranscribeFillW400 as TranscribeFill } from './icons/transcribe.js';
|
|
3425
3426
|
export { TransferWithinAStationW400 as TransferWithinAStation, TransferWithinAStationFillW400 as TransferWithinAStationFill } from './icons/transfer-within-a-station.js';
|
|
3426
3427
|
export { TransformW400 as Transform, TransformFillW400 as TransformFill } from './icons/transform.js';
|
|
3427
3428
|
export { TransgenderW400 as Transgender, TransgenderFillW400 as TransgenderFill } from './icons/transgender.js';
|
|
@@ -3587,7 +3588,6 @@ export { VoiceSelectionW400 as VoiceSelection, VoiceSelectionFillW400 as VoiceSe
|
|
|
3587
3588
|
export { Voicemail2W400 as Voicemail2, Voicemail2FillW400 as Voicemail2Fill } from './icons/voicemail-2.js';
|
|
3588
3589
|
export { VoicemailW400 as Voicemail, VoicemailFillW400 as VoicemailFill } from './icons/voicemail.js';
|
|
3589
3590
|
export { VolcanoW400 as Volcano, VolcanoFillW400 as VolcanoFill } from './icons/volcano.js';
|
|
3590
|
-
export { VolumeDownAltW400 as VolumeDownAlt, VolumeDownAltFillW400 as VolumeDownAltFill } from './icons/volume-down-alt.js';
|
|
3591
3591
|
export { VolumeDownW400 as VolumeDown, VolumeDownFillW400 as VolumeDownFill } from './icons/volume-down.js';
|
|
3592
3592
|
export { VolumeMuteW400 as VolumeMute, VolumeMuteFillW400 as VolumeMuteFill } from './icons/volume-mute.js';
|
|
3593
3593
|
export { VolumeOffW400 as VolumeOff, VolumeOffFillW400 as VolumeOffFill } from './icons/volume-off.js';
|