@fluentui/react-icons 2.0.158-beta.9 → 2.0.159-beta.10

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.
@@ -1,17 +1,5 @@
1
1
  import * as React from "react";
2
2
  import { FluentIconsProps } from "../utils/FluentIconsProps.types";
3
- export declare const VehicleBicycle16Filled: React.FC<FluentIconsProps>;
4
- export declare const VehicleBicycle16Regular: React.FC<FluentIconsProps>;
5
- export declare const VehicleBicycle20Filled: React.FC<FluentIconsProps>;
6
- export declare const VehicleBicycle20Regular: React.FC<FluentIconsProps>;
7
- export declare const VehicleBicycle24Filled: React.FC<FluentIconsProps>;
8
- export declare const VehicleBicycle24Regular: React.FC<FluentIconsProps>;
9
- export declare const VehicleBus16Filled: React.FC<FluentIconsProps>;
10
- export declare const VehicleBus16Regular: React.FC<FluentIconsProps>;
11
- export declare const VehicleBus20Filled: React.FC<FluentIconsProps>;
12
- export declare const VehicleBus20Regular: React.FC<FluentIconsProps>;
13
- export declare const VehicleBus24Filled: React.FC<FluentIconsProps>;
14
- export declare const VehicleBus24Regular: React.FC<FluentIconsProps>;
15
3
  export declare const VehicleCab16Filled: React.FC<FluentIconsProps>;
16
4
  export declare const VehicleCab16Regular: React.FC<FluentIconsProps>;
17
5
  export declare const VehicleCab20Filled: React.FC<FluentIconsProps>;
@@ -500,3 +488,15 @@ export declare const WindowArrowUp20Filled: React.FC<FluentIconsProps>;
500
488
  export declare const WindowArrowUp20Regular: React.FC<FluentIconsProps>;
501
489
  export declare const WindowArrowUp24Filled: React.FC<FluentIconsProps>;
502
490
  export declare const WindowArrowUp24Regular: React.FC<FluentIconsProps>;
491
+ export declare const WindowConsole20Filled: React.FC<FluentIconsProps>;
492
+ export declare const WindowConsole20Regular: React.FC<FluentIconsProps>;
493
+ export declare const WindowDevEdit16Filled: React.FC<FluentIconsProps>;
494
+ export declare const WindowDevEdit16Regular: React.FC<FluentIconsProps>;
495
+ export declare const WindowDevEdit20Filled: React.FC<FluentIconsProps>;
496
+ export declare const WindowDevEdit20Regular: React.FC<FluentIconsProps>;
497
+ export declare const WindowDevTools16Filled: React.FC<FluentIconsProps>;
498
+ export declare const WindowDevTools16Regular: React.FC<FluentIconsProps>;
499
+ export declare const WindowDevTools20Filled: React.FC<FluentIconsProps>;
500
+ export declare const WindowDevTools20Regular: React.FC<FluentIconsProps>;
501
+ export declare const WindowDevTools24Filled: React.FC<FluentIconsProps>;
502
+ export declare const WindowDevTools24Regular: React.FC<FluentIconsProps>;
@@ -1,234 +1,6 @@
1
1
  import * as React from "react";
2
2
  import wrapIcon from "../utils/wrapIcon";
3
3
 
4
- const VehicleBicycle16FilledIcon = iconProps => {
5
- const {
6
- className,
7
- primaryFill
8
- } = iconProps;
9
- return React.createElement("svg", {
10
- width: 16,
11
- height: 16,
12
- viewBox: "0 0 16 16",
13
- xmlns: "http://www.w3.org/2000/svg",
14
- className: className
15
- }, React.createElement("path", {
16
- d: "M8.75 1.5a.75.75 0 000 1.5h.9l.34 1.5H6v-.75A.75.75 0 005.25 3h-1.5a.75.75 0 000 1.5h.75v.68L4.13 7a3.25 3.25 0 103.08 1.92l3.22-2.48.17.77a3.25 3.25 0 101.5-.2l-1.12-4.93a.75.75 0 00-.73-.58h-1.5zM5.61 7.3L5.86 6h2.68L6.3 7.73a3.25 3.25 0 00-.7-.43zM2.5 10.25c0-.82.56-1.5 1.32-1.7l-.3 1.55a.75.75 0 001.19.74l1.25-.96A1.76 1.76 0 014.25 12c-.97 0-1.75-.78-1.75-1.75zm8.44-1.55l.33 1.47a.75.75 0 001.46-.34l-.27-1.18a1.75 1.75 0 11-1.52.05z",
17
- fill: primaryFill
18
- }));
19
- };
20
-
21
- export const VehicleBicycle16Filled = /*#__PURE__*/wrapIcon( /*#__PURE__*/VehicleBicycle16FilledIcon({}), 'VehicleBicycle16Filled');
22
-
23
- const VehicleBicycle16RegularIcon = iconProps => {
24
- const {
25
- className,
26
- primaryFill
27
- } = iconProps;
28
- return React.createElement("svg", {
29
- width: 16,
30
- height: 16,
31
- viewBox: "0 0 16 16",
32
- xmlns: "http://www.w3.org/2000/svg",
33
- className: className
34
- }, React.createElement("path", {
35
- d: "M8.5 2a.5.5 0 000 1h1.12l.53 2H6V3.5a.5.5 0 00-.5-.5h-2a.5.5 0 000 1H5v1.2c0 .05 0 .1.02.15l-.56 1.69A3 3 0 107 10.2l3.5-3.93.26 1a3 3 0 10.97-.26l-1.24-4.64A.5.5 0 0010 2H8.5zM4 8h.14l-.61 1.84a.5.5 0 00.47.66h1.94A2 2 0 114 8zm.7 1.5l.39-1.18a2 2 0 01.85 1.18H4.69zm.71-2.15L5.86 6h3.53l-2.6 2.91a3.01 3.01 0 00-1.38-1.56zm5.6.9l.5 1.88a.5.5 0 00.97-.26L11.98 8H12a2 2 0 11-.98.26z",
36
- fill: primaryFill
37
- }));
38
- };
39
-
40
- export const VehicleBicycle16Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/VehicleBicycle16RegularIcon({}), 'VehicleBicycle16Regular');
41
-
42
- const VehicleBicycle20FilledIcon = iconProps => {
43
- const {
44
- className,
45
- primaryFill
46
- } = iconProps;
47
- return React.createElement("svg", {
48
- width: 20,
49
- height: 20,
50
- viewBox: "0 0 20 20",
51
- xmlns: "http://www.w3.org/2000/svg",
52
- className: className
53
- }, React.createElement("path", {
54
- d: "M10.75 2a.75.75 0 000 1.5h1.13l.36 2H7.25v-.75A.75.75 0 006.5 4h-2a.75.75 0 000 1.5h1.25v.7L5.4 9.02a3.75 3.75 0 104.06 3.2l3.23-4.3.24 1.32A3.75 3.75 0 1014.41 9l-1.17-6.39A.75.75 0 0012.5 2h-1.75zm-3.6 5.13A.75.75 0 007.2 7h4.29l-2.69 3.58a3.76 3.76 0 00-1.92-1.4l.26-2.05zM3.5 12.75c0-1.05.73-1.94 1.7-2.18L5 12.16a.75.75 0 00.75.84h2.24a2.25 2.25 0 01-4.49-.25zm3.1-1.25l.1-.8c.37.18.7.46.92.8H6.6zm6.61-.75l.3 1.64A.75.75 0 0015 12.1l-.3-1.57a2.25 2.25 0 11-1.48.21z",
55
- fill: primaryFill
56
- }));
57
- };
58
-
59
- export const VehicleBicycle20Filled = /*#__PURE__*/wrapIcon( /*#__PURE__*/VehicleBicycle20FilledIcon({}), 'VehicleBicycle20Filled');
60
-
61
- const VehicleBicycle20RegularIcon = iconProps => {
62
- const {
63
- className,
64
- primaryFill
65
- } = iconProps;
66
- return React.createElement("svg", {
67
- width: 20,
68
- height: 20,
69
- viewBox: "0 0 20 20",
70
- xmlns: "http://www.w3.org/2000/svg",
71
- className: className
72
- }, React.createElement("path", {
73
- d: "M10.5 2a.5.5 0 000 1h1.59l.6 3H7V4.5a.5.5 0 00-.5-.5h-2a.5.5 0 000 1H6v1.46L5.58 9H5.5A3.5 3.5 0 109 12.67l3.97-5.3.36 1.83a3.5 3.5 0 10.98-.2L13 2.4a.5.5 0 00-.49-.4h-2zM3 12.5A2.5 2.5 0 015.41 10l-.4 2.42a.5.5 0 00.49.58h2.45A2.5 2.5 0 013 12.5zm3.09-.5l.3-1.83c.8.3 1.39.99 1.56 1.83H6.09zm.47-2.84L6.92 7H12l-3.22 4.29a3.5 3.5 0 00-2.22-2.13zm6.97 1.04l.48 2.4a.5.5 0 00.98-.2l-.48-2.4a2.5 2.5 0 11-.98.2z",
74
- fill: primaryFill
75
- }));
76
- };
77
-
78
- export const VehicleBicycle20Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/VehicleBicycle20RegularIcon({}), 'VehicleBicycle20Regular');
79
-
80
- const VehicleBicycle24FilledIcon = iconProps => {
81
- const {
82
- className,
83
- primaryFill
84
- } = iconProps;
85
- return React.createElement("svg", {
86
- width: 24,
87
- height: 24,
88
- viewBox: "0 0 24 24",
89
- xmlns: "http://www.w3.org/2000/svg",
90
- className: className
91
- }, React.createElement("path", {
92
- d: "M13 2a1 1 0 100 2h1.19l.62 3H9V6a1 1 0 00-1-1H5a1 1 0 000 2h2v.86l-.9 3.16a4.5 4.5 0 104.9 4.35l4.47-5.21.25 1.2A4.5 4.5 0 1017.7 11l-1.71-8.2A1 1 0 0015 2h-2zm3.14 11.4l.38 1.8a1 1 0 001.96-.4l-.36-1.72a2.5 2.5 0 11-1.98.32zm-5.83-.3a4.52 4.52 0 00-2.21-1.8L8.75 9h5.08l-3.52 4.1zm-2.76.13c.37.17.7.44.95.77H7.33l.22-.77zm-2.08 0l-.43 1.5A1 1 0 006 16h2.95a2.5 2.5 0 11-3.48-2.78z",
93
- fill: primaryFill
94
- }));
95
- };
96
-
97
- export const VehicleBicycle24Filled = /*#__PURE__*/wrapIcon( /*#__PURE__*/VehicleBicycle24FilledIcon({}), 'VehicleBicycle24Filled');
98
-
99
- const VehicleBicycle24RegularIcon = iconProps => {
100
- const {
101
- className,
102
- primaryFill
103
- } = iconProps;
104
- return React.createElement("svg", {
105
- width: 24,
106
- height: 24,
107
- viewBox: "0 0 24 24",
108
- xmlns: "http://www.w3.org/2000/svg",
109
- className: className
110
- }, React.createElement("path", {
111
- d: "M12.75 3a.75.75 0 000 1.5h1.43l.95 3.5H8.5V5.75A.75.75 0 007.75 5h-3a.75.75 0 000 1.5H7v2.19l-.3 1.81a4.25 4.25 0 104.3 4.06l4.65-4.65.28 1a4.25 4.25 0 101.44-.4l-1.9-6.96a.75.75 0 00-.72-.55h-2zm3.58 9.4l.7 2.55a.75.75 0 101.44-.4l-.7-2.55a2.75 2.75 0 11-1.44.4zm-5.77.47a4.26 4.26 0 00-2.38-2.12l.2-1.25h5.56l-3.38 3.37zm-2.64-.6c.72.33 1.26.96 1.48 1.73H7.64l.28-1.74zm-1.47-.25L6 14.62a.75.75 0 00.74.88H9.4a2.75 2.75 0 11-2.95-3.48z",
112
- fill: primaryFill
113
- }));
114
- };
115
-
116
- export const VehicleBicycle24Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/VehicleBicycle24RegularIcon({}), 'VehicleBicycle24Regular');
117
-
118
- const VehicleBus16FilledIcon = iconProps => {
119
- const {
120
- className,
121
- primaryFill
122
- } = iconProps;
123
- return React.createElement("svg", {
124
- width: 16,
125
- height: 16,
126
- viewBox: "0 0 16 16",
127
- xmlns: "http://www.w3.org/2000/svg",
128
- className: className
129
- }, React.createElement("path", {
130
- d: "M7.5 3a.5.5 0 000 1h1a.5.5 0 000-1h-1zM4.9 1A2.9 2.9 0 002 3.9V6h-.5a.5.5 0 000 1H2v6.7c0 .72.58 1.3 1.3 1.3h1.4c.72 0 1.3-.58 1.3-1.3V13h4v.7c0 .72.58 1.3 1.3 1.3h1.4c.72 0 1.3-.58 1.3-1.3V7h.5a.5.5 0 000-1H14V3.9C14 2.3 12.7 1 11.1 1H4.9zM13 3.9V8H3V3.9C3 2.85 3.85 2 4.9 2h6.2c1.05 0 1.9.85 1.9 1.9zm0 9.1v.7a.3.3 0 01-.3.3h-1.4a.3.3 0 01-.3-.3V13h2zm-8 0v.7a.3.3 0 01-.3.3H3.3a.3.3 0 01-.3-.3V13h2zm1.5-2.75a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm3.75.75a.75.75 0 110-1.5.75.75 0 010 1.5z",
131
- fill: primaryFill
132
- }));
133
- };
134
-
135
- export const VehicleBus16Filled = /*#__PURE__*/wrapIcon( /*#__PURE__*/VehicleBus16FilledIcon({}), 'VehicleBus16Filled');
136
-
137
- const VehicleBus16RegularIcon = iconProps => {
138
- const {
139
- className,
140
- primaryFill
141
- } = iconProps;
142
- return React.createElement("svg", {
143
- width: 16,
144
- height: 16,
145
- viewBox: "0 0 16 16",
146
- xmlns: "http://www.w3.org/2000/svg",
147
- className: className
148
- }, React.createElement("path", {
149
- d: "M7.5 3a.5.5 0 000 1h1a.5.5 0 000-1h-1zm-1 7.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm3.75.75a.75.75 0 100-1.5.75.75 0 000 1.5zM2 3.9C2 2.3 3.3 1 4.9 1h6.2C12.7 1 14 2.3 14 3.9V6h.5a.5.5 0 010 1H14v6.7c0 .72-.58 1.3-1.3 1.3h-1.4a1.3 1.3 0 01-1.3-1.3V13H6v.7c0 .72-.58 1.3-1.3 1.3H3.3A1.3 1.3 0 012 13.7V7h-.5a.5.5 0 010-1H2V3.9zm11 0A1.9 1.9 0 0011.1 2H4.9A1.9 1.9 0 003 3.9V8h10V3.9zM11 13v.7c0 .17.13.3.3.3h1.4a.3.3 0 00.3-.3V13h-2zm-8 0v.7c0 .17.13.3.3.3h1.4a.3.3 0 00.3-.3V13H3zm0-1h10V9H3v3z",
150
- fill: primaryFill
151
- }));
152
- };
153
-
154
- export const VehicleBus16Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/VehicleBus16RegularIcon({}), 'VehicleBus16Regular');
155
-
156
- const VehicleBus20FilledIcon = iconProps => {
157
- const {
158
- className,
159
- primaryFill
160
- } = iconProps;
161
- return React.createElement("svg", {
162
- width: 20,
163
- height: 20,
164
- viewBox: "0 0 20 20",
165
- xmlns: "http://www.w3.org/2000/svg",
166
- className: className
167
- }, React.createElement("path", {
168
- d: "M9 4a.5.5 0 000 1h2a.5.5 0 000-1H9zM3 5.5A3.5 3.5 0 016.5 2h7A3.5 3.5 0 0117 5.5V8h1a.5.5 0 010 1h-1v7.5c0 .83-.67 1.5-1.5 1.5h-1a1.5 1.5 0 01-1.5-1.5V16H7v.5c0 .83-.67 1.5-1.5 1.5h-1A1.5 1.5 0 013 16.5V9H2a.5.5 0 010-1h1V5.5zm13 0A2.5 2.5 0 0013.5 3h-7A2.5 2.5 0 004 5.5V10h12V5.5zM14 16v.5c0 .28.22.5.5.5h1a.5.5 0 00.5-.5V16h-2zM4 16v.5c0 .28.22.5.5.5h1a.5.5 0 00.5-.5V16H4zm4-3a1 1 0 10-2 0 1 1 0 002 0zm5 1a1 1 0 100-2 1 1 0 000 2z",
169
- fill: primaryFill
170
- }));
171
- };
172
-
173
- export const VehicleBus20Filled = /*#__PURE__*/wrapIcon( /*#__PURE__*/VehicleBus20FilledIcon({}), 'VehicleBus20Filled');
174
-
175
- const VehicleBus20RegularIcon = iconProps => {
176
- const {
177
- className,
178
- primaryFill
179
- } = iconProps;
180
- return React.createElement("svg", {
181
- width: 20,
182
- height: 20,
183
- viewBox: "0 0 20 20",
184
- xmlns: "http://www.w3.org/2000/svg",
185
- className: className
186
- }, React.createElement("path", {
187
- d: "M9 4a.5.5 0 000 1h2a.5.5 0 000-1H9zm-1 9a1 1 0 11-2 0 1 1 0 012 0zm5 1a1 1 0 100-2 1 1 0 000 2zM3 5.5A3.5 3.5 0 016.5 2h7A3.5 3.5 0 0117 5.5V8h1a.5.5 0 010 1h-1v7.5c0 .83-.67 1.5-1.5 1.5h-1a1.5 1.5 0 01-1.5-1.5V16H7v.5c0 .83-.67 1.5-1.5 1.5h-1A1.5 1.5 0 013 16.5V9H2a.5.5 0 010-1h1V5.5zm13 0A2.5 2.5 0 0013.5 3h-7A2.5 2.5 0 004 5.5V10h12V5.5zM14 16v.5c0 .28.22.5.5.5h1a.5.5 0 00.5-.5V16h-2zM4 16v.5c0 .28.22.5.5.5h1a.5.5 0 00.5-.5V16H4zm0-1h12v-4H4v4z",
188
- fill: primaryFill
189
- }));
190
- };
191
-
192
- export const VehicleBus20Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/VehicleBus20RegularIcon({}), 'VehicleBus20Regular');
193
-
194
- const VehicleBus24FilledIcon = iconProps => {
195
- const {
196
- className,
197
- primaryFill
198
- } = iconProps;
199
- return React.createElement("svg", {
200
- width: 24,
201
- height: 24,
202
- viewBox: "0 0 24 24",
203
- xmlns: "http://www.w3.org/2000/svg",
204
- className: className
205
- }, React.createElement("path", {
206
- d: "M10.75 5a.75.75 0 000 1.5h2.5a.75.75 0 000-1.5h-2.5zM4 5.75A3.75 3.75 0 017.75 2h8.5A3.75 3.75 0 0120 5.75V9.5h1.23a.75.75 0 010 1.5H20v8.75c0 .97-.78 1.75-1.75 1.75h-1.5c-.97 0-1.75-.78-1.75-1.75V18.5H9v1.25c0 .97-.78 1.75-1.75 1.75h-1.5c-.97 0-1.75-.78-1.75-1.75V11H2.75a.75.75 0 010-1.5H4V5.75zM16.5 18.5v1.25c0 .14.11.25.25.25h1.5c.14 0 .25-.11.25-.25V18.5h-2zm-11 0v1.25c0 .14.11.25.25.25h1.5c.14 0 .25-.11.25-.25V18.5h-2zm2.25-15c-1.24 0-2.25 1-2.25 2.25V12h13V5.75c0-1.24-1-2.25-2.25-2.25h-8.5zM9 15a1 1 0 10-2 0 1 1 0 002 0zm7 1a1 1 0 100-2 1 1 0 000 2z",
207
- fill: primaryFill
208
- }));
209
- };
210
-
211
- export const VehicleBus24Filled = /*#__PURE__*/wrapIcon( /*#__PURE__*/VehicleBus24FilledIcon({}), 'VehicleBus24Filled');
212
-
213
- const VehicleBus24RegularIcon = iconProps => {
214
- const {
215
- className,
216
- primaryFill
217
- } = iconProps;
218
- return React.createElement("svg", {
219
- width: 24,
220
- height: 24,
221
- viewBox: "0 0 24 24",
222
- xmlns: "http://www.w3.org/2000/svg",
223
- className: className
224
- }, React.createElement("path", {
225
- d: "M8 16a1 1 0 100-2 1 1 0 000 2zm9-1a1 1 0 11-2 0 1 1 0 012 0zM10.75 5a.75.75 0 000 1.5h2.5a.75.75 0 000-1.5h-2.5zm-3-3A3.75 3.75 0 004 5.75V9.5H2.75a.75.75 0 100 1.5H4v8.75c0 .97.78 1.75 1.75 1.75h1.5c.97 0 1.75-.78 1.75-1.75V18.5h6v1.25c0 .97.78 1.75 1.75 1.75h1.5c.97 0 1.75-.78 1.75-1.75V11h1.23a.75.75 0 000-1.5H20V5.75A3.75 3.75 0 0016.25 2h-8.5zM18.5 18.5v1.25c0 .14-.11.25-.25.25h-1.5a.25.25 0 01-.25-.25V18.5h2zm0-1.5h-13v-4h13v4zm-13 2.75V18.5h2v1.25c0 .14-.11.25-.25.25h-1.5a.25.25 0 01-.25-.25zm0-14c0-1.24 1-2.25 2.25-2.25h8.5c1.24 0 2.25 1 2.25 2.25v5.75h-13V5.75z",
226
- fill: primaryFill
227
- }));
228
- };
229
-
230
- export const VehicleBus24Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/VehicleBus24RegularIcon({}), 'VehicleBus24Regular');
231
-
232
4
  const VehicleCab16FilledIcon = iconProps => {
233
5
  const {
234
6
  className,
@@ -1343,7 +1115,7 @@ const VehicleTruckBag24FilledIcon = iconProps => {
1343
1115
  xmlns: "http://www.w3.org/2000/svg",
1344
1116
  className: className
1345
1117
  }, React.createElement("path", {
1346
- d: "M1.75 5a.75.75 0 00-.75.75v6C1 12.99 2 14 3.25 14h5c1.24 0 2.25-1 2.25-2.25v-6A.75.75 0 009.75 5H9.5V4a2.5 2.5 0 00-3.75-2.17A2.5 2.5 0 002 4v1h-.25zM7 5V4c0-.35-.07-.68-.2-.98A1 1 0 018 4v1H7zM5.5 4v1h-2V4a1 1 0 012 0zM2 17.75v-3c.38.16.8.25 1.25.25h5c1.8 0 3.25-1.46 3.25-3.25v-6c0-.7-.4-1.3-1-1.58V4c0-.17-.01-.34-.04-.5h3.79c1.24 0 2.25 1 2.25 2.25v.75h1.55c.87 0 1.66.5 2.03 1.29l1.7 3.58c.15.3.22.63.22.97v5.41c0 1.24-1 2.25-2.25 2.25h-1.8a3 3 0 01-5.9 0h-2.1a3 3 0 01-5.91-.01A2.25 2.25 0 012 17.75zM20.5 16h-1.25a.75.75 0 100 1.5h1.25V16zm-.32-4.5l-1.45-3.07a.75.75 0 00-.68-.43H16.5v3.5h3.68zM7 21a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm9.5-1.5a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM3.5 4a1 1 0 01.08-.4z",
1118
+ d: "M1.75 5a.75.75 0 00-.75.75v6C1 12.99 2 14 3.25 14h5c1.24 0 2.25-1 2.25-2.25v-6A.75.75 0 009.75 5H9.5V4a2.5 2.5 0 00-3.75-2.17A2.5 2.5 0 002 4v1h-.25zM7 5V4c0-.35-.07-.68-.2-.98A1 1 0 018 4v1H7zM5.5 4v1h-2V4a1 1 0 012 0zM2 17.75v-3c.38.16.8.25 1.25.25h5c1.8 0 3.25-1.46 3.25-3.25v-6c0-.7-.4-1.3-1-1.58V4c0-.17-.01-.34-.04-.5h3.79c1.24 0 2.25 1 2.25 2.25v.75h1.55c.87 0 1.66.5 2.03 1.29l1.7 3.58c.15.3.22.63.22.97v5.41c0 1.24-1 2.25-2.25 2.25h-1.8a3 3 0 01-5.9 0h-2.1a3 3 0 01-5.91-.01A2.25 2.25 0 012 17.75zM20.5 16h-1.25a.75.75 0 100 1.5h1.25V16zm-.32-4.5l-1.45-3.07a.75.75 0 00-.68-.43H16.5v3.5h3.68zM7 21a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm9.5-1.5a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM3.5 4a1 1 0 01.08-.4L3.5 4z",
1347
1119
  fill: primaryFill
1348
1120
  }));
1349
1121
  };
@@ -1362,7 +1134,7 @@ const VehicleTruckBag24RegularIcon = iconProps => {
1362
1134
  xmlns: "http://www.w3.org/2000/svg",
1363
1135
  className: className
1364
1136
  }, React.createElement("path", {
1365
- d: "M1.75 5a.75.75 0 00-.75.75v6C1 12.99 2 14 3.25 14h5c1.24 0 2.25-1 2.25-2.25v-6A.75.75 0 009.75 5H9.5V4a2.5 2.5 0 00-3.75-2.17A2.5 2.5 0 002 4v1h-.25zM7 5V4c0-.35-.07-.68-.2-.98A1 1 0 018 4v1H7zM5.5 4v1h-2V4a1 1 0 012 0zM2 17.75v-3c.38.16.8.25 1.25.25h.25v2.75c0 .39.3.7.67.75a3 3 0 015.66 0h2.34a3 3 0 012.83-2V5.75a.75.75 0 00-.75-.75h-2.92a1.76 1.76 0 00-.83-.83V4c0-.17-.01-.34-.04-.5h3.79c1.24 0 2.25 1 2.25 2.25v.75h1.55c.87 0 1.66.5 2.03 1.29l1.7 3.58c.15.3.22.63.22.97v5.41c0 1.24-1 2.25-2.25 2.25h-1.8a3 3 0 01-5.9 0h-2.1a3 3 0 01-5.91-.01A2.25 2.25 0 012 17.75zm15.83.75h1.92c.41 0 .75-.34.75-.75v-.25h-1.25a.75.75 0 010-1.5h1.25v-3h-4v3.9c.61.36 1.09.92 1.33 1.6zM16.5 8v3.5h3.68l-1.45-3.07a.75.75 0 00-.68-.43H16.5zM7 21a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm9.5-1.5a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM3.5 4a1 1 0 01.08-.4z",
1137
+ d: "M1.75 5a.75.75 0 00-.75.75v6C1 12.99 2 14 3.25 14h5c1.24 0 2.25-1 2.25-2.25v-6A.75.75 0 009.75 5H9.5V4a2.5 2.5 0 00-3.75-2.17A2.5 2.5 0 002 4v1h-.25zM7 5V4c0-.35-.07-.68-.2-.98A1 1 0 018 4v1H7zM5.5 4v1h-2V4a1 1 0 012 0zM2 17.75v-3c.38.16.8.25 1.25.25h.25v2.75c0 .39.3.7.67.75a3 3 0 015.66 0h2.34a3 3 0 012.83-2V5.75a.75.75 0 00-.75-.75h-2.92a1.76 1.76 0 00-.83-.83V4c0-.17-.01-.34-.04-.5h3.79c1.24 0 2.25 1 2.25 2.25v.75h1.55c.87 0 1.66.5 2.03 1.29l1.7 3.58c.15.3.22.63.22.97v5.41c0 1.24-1 2.25-2.25 2.25h-1.8a3 3 0 01-5.9 0h-2.1a3 3 0 01-5.91-.01A2.25 2.25 0 012 17.75zm15.83.75h1.92c.41 0 .75-.34.75-.75v-.25h-1.25a.75.75 0 010-1.5h1.25v-3h-4v3.9c.61.36 1.09.92 1.33 1.6zM16.5 8v3.5h3.68l-1.45-3.07a.75.75 0 00-.68-.43H16.5zM7 21a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm9.5-1.5a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM3.5 4a1 1 0 01.08-.4L3.5 4z",
1366
1138
  fill: primaryFill
1367
1139
  }));
1368
1140
  };
@@ -9529,4 +9301,246 @@ const WindowArrowUp24RegularIcon = iconProps => {
9529
9301
  }));
9530
9302
  };
9531
9303
 
9532
- export const WindowArrowUp24Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowArrowUp24RegularIcon({}), 'WindowArrowUp24Regular');
9304
+ export const WindowArrowUp24Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowArrowUp24RegularIcon({}), 'WindowArrowUp24Regular');
9305
+
9306
+ const WindowConsole20FilledIcon = iconProps => {
9307
+ const {
9308
+ className,
9309
+ primaryFill
9310
+ } = iconProps;
9311
+ return React.createElement("svg", {
9312
+ width: 20,
9313
+ height: 20,
9314
+ viewBox: "0 0 20 20",
9315
+ xmlns: "http://www.w3.org/2000/svg",
9316
+ className: className
9317
+ }, React.createElement("path", {
9318
+ d: "M5.65 9.15c.2-.2.5-.2.7 0l2 2a.5.5 0 010 .7l-2 2a.5.5 0 01-.7-.7l1.64-1.65-1.64-1.65a.5.5 0 010-.7zM14 13H9.5a.5.5 0 000 1H14a.5.5 0 000-1zM3 5.5A2.5 2.5 0 015.5 3h9A2.5 2.5 0 0117 5.5v9a2.5 2.5 0 01-2.5 2.5h-9A2.5 2.5 0 013 14.5v-9zM4.5 7v7.25c0 .69.56 1.25 1.25 1.25h8.5c.69 0 1.25-.56 1.25-1.25V7h-11z",
9319
+ fill: primaryFill
9320
+ }));
9321
+ };
9322
+
9323
+ export const WindowConsole20Filled = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowConsole20FilledIcon({}), 'WindowConsole20Filled');
9324
+
9325
+ const WindowConsole20RegularIcon = iconProps => {
9326
+ const {
9327
+ className,
9328
+ primaryFill
9329
+ } = iconProps;
9330
+ return React.createElement("svg", {
9331
+ width: 20,
9332
+ height: 20,
9333
+ viewBox: "0 0 20 20",
9334
+ xmlns: "http://www.w3.org/2000/svg",
9335
+ className: className
9336
+ }, React.createElement("path", {
9337
+ d: "M5.65 9.15c.2-.2.5-.2.7 0l2 2a.5.5 0 010 .7l-2 2a.5.5 0 01-.7-.7l1.64-1.65-1.64-1.65a.5.5 0 010-.7zM14.5 13h-5a.5.5 0 000 1h5a.5.5 0 000-1zM3 5.5A2.5 2.5 0 015.5 3h9A2.5 2.5 0 0117 5.5v9a2.5 2.5 0 01-2.5 2.5h-9A2.5 2.5 0 013 14.5v-9zM16 6v-.5c0-.83-.68-1.5-1.5-1.5h-9C4.67 4 4 4.67 4 5.5V6h12zM4 7v7.5c0 .83.67 1.5 1.5 1.5h9c.82 0 1.5-.67 1.5-1.5V7H4z",
9338
+ fill: primaryFill
9339
+ }));
9340
+ };
9341
+
9342
+ export const WindowConsole20Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowConsole20RegularIcon({}), 'WindowConsole20Regular');
9343
+
9344
+ const WindowDevEdit16FilledIcon = iconProps => {
9345
+ const {
9346
+ className,
9347
+ primaryFill
9348
+ } = iconProps;
9349
+ return React.createElement("svg", {
9350
+ width: 16,
9351
+ height: 16,
9352
+ viewBox: "0 0 16 16",
9353
+ xmlns: "http://www.w3.org/2000/svg",
9354
+ className: className
9355
+ }, React.createElement("g", {
9356
+ clipPath: "url(#clip0_118447_756)"
9357
+ }, React.createElement("path", {
9358
+ d: "M4.75 2A2.75 2.75 0 002 4.75v6a2.75 2.75 0 002.75 2.75h2.42l.18-.7c.07-.28.17-.55.3-.8h-2.9c-.69 0-1.25-.56-1.25-1.25V5H12v2.38l.63-.63c.26-.26.55-.45.87-.57V4.75A2.75 2.75 0 0010.75 2h-6zm6.24 6.4a.5.5 0 00-.14-.25l-2-2a.5.5 0 00-.7.7L9.79 8.5l-1.64 1.65a.5.5 0 00.24.84l2.6-2.6zM6.85 6.84a.5.5 0 00-.7-.7l-2 2a.5.5 0 000 .7l2 2a.5.5 0 10.7-.7L5.21 8.5l1.64-1.65zm8.7.6c-.61-.6-1.6-.6-2.21 0l-4.3 4.3c-.35.35-.6.8-.72 1.28l-.3 1.21a.6.6 0 00.73.74l1.22-.3c.48-.12.93-.37 1.29-.73l4.28-4.29c.61-.6.61-1.6 0-2.2z",
9359
+ fill: primaryFill
9360
+ })), React.createElement("defs", null, React.createElement("clipPath", {
9361
+ id: "clip0_118447_756"
9362
+ }, React.createElement("path", {
9363
+ fill: "#fff",
9364
+ d: "M0 0h16v16H0z"
9365
+ }))));
9366
+ };
9367
+
9368
+ export const WindowDevEdit16Filled = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowDevEdit16FilledIcon({}), 'WindowDevEdit16Filled');
9369
+
9370
+ const WindowDevEdit16RegularIcon = iconProps => {
9371
+ const {
9372
+ className,
9373
+ primaryFill
9374
+ } = iconProps;
9375
+ return React.createElement("svg", {
9376
+ width: 16,
9377
+ height: 16,
9378
+ viewBox: "0 0 16 16",
9379
+ xmlns: "http://www.w3.org/2000/svg",
9380
+ className: className
9381
+ }, React.createElement("g", {
9382
+ clipPath: "url(#clip0_118447_760)"
9383
+ }, React.createElement("path", {
9384
+ d: "M2 4.5A2.5 2.5 0 014.5 2h6A2.5 2.5 0 0113 4.5v1.94c-.13.09-.25.2-.37.3l-.63.64V5H3v5.5c0 .83.67 1.5 1.5 1.5h3.14c-.12.25-.22.52-.3.8l-.04.2H4.5A2.5 2.5 0 012 10.5v-6zM4.5 3c-.65 0-1.21.42-1.42 1h8.83c-.2-.58-.76-1-1.41-1h-6zm6.49 5.4l-2.6 2.59a.5.5 0 01-.24-.84L9.79 8.5 8.15 6.85a.5.5 0 11.7-.7l2 2a.5.5 0 01.14.24zM6.85 6.84a.5.5 0 10-.7-.7l-2 2a.5.5 0 000 .7l2 2a.5.5 0 00.7-.7L5.21 8.5l1.64-1.65zm8.7.6c-.61-.6-1.6-.6-2.21 0l-4.3 4.3c-.35.35-.6.8-.72 1.28l-.3 1.21a.6.6 0 00.73.74l1.22-.3c.48-.12.93-.37 1.29-.73l4.28-4.29c.61-.6.61-1.6 0-2.2z",
9385
+ fill: primaryFill
9386
+ })), React.createElement("defs", null, React.createElement("clipPath", {
9387
+ id: "clip0_118447_760"
9388
+ }, React.createElement("path", {
9389
+ fill: "#fff",
9390
+ d: "M0 0h16v16H0z"
9391
+ }))));
9392
+ };
9393
+
9394
+ export const WindowDevEdit16Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowDevEdit16RegularIcon({}), 'WindowDevEdit16Regular');
9395
+
9396
+ const WindowDevEdit20FilledIcon = iconProps => {
9397
+ const {
9398
+ className,
9399
+ primaryFill
9400
+ } = iconProps;
9401
+ return React.createElement("svg", {
9402
+ width: 20,
9403
+ height: 20,
9404
+ viewBox: "0 0 20 20",
9405
+ xmlns: "http://www.w3.org/2000/svg",
9406
+ className: className
9407
+ }, React.createElement("path", {
9408
+ d: "M2 4.75A2.75 2.75 0 014.75 2h8.5A2.75 2.75 0 0116 4.75v4.48c-.33.14-.63.35-.9.61l-.6.6V6h-11v7.25c0 .69.56 1.25 1.25 1.25h5.7l-.18.17a3.2 3.2 0 00-.8 1.33H4.76A2.75 2.75 0 012 13.25v-8.5zm6.35 3.1a.5.5 0 10-.7-.7l-2.5 2.5a.5.5 0 000 .7l2.5 2.5a.5.5 0 00.7-.7L6.21 10l2.14-2.15zm1.8 5a.5.5 0 010-.7L12.29 10l-2.14-2.15a.5.5 0 01.7-.7l2.5 2.5c.2.2.2.5 0 .7l-2.5 2.5a.5.5 0 01-.7 0zm5.66-2.3l-4.83 4.83a2.2 2.2 0 00-.58 1.02l-.37 1.5a.89.89 0 001.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 00-2.64-2.64z",
9409
+ fill: primaryFill
9410
+ }));
9411
+ };
9412
+
9413
+ export const WindowDevEdit20Filled = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowDevEdit20FilledIcon({}), 'WindowDevEdit20Filled');
9414
+
9415
+ const WindowDevEdit20RegularIcon = iconProps => {
9416
+ const {
9417
+ className,
9418
+ primaryFill
9419
+ } = iconProps;
9420
+ return React.createElement("svg", {
9421
+ width: 20,
9422
+ height: 20,
9423
+ viewBox: "0 0 20 20",
9424
+ xmlns: "http://www.w3.org/2000/svg",
9425
+ className: className
9426
+ }, React.createElement("path", {
9427
+ d: "M4.5 2A2.5 2.5 0 002 4.5v9A2.5 2.5 0 004.5 16h4.97c.11-.36.29-.7.52-1H4.5A1.5 1.5 0 013 13.5V6h12v3.94l.1-.1c.27-.27.57-.47.9-.6V4.5A2.5 2.5 0 0013.5 2h-9zM3 4.5C3 3.67 3.67 3 4.5 3h9c.83 0 1.5.67 1.5 1.5V5H3v-.5zm5.35 2.65c.2.19.2.5 0 .7L6.21 10l2.14 2.15a.5.5 0 01-.7.7l-2.5-2.5a.5.5 0 010-.7l2.5-2.5c.19-.2.5-.2.7 0zm1.8 5a.5.5 0 00.7.7l2.5-2.5a.5.5 0 000-.7l-2.5-2.5a.5.5 0 00-.7.7L12.29 10l-2.14 2.15zm5.66-1.6l-4.83 4.83a2.2 2.2 0 00-.58 1.02l-.37 1.5a.89.89 0 001.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 00-2.64-2.64z",
9428
+ fill: primaryFill
9429
+ }));
9430
+ };
9431
+
9432
+ export const WindowDevEdit20Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowDevEdit20RegularIcon({}), 'WindowDevEdit20Regular');
9433
+
9434
+ const WindowDevTools16FilledIcon = iconProps => {
9435
+ const {
9436
+ className,
9437
+ primaryFill
9438
+ } = iconProps;
9439
+ return React.createElement("svg", {
9440
+ width: 16,
9441
+ height: 16,
9442
+ viewBox: "0 0 16 16",
9443
+ xmlns: "http://www.w3.org/2000/svg",
9444
+ className: className
9445
+ }, React.createElement("path", {
9446
+ d: "M4.75 2A2.75 2.75 0 002 4.75v6a2.75 2.75 0 002.75 2.75h4.03c-.05-.38.02-.77.22-1.13l.22-.37H4.75c-.69 0-1.25-.56-1.25-1.25V5H12v1.2c.47-.2.99-.26 1.5-.18V4.75A2.75 2.75 0 0010.75 2h-6zm5.52 7.69a2.9 2.9 0 01.23-2.15l-1.4-1.4a.5.5 0 10-.7.71l1.64 1.65-1.64 1.65a.5.5 0 00.7.7l1.17-1.16zM7.1 6.15c.2.2.2.5 0 .7L5.46 8.5l1.64 1.65a.5.5 0 01-.7.7l-2-2a.5.5 0 010-.7l2-2c.2-.2.5-.2.7 0zm6.32.87l-.9 1.56a.64.64 0 101.1.64l.9-1.56a1.91 1.91 0 01-1.62 3.14l-1.65 2.87a.8.8 0 11-1.38-.8l1.65-2.86a1.91 1.91 0 011.9-2.99z",
9447
+ fill: primaryFill
9448
+ }));
9449
+ };
9450
+
9451
+ export const WindowDevTools16Filled = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowDevTools16FilledIcon({}), 'WindowDevTools16Filled');
9452
+
9453
+ const WindowDevTools16RegularIcon = iconProps => {
9454
+ const {
9455
+ className,
9456
+ primaryFill
9457
+ } = iconProps;
9458
+ return React.createElement("svg", {
9459
+ width: 16,
9460
+ height: 16,
9461
+ viewBox: "0 0 16 16",
9462
+ xmlns: "http://www.w3.org/2000/svg",
9463
+ className: className
9464
+ }, React.createElement("path", {
9465
+ d: "M4.5 2A2.5 2.5 0 002 4.5v6A2.5 2.5 0 004.5 13h4.28c.03-.21.1-.43.22-.63l.22-.37H4.5A1.5 1.5 0 013 10.5V5h9v1.2c.32-.13.66-.2 1-.21V4.5A2.5 2.5 0 0010.5 2h-6zM3.08 4c.21-.58.77-1 1.42-1h6c.65 0 1.2.42 1.41 1H3.08zm7.34 3.7L8.85 6.16a.5.5 0 00-.7.7L9.79 8.5l-1.64 1.65a.5.5 0 10.7.7l1.37-1.36a2.9 2.9 0 01.2-1.78zM6.85 6.16c.2.2.2.5 0 .7L5.21 8.5l1.64 1.65a.5.5 0 11-.7.7l-2-2a.5.5 0 010-.7l2-2c.2-.2.5-.2.7 0zm5.67 2.43l.9-1.56a1.91 1.91 0 00-1.9 3l-1.65 2.85a.8.8 0 001.38.8l1.65-2.87a1.91 1.91 0 001.62-3.14l-.9 1.56a.64.64 0 11-1.1-.64z",
9466
+ fill: primaryFill
9467
+ }));
9468
+ };
9469
+
9470
+ export const WindowDevTools16Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowDevTools16RegularIcon({}), 'WindowDevTools16Regular');
9471
+
9472
+ const WindowDevTools20FilledIcon = iconProps => {
9473
+ const {
9474
+ className,
9475
+ primaryFill
9476
+ } = iconProps;
9477
+ return React.createElement("svg", {
9478
+ width: 20,
9479
+ height: 20,
9480
+ viewBox: "0 0 20 20",
9481
+ xmlns: "http://www.w3.org/2000/svg",
9482
+ className: className
9483
+ }, React.createElement("path", {
9484
+ d: "M4.75 2A2.75 2.75 0 002 4.75v8.5A2.75 2.75 0 004.75 16h5.88l.12-.24.73-1.26H4.75c-.7 0-1.25-.56-1.25-1.25V6h11v1.15c.46-.25.97-.4 1.5-.44V4.75A2.75 2.75 0 0013.25 2h-8.5zm9.27 10.1a2.78 2.78 0 012.77-4.35l-1.31 2.27a.93.93 0 001.6.92l1.32-2.27a2.78 2.78 0 01-2.37 4.58l-2.4 4.17a1.16 1.16 0 01-2.01-1.16l2.4-4.16zm-1.46-.95c-.12-.69-.06-1.4.22-2.08l-1.93-1.92a.5.5 0 00-.7.7L12.29 10l-2.14 2.15a.5.5 0 00.7.7l1.71-1.7zm-4.2-4c.19.2.19.5 0 .7L6.2 10l2.14 2.15a.5.5 0 01-.7.7l-2.5-2.5a.5.5 0 010-.7l2.5-2.5c.2-.2.5-.2.7 0z",
9485
+ fill: primaryFill
9486
+ }));
9487
+ };
9488
+
9489
+ export const WindowDevTools20Filled = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowDevTools20FilledIcon({}), 'WindowDevTools20Filled');
9490
+
9491
+ const WindowDevTools20RegularIcon = iconProps => {
9492
+ const {
9493
+ className,
9494
+ primaryFill
9495
+ } = iconProps;
9496
+ return React.createElement("svg", {
9497
+ width: 20,
9498
+ height: 20,
9499
+ viewBox: "0 0 20 20",
9500
+ xmlns: "http://www.w3.org/2000/svg",
9501
+ className: className
9502
+ }, React.createElement("path", {
9503
+ d: "M2 4.5A2.5 2.5 0 014.5 2h9A2.5 2.5 0 0116 4.5v2.21c-.34.03-.68.1-1 .22V6H3v7.5c0 .83.67 1.5 1.5 1.5h6.7l-.45.76-.12.24H4.5A2.5 2.5 0 012 13.5v-9zM4.5 3C3.67 3 3 3.67 3 4.5V5h12v-.5c0-.83-.67-1.5-1.5-1.5h-9zm9.37 6.1c-.56.97-.46 2.14.15 3l-2.4 4.16a1.16 1.16 0 002 1.16l2.41-4.17a2.78 2.78 0 002.36-4.58l-1.3 2.27a.93.93 0 01-1.61-.92l1.3-2.27c-1.12-.21-2.3.3-2.9 1.34zm-1.3 2.05c-.13-.69-.07-1.4.2-2.08l-1.92-1.92a.5.5 0 10-.7.7L12.29 10l-2.14 2.15a.5.5 0 10.7.7l1.71-1.7zm-4.22-3.3a.5.5 0 00-.7-.7l-2.5 2.5a.5.5 0 000 .7l2.5 2.5a.5.5 0 00.7-.7L6.21 10l2.14-2.15z",
9504
+ fill: primaryFill
9505
+ }));
9506
+ };
9507
+
9508
+ export const WindowDevTools20Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowDevTools20RegularIcon({}), 'WindowDevTools20Regular');
9509
+
9510
+ const WindowDevTools24FilledIcon = iconProps => {
9511
+ const {
9512
+ className,
9513
+ primaryFill
9514
+ } = iconProps;
9515
+ return React.createElement("svg", {
9516
+ width: 24,
9517
+ height: 24,
9518
+ viewBox: "0 0 24 24",
9519
+ xmlns: "http://www.w3.org/2000/svg",
9520
+ className: className
9521
+ }, React.createElement("path", {
9522
+ d: "M3 3.05c-.62.63-1 1.5-1 2.45v11A3.5 3.5 0 005.5 20h7.01c.06-.25.15-.5.28-.74l.73-1.26H5.5A1.5 1.5 0 014 16.5V7h14v1.25a4.52 4.52 0 012-.24V5.5c0-.95-.38-1.82-1-2.45V3h-.05c-.63-.62-1.5-1-2.45-1h-11c-.95 0-1.82.38-2.45 1H3v.05zM19.21 9a3.5 3.5 0 01.96.04l-1.65 2.86a1.17 1.17 0 102.02 1.17l1.65-2.86a3.5 3.5 0 01-2.97 5.76l-3.03 5.25a1.46 1.46 0 01-2.53-1.46l3.02-5.24A3.5 3.5 0 0119.21 9zm-8.9.24c.27.3.25.78-.05 1.06l-2.4 2.2 2.4 2.2a.75.75 0 01-1.02 1.1l-3-2.75a.75.75 0 010-1.1l3-2.75a.75.75 0 011.06.04zm2.95 6.56l2.02-1.85a4.5 4.5 0 01-.01-2.9L13.26 9.2a.75.75 0 00-1.02 1.1l2.4 2.2-2.4 2.2a.75.75 0 001.02 1.1z",
9523
+ fill: primaryFill
9524
+ }));
9525
+ };
9526
+
9527
+ export const WindowDevTools24Filled = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowDevTools24FilledIcon({}), 'WindowDevTools24Filled');
9528
+
9529
+ const WindowDevTools24RegularIcon = iconProps => {
9530
+ const {
9531
+ className,
9532
+ primaryFill
9533
+ } = iconProps;
9534
+ return React.createElement("svg", {
9535
+ width: 24,
9536
+ height: 24,
9537
+ viewBox: "0 0 24 24",
9538
+ xmlns: "http://www.w3.org/2000/svg",
9539
+ className: className
9540
+ }, React.createElement("path", {
9541
+ d: "M2 5.25C2 3.45 3.46 2 5.25 2h11.5C18.55 2 20 3.46 20 5.25v2.76a4.5 4.5 0 00-1.5.1V7h-15v9.75c0 .97.78 1.75 1.75 1.75h7.98l-.44.76c-.13.24-.22.49-.28.74H5.25A3.25 3.25 0 012 16.75V5.25zM5.25 3.5c-.97 0-1.75.78-1.75 1.75v.25h15v-.25c0-.97-.78-1.75-1.75-1.75H5.25zM19.85 9a3.5 3.5 0 00-3.17 5.52l-3.02 5.24a1.46 1.46 0 102.53 1.46l3.03-5.25a3.5 3.5 0 002.97-5.76l-1.65 2.86a1.17 1.17 0 11-2.02-1.17l1.65-2.86-.31-.04zm-9.55.24c.28.3.26.78-.04 1.06l-2.4 2.2 2.4 2.2a.75.75 0 01-1.02 1.1l-3-2.75a.75.75 0 010-1.1l3-2.75a.75.75 0 011.06.04zm2.96 6.56l2.02-1.85a4.5 4.5 0 01-.01-2.9L13.26 9.2a.75.75 0 00-1.02 1.1l2.4 2.2-2.4 2.2a.75.75 0 001.02 1.1z",
9542
+ fill: primaryFill
9543
+ }));
9544
+ };
9545
+
9546
+ export const WindowDevTools24Regular = /*#__PURE__*/wrapIcon( /*#__PURE__*/WindowDevTools24RegularIcon({}), 'WindowDevTools24Regular');
@@ -1,17 +1,5 @@
1
1
  import * as React from "react";
2
2
  import { FluentIconsProps } from "../utils/FluentIconsProps.types";
3
- export declare const WindowConsole20Filled: React.FC<FluentIconsProps>;
4
- export declare const WindowConsole20Regular: React.FC<FluentIconsProps>;
5
- export declare const WindowDevEdit16Filled: React.FC<FluentIconsProps>;
6
- export declare const WindowDevEdit16Regular: React.FC<FluentIconsProps>;
7
- export declare const WindowDevEdit20Filled: React.FC<FluentIconsProps>;
8
- export declare const WindowDevEdit20Regular: React.FC<FluentIconsProps>;
9
- export declare const WindowDevTools16Filled: React.FC<FluentIconsProps>;
10
- export declare const WindowDevTools16Regular: React.FC<FluentIconsProps>;
11
- export declare const WindowDevTools20Filled: React.FC<FluentIconsProps>;
12
- export declare const WindowDevTools20Regular: React.FC<FluentIconsProps>;
13
- export declare const WindowDevTools24Filled: React.FC<FluentIconsProps>;
14
- export declare const WindowDevTools24Regular: React.FC<FluentIconsProps>;
15
3
  export declare const WindowEdit16Filled: React.FC<FluentIconsProps>;
16
4
  export declare const WindowEdit16Regular: React.FC<FluentIconsProps>;
17
5
  export declare const WindowHeaderHorizontal20Filled: React.FC<FluentIconsProps>;