@l3mpire/icons 0.4.0 → 0.5.0

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/dist/index.js CHANGED
@@ -1,9 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var reactFontawesome = require('@fortawesome/react-fontawesome');
3
+ var react = require('react');
4
4
  var jsxRuntime = require('react/jsx-runtime');
5
- var proRegularSvgIcons = require('@fortawesome/pro-regular-svg-icons');
6
- var proSolidSvgIcons = require('@fortawesome/pro-solid-svg-icons');
7
5
 
8
6
  // src/Icon.tsx
9
7
  var sizeMap = {
@@ -13,665 +11,358 @@ var sizeMap = {
13
11
  lg: "1.25rem",
14
12
  xl: "1.5rem"
15
13
  };
16
- function Icon({
17
- icon,
18
- solidIcon,
19
- solid = false,
20
- size = "md",
21
- color,
22
- label,
23
- className,
24
- style,
25
- ...rest
26
- }) {
27
- const resolvedIcon = solid && solidIcon ? solidIcon : icon;
28
- const mergedStyle = {
29
- width: sizeMap[size],
30
- height: sizeMap[size],
31
- ...style,
32
- ...color ? { color } : {}
33
- };
34
- return /* @__PURE__ */ jsxRuntime.jsx(
35
- reactFontawesome.FontAwesomeIcon,
36
- {
37
- icon: resolvedIcon,
38
- className,
39
- style: mergedStyle,
40
- "aria-label": label,
41
- "aria-hidden": !label,
42
- ...rest
43
- }
44
- );
45
- }
14
+ var Icon = react.forwardRef(
15
+ ({
16
+ icon,
17
+ solidIcon,
18
+ solid = false,
19
+ size = "md",
20
+ color,
21
+ label,
22
+ className,
23
+ style,
24
+ ...rest
25
+ }, ref) => {
26
+ const resolvedIcon = solid && solidIcon ? solidIcon : icon;
27
+ const mergedStyle = {
28
+ fontSize: sizeMap[size],
29
+ width: sizeMap[size],
30
+ height: sizeMap[size],
31
+ ...style,
32
+ ...color ? { color } : {}
33
+ };
34
+ return /* @__PURE__ */ jsxRuntime.jsx(
35
+ "i",
36
+ {
37
+ ref,
38
+ className: className ? `${resolvedIcon} ${className}` : resolvedIcon,
39
+ style: mergedStyle,
40
+ "aria-label": label,
41
+ "aria-hidden": !label,
42
+ role: label ? "img" : void 0,
43
+ ...rest
44
+ }
45
+ );
46
+ }
47
+ );
48
+ Icon.displayName = "Icon";
49
+
50
+ // src/index.ts
51
+ var faCheckOutline = "fa-regular fa-check";
52
+ var faXmarkOutline = "fa-regular fa-xmark";
53
+ var faPlusOutline = "fa-regular fa-plus";
54
+ var faMinusOutline = "fa-regular fa-minus";
55
+ var faPenOutline = "fa-regular fa-pen";
56
+ var faTrashOutline = "fa-regular fa-trash";
57
+ var faTrashCanOutline = "fa-regular fa-trash-can";
58
+ var faMagnifyingGlassOutline = "fa-regular fa-magnifying-glass";
59
+ var faChevronDownOutline = "fa-regular fa-chevron-down";
60
+ var faChevronUpOutline = "fa-regular fa-chevron-up";
61
+ var faChevronLeftOutline = "fa-regular fa-chevron-left";
62
+ var faChevronRightOutline = "fa-regular fa-chevron-right";
63
+ var faArrowLeftOutline = "fa-regular fa-arrow-left";
64
+ var faArrowRightOutline = "fa-regular fa-arrow-right";
65
+ var faEllipsisOutline = "fa-regular fa-ellipsis";
66
+ var faEllipsisVerticalOutline = "fa-regular fa-ellipsis-vertical";
67
+ var faSpinnerOutline = "fa-regular fa-spinner";
68
+ var faCircleNotchOutline = "fa-regular fa-circle-notch";
69
+ var faTriangleExclamationOutline = "fa-regular fa-triangle-exclamation";
70
+ var faCircleExclamationOutline = "fa-regular fa-circle-exclamation";
71
+ var faCircleCheckOutline = "fa-regular fa-circle-check";
72
+ var faCircleInfoOutline = "fa-regular fa-circle-info";
73
+ var faCircleXmarkOutline = "fa-regular fa-circle-xmark";
74
+ var faBellOutline = "fa-regular fa-bell";
75
+ var faGearOutline = "fa-regular fa-gear";
76
+ var faUserOutline = "fa-regular fa-user";
77
+ var faUsersOutline = "fa-regular fa-users";
78
+ var faEnvelopeOutline = "fa-regular fa-envelope";
79
+ var faPaperPlaneOutline = "fa-regular fa-paper-plane";
80
+ var faLinkOutline = "fa-regular fa-link";
81
+ var faCopyOutline = "fa-regular fa-copy";
82
+ var faDownloadOutline = "fa-regular fa-download";
83
+ var faUploadOutline = "fa-regular fa-upload";
84
+ var faFilterOutline = "fa-regular fa-filter";
85
+ var faSortOutline = "fa-regular fa-sort";
86
+ var faSortUpOutline = "fa-regular fa-sort-up";
87
+ var faSortDownOutline = "fa-regular fa-sort-down";
88
+ var faStarOutline = "fa-regular fa-star";
89
+ var faHeartOutline = "fa-regular fa-heart";
90
+ var faEyeOutline = "fa-regular fa-eye";
91
+ var faEyeSlashOutline = "fa-regular fa-eye-slash";
92
+ var faLockOutline = "fa-regular fa-lock";
93
+ var faUnlockOutline = "fa-regular fa-unlock";
94
+ var faCalendarOutline = "fa-regular fa-calendar";
95
+ var faClockOutline = "fa-regular fa-clock";
96
+ var faHomeOutline = "fa-regular fa-home";
97
+ var faFolderOutline = "fa-regular fa-folder";
98
+ var faFileOutline = "fa-regular fa-file";
99
+ var faBookmarkOutline = "fa-regular fa-bookmark";
100
+ var faCommentOutline = "fa-regular fa-comment";
101
+ var faMessageOutline = "fa-regular fa-message";
102
+ var faSquarePlusOutline = "fa-regular fa-square-plus";
103
+ var faSquareCheckOutline = "fa-regular fa-square-check";
104
+ var faPenToSquareOutline = "fa-regular fa-pen-to-square";
105
+ var faPaperPlaneTopOutline = "fa-regular fa-paper-plane-top";
106
+ var faAddressBookOutline = "fa-regular fa-address-book";
107
+ var faBuildingsOutline = "fa-regular fa-buildings";
108
+ var faChartLineUpOutline = "fa-regular fa-chart-line-up";
109
+ var faInboxOutline = "fa-regular fa-inbox";
110
+ var faPhoneOutline = "fa-regular fa-phone";
111
+ var faVideoOutline = "fa-regular fa-video";
112
+ var faCoinOutline = "fa-regular fa-coin";
113
+ var faStarsOutline = "fa-regular fa-stars";
114
+ var faArrowLeftFromLineOutline = "fa-regular fa-arrow-left-from-line";
115
+ var faArrowRightFromLineOutline = "fa-regular fa-arrow-right-from-line";
116
+ var faSidebarFlipOutline = "fa-regular fa-sidebar-flip";
117
+ var faBullseyeOutline = "fa-regular fa-bullseye";
118
+ var faGaugeHighOutline = "fa-regular fa-gauge-high";
119
+ var faBadgeDollarOutline = "fa-regular fa-badge-dollar";
120
+ var faShapesOutline = "fa-regular fa-shapes";
121
+ var faBrakeWarningOutline = "fa-regular fa-brake-warning";
122
+ var faRefreshOutline = "fa-regular fa-refresh";
123
+ var faArrowRightFromBracketOutline = "fa-regular fa-arrow-right-from-bracket";
124
+ var faGripDotsVerticalOutline = "fa-regular fa-grip-dots-vertical";
125
+ var faSlidersOutline = "fa-regular fa-sliders";
126
+ var faArrowUpSmallBigOutline = "fa-regular fa-arrow-up-small-big";
127
+ var faArrowDownBigSmallOutline = "fa-regular fa-arrow-down-big-small";
128
+ var faBoltOutline = "fa-regular fa-bolt";
129
+ var faPauseOutline = "fa-regular fa-pause";
130
+ var faCheckSolid = "fa-solid fa-check";
131
+ var faXmarkSolid = "fa-solid fa-xmark";
132
+ var faPlusSolid = "fa-solid fa-plus";
133
+ var faMinusSolid = "fa-solid fa-minus";
134
+ var faPenSolid = "fa-solid fa-pen";
135
+ var faTrashSolid = "fa-solid fa-trash";
136
+ var faTrashCanSolid = "fa-solid fa-trash-can";
137
+ var faMagnifyingGlassSolid = "fa-solid fa-magnifying-glass";
138
+ var faChevronDownSolid = "fa-solid fa-chevron-down";
139
+ var faChevronUpSolid = "fa-solid fa-chevron-up";
140
+ var faChevronLeftSolid = "fa-solid fa-chevron-left";
141
+ var faChevronRightSolid = "fa-solid fa-chevron-right";
142
+ var faArrowLeftSolid = "fa-solid fa-arrow-left";
143
+ var faArrowRightSolid = "fa-solid fa-arrow-right";
144
+ var faEllipsisSolid = "fa-solid fa-ellipsis";
145
+ var faEllipsisVerticalSolid = "fa-solid fa-ellipsis-vertical";
146
+ var faSpinnerSolid = "fa-solid fa-spinner";
147
+ var faCircleNotchSolid = "fa-solid fa-circle-notch";
148
+ var faTriangleExclamationSolid = "fa-solid fa-triangle-exclamation";
149
+ var faCircleExclamationSolid = "fa-solid fa-circle-exclamation";
150
+ var faCircleCheckSolid = "fa-solid fa-circle-check";
151
+ var faCircleInfoSolid = "fa-solid fa-circle-info";
152
+ var faCircleXmarkSolid = "fa-solid fa-circle-xmark";
153
+ var faBellSolid = "fa-solid fa-bell";
154
+ var faGearSolid = "fa-solid fa-gear";
155
+ var faUserSolid = "fa-solid fa-user";
156
+ var faUsersSolid = "fa-solid fa-users";
157
+ var faEnvelopeSolid = "fa-solid fa-envelope";
158
+ var faPaperPlaneSolid = "fa-solid fa-paper-plane";
159
+ var faLinkSolid = "fa-solid fa-link";
160
+ var faCopySolid = "fa-solid fa-copy";
161
+ var faDownloadSolid = "fa-solid fa-download";
162
+ var faUploadSolid = "fa-solid fa-upload";
163
+ var faFilterSolid = "fa-solid fa-filter";
164
+ var faSortSolid = "fa-solid fa-sort";
165
+ var faSortUpSolid = "fa-solid fa-sort-up";
166
+ var faSortDownSolid = "fa-solid fa-sort-down";
167
+ var faStarSolid = "fa-solid fa-star";
168
+ var faHeartSolid = "fa-solid fa-heart";
169
+ var faEyeSolid = "fa-solid fa-eye";
170
+ var faEyeSlashSolid = "fa-solid fa-eye-slash";
171
+ var faLockSolid = "fa-solid fa-lock";
172
+ var faUnlockSolid = "fa-solid fa-unlock";
173
+ var faCalendarSolid = "fa-solid fa-calendar";
174
+ var faClockSolid = "fa-solid fa-clock";
175
+ var faHomeSolid = "fa-solid fa-home";
176
+ var faFolderSolid = "fa-solid fa-folder";
177
+ var faFileSolid = "fa-solid fa-file";
178
+ var faBookmarkSolid = "fa-solid fa-bookmark";
179
+ var faCommentSolid = "fa-solid fa-comment";
180
+ var faMessageSolid = "fa-solid fa-message";
181
+ var faSquarePlusSolid = "fa-solid fa-square-plus";
182
+ var faSquareCheckSolid = "fa-solid fa-square-check";
183
+ var faPenToSquareSolid = "fa-solid fa-pen-to-square";
184
+ var faPaperPlaneTopSolid = "fa-solid fa-paper-plane-top";
185
+ var faAddressBookSolid = "fa-solid fa-address-book";
186
+ var faBuildingsSolid = "fa-solid fa-buildings";
187
+ var faChartLineUpSolid = "fa-solid fa-chart-line-up";
188
+ var faInboxSolid = "fa-solid fa-inbox";
189
+ var faPhoneSolid = "fa-solid fa-phone";
190
+ var faVideoSolid = "fa-solid fa-video";
191
+ var faCoinSolid = "fa-solid fa-coin";
192
+ var faStarsSolid = "fa-solid fa-stars";
193
+ var faArrowLeftFromLineSolid = "fa-solid fa-arrow-left-from-line";
194
+ var faArrowRightFromLineSolid = "fa-solid fa-arrow-right-from-line";
195
+ var faSidebarFlipSolid = "fa-solid fa-sidebar-flip";
196
+ var faBullseyeSolid = "fa-solid fa-bullseye";
197
+ var faGaugeHighSolid = "fa-solid fa-gauge-high";
198
+ var faBadgeDollarSolid = "fa-solid fa-badge-dollar";
199
+ var faShapesSolid = "fa-solid fa-shapes";
200
+ var faBrakeWarningSolid = "fa-solid fa-brake-warning";
201
+ var faRefreshSolid = "fa-solid fa-refresh";
202
+ var faArrowRightFromBracketSolid = "fa-solid fa-arrow-right-from-bracket";
203
+ var faGripDotsVerticalSolid = "fa-solid fa-grip-dots-vertical";
204
+ var faSlidersSolid = "fa-solid fa-sliders";
205
+ var faArrowUpSmallBigSolid = "fa-solid fa-arrow-up-small-big";
206
+ var faArrowDownBigSmallSolid = "fa-solid fa-arrow-down-big-small";
207
+ var faPauseSolid = "fa-solid fa-pause";
46
208
 
47
- Object.defineProperty(exports, "faAddressBookOutline", {
48
- enumerable: true,
49
- get: function () { return proRegularSvgIcons.faAddressBook; }
50
- });
51
- Object.defineProperty(exports, "faArrowDownBigSmallOutline", {
52
- enumerable: true,
53
- get: function () { return proRegularSvgIcons.faArrowDownBigSmall; }
54
- });
55
- Object.defineProperty(exports, "faArrowLeftFromLineOutline", {
56
- enumerable: true,
57
- get: function () { return proRegularSvgIcons.faArrowLeftFromLine; }
58
- });
59
- Object.defineProperty(exports, "faArrowLeftOutline", {
60
- enumerable: true,
61
- get: function () { return proRegularSvgIcons.faArrowLeft; }
62
- });
63
- Object.defineProperty(exports, "faArrowRightFromBracketOutline", {
64
- enumerable: true,
65
- get: function () { return proRegularSvgIcons.faArrowRightFromBracket; }
66
- });
67
- Object.defineProperty(exports, "faArrowRightFromLineOutline", {
68
- enumerable: true,
69
- get: function () { return proRegularSvgIcons.faArrowRightFromLine; }
70
- });
71
- Object.defineProperty(exports, "faArrowRightOutline", {
72
- enumerable: true,
73
- get: function () { return proRegularSvgIcons.faArrowRight; }
74
- });
75
- Object.defineProperty(exports, "faArrowUpSmallBigOutline", {
76
- enumerable: true,
77
- get: function () { return proRegularSvgIcons.faArrowUpSmallBig; }
78
- });
79
- Object.defineProperty(exports, "faBadgeDollarOutline", {
80
- enumerable: true,
81
- get: function () { return proRegularSvgIcons.faBadgeDollar; }
82
- });
83
- Object.defineProperty(exports, "faBellOutline", {
84
- enumerable: true,
85
- get: function () { return proRegularSvgIcons.faBell; }
86
- });
87
- Object.defineProperty(exports, "faBoltOutline", {
88
- enumerable: true,
89
- get: function () { return proRegularSvgIcons.faBolt; }
90
- });
91
- Object.defineProperty(exports, "faBookmarkOutline", {
92
- enumerable: true,
93
- get: function () { return proRegularSvgIcons.faBookmark; }
94
- });
95
- Object.defineProperty(exports, "faBrakeWarningOutline", {
96
- enumerable: true,
97
- get: function () { return proRegularSvgIcons.faBrakeWarning; }
98
- });
99
- Object.defineProperty(exports, "faBuildingsOutline", {
100
- enumerable: true,
101
- get: function () { return proRegularSvgIcons.faBuildings; }
102
- });
103
- Object.defineProperty(exports, "faBullseyeOutline", {
104
- enumerable: true,
105
- get: function () { return proRegularSvgIcons.faBullseye; }
106
- });
107
- Object.defineProperty(exports, "faCalendarOutline", {
108
- enumerable: true,
109
- get: function () { return proRegularSvgIcons.faCalendar; }
110
- });
111
- Object.defineProperty(exports, "faChartLineUpOutline", {
112
- enumerable: true,
113
- get: function () { return proRegularSvgIcons.faChartLineUp; }
114
- });
115
- Object.defineProperty(exports, "faCheckOutline", {
116
- enumerable: true,
117
- get: function () { return proRegularSvgIcons.faCheck; }
118
- });
119
- Object.defineProperty(exports, "faChevronDownOutline", {
120
- enumerable: true,
121
- get: function () { return proRegularSvgIcons.faChevronDown; }
122
- });
123
- Object.defineProperty(exports, "faChevronLeftOutline", {
124
- enumerable: true,
125
- get: function () { return proRegularSvgIcons.faChevronLeft; }
126
- });
127
- Object.defineProperty(exports, "faChevronRightOutline", {
128
- enumerable: true,
129
- get: function () { return proRegularSvgIcons.faChevronRight; }
130
- });
131
- Object.defineProperty(exports, "faChevronUpOutline", {
132
- enumerable: true,
133
- get: function () { return proRegularSvgIcons.faChevronUp; }
134
- });
135
- Object.defineProperty(exports, "faCircleCheckOutline", {
136
- enumerable: true,
137
- get: function () { return proRegularSvgIcons.faCircleCheck; }
138
- });
139
- Object.defineProperty(exports, "faCircleExclamationOutline", {
140
- enumerable: true,
141
- get: function () { return proRegularSvgIcons.faCircleExclamation; }
142
- });
143
- Object.defineProperty(exports, "faCircleInfoOutline", {
144
- enumerable: true,
145
- get: function () { return proRegularSvgIcons.faCircleInfo; }
146
- });
147
- Object.defineProperty(exports, "faCircleNotchOutline", {
148
- enumerable: true,
149
- get: function () { return proRegularSvgIcons.faCircleNotch; }
150
- });
151
- Object.defineProperty(exports, "faCircleXmarkOutline", {
152
- enumerable: true,
153
- get: function () { return proRegularSvgIcons.faCircleXmark; }
154
- });
155
- Object.defineProperty(exports, "faClockOutline", {
156
- enumerable: true,
157
- get: function () { return proRegularSvgIcons.faClock; }
158
- });
159
- Object.defineProperty(exports, "faCoinOutline", {
160
- enumerable: true,
161
- get: function () { return proRegularSvgIcons.faCoin; }
162
- });
163
- Object.defineProperty(exports, "faCommentOutline", {
164
- enumerable: true,
165
- get: function () { return proRegularSvgIcons.faComment; }
166
- });
167
- Object.defineProperty(exports, "faCopyOutline", {
168
- enumerable: true,
169
- get: function () { return proRegularSvgIcons.faCopy; }
170
- });
171
- Object.defineProperty(exports, "faDownloadOutline", {
172
- enumerable: true,
173
- get: function () { return proRegularSvgIcons.faDownload; }
174
- });
175
- Object.defineProperty(exports, "faEllipsisOutline", {
176
- enumerable: true,
177
- get: function () { return proRegularSvgIcons.faEllipsis; }
178
- });
179
- Object.defineProperty(exports, "faEllipsisVerticalOutline", {
180
- enumerable: true,
181
- get: function () { return proRegularSvgIcons.faEllipsisVertical; }
182
- });
183
- Object.defineProperty(exports, "faEnvelopeOutline", {
184
- enumerable: true,
185
- get: function () { return proRegularSvgIcons.faEnvelope; }
186
- });
187
- Object.defineProperty(exports, "faEyeOutline", {
188
- enumerable: true,
189
- get: function () { return proRegularSvgIcons.faEye; }
190
- });
191
- Object.defineProperty(exports, "faEyeSlashOutline", {
192
- enumerable: true,
193
- get: function () { return proRegularSvgIcons.faEyeSlash; }
194
- });
195
- Object.defineProperty(exports, "faFileOutline", {
196
- enumerable: true,
197
- get: function () { return proRegularSvgIcons.faFile; }
198
- });
199
- Object.defineProperty(exports, "faFilterOutline", {
200
- enumerable: true,
201
- get: function () { return proRegularSvgIcons.faFilter; }
202
- });
203
- Object.defineProperty(exports, "faFolderOutline", {
204
- enumerable: true,
205
- get: function () { return proRegularSvgIcons.faFolder; }
206
- });
207
- Object.defineProperty(exports, "faGaugeHighOutline", {
208
- enumerable: true,
209
- get: function () { return proRegularSvgIcons.faGaugeHigh; }
210
- });
211
- Object.defineProperty(exports, "faGearOutline", {
212
- enumerable: true,
213
- get: function () { return proRegularSvgIcons.faGear; }
214
- });
215
- Object.defineProperty(exports, "faGripDotsVerticalOutline", {
216
- enumerable: true,
217
- get: function () { return proRegularSvgIcons.faGripDotsVertical; }
218
- });
219
- Object.defineProperty(exports, "faHeartOutline", {
220
- enumerable: true,
221
- get: function () { return proRegularSvgIcons.faHeart; }
222
- });
223
- Object.defineProperty(exports, "faHomeOutline", {
224
- enumerable: true,
225
- get: function () { return proRegularSvgIcons.faHome; }
226
- });
227
- Object.defineProperty(exports, "faInboxOutline", {
228
- enumerable: true,
229
- get: function () { return proRegularSvgIcons.faInbox; }
230
- });
231
- Object.defineProperty(exports, "faLinkOutline", {
232
- enumerable: true,
233
- get: function () { return proRegularSvgIcons.faLink; }
234
- });
235
- Object.defineProperty(exports, "faLockOutline", {
236
- enumerable: true,
237
- get: function () { return proRegularSvgIcons.faLock; }
238
- });
239
- Object.defineProperty(exports, "faMagnifyingGlassOutline", {
240
- enumerable: true,
241
- get: function () { return proRegularSvgIcons.faMagnifyingGlass; }
242
- });
243
- Object.defineProperty(exports, "faMessageOutline", {
244
- enumerable: true,
245
- get: function () { return proRegularSvgIcons.faMessage; }
246
- });
247
- Object.defineProperty(exports, "faMinusOutline", {
248
- enumerable: true,
249
- get: function () { return proRegularSvgIcons.faMinus; }
250
- });
251
- Object.defineProperty(exports, "faPaperPlaneOutline", {
252
- enumerable: true,
253
- get: function () { return proRegularSvgIcons.faPaperPlane; }
254
- });
255
- Object.defineProperty(exports, "faPaperPlaneTopOutline", {
256
- enumerable: true,
257
- get: function () { return proRegularSvgIcons.faPaperPlaneTop; }
258
- });
259
- Object.defineProperty(exports, "faPauseOutline", {
260
- enumerable: true,
261
- get: function () { return proRegularSvgIcons.faPause; }
262
- });
263
- Object.defineProperty(exports, "faPenOutline", {
264
- enumerable: true,
265
- get: function () { return proRegularSvgIcons.faPen; }
266
- });
267
- Object.defineProperty(exports, "faPenToSquareOutline", {
268
- enumerable: true,
269
- get: function () { return proRegularSvgIcons.faPenToSquare; }
270
- });
271
- Object.defineProperty(exports, "faPhoneOutline", {
272
- enumerable: true,
273
- get: function () { return proRegularSvgIcons.faPhone; }
274
- });
275
- Object.defineProperty(exports, "faPlusOutline", {
276
- enumerable: true,
277
- get: function () { return proRegularSvgIcons.faPlus; }
278
- });
279
- Object.defineProperty(exports, "faRefreshOutline", {
280
- enumerable: true,
281
- get: function () { return proRegularSvgIcons.faRefresh; }
282
- });
283
- Object.defineProperty(exports, "faShapesOutline", {
284
- enumerable: true,
285
- get: function () { return proRegularSvgIcons.faShapes; }
286
- });
287
- Object.defineProperty(exports, "faSidebarFlipOutline", {
288
- enumerable: true,
289
- get: function () { return proRegularSvgIcons.faSidebarFlip; }
290
- });
291
- Object.defineProperty(exports, "faSlidersOutline", {
292
- enumerable: true,
293
- get: function () { return proRegularSvgIcons.faSliders; }
294
- });
295
- Object.defineProperty(exports, "faSortDownOutline", {
296
- enumerable: true,
297
- get: function () { return proRegularSvgIcons.faSortDown; }
298
- });
299
- Object.defineProperty(exports, "faSortOutline", {
300
- enumerable: true,
301
- get: function () { return proRegularSvgIcons.faSort; }
302
- });
303
- Object.defineProperty(exports, "faSortUpOutline", {
304
- enumerable: true,
305
- get: function () { return proRegularSvgIcons.faSortUp; }
306
- });
307
- Object.defineProperty(exports, "faSpinnerOutline", {
308
- enumerable: true,
309
- get: function () { return proRegularSvgIcons.faSpinner; }
310
- });
311
- Object.defineProperty(exports, "faSquareCheckOutline", {
312
- enumerable: true,
313
- get: function () { return proRegularSvgIcons.faSquareCheck; }
314
- });
315
- Object.defineProperty(exports, "faSquarePlusOutline", {
316
- enumerable: true,
317
- get: function () { return proRegularSvgIcons.faSquarePlus; }
318
- });
319
- Object.defineProperty(exports, "faStarOutline", {
320
- enumerable: true,
321
- get: function () { return proRegularSvgIcons.faStar; }
322
- });
323
- Object.defineProperty(exports, "faStarsOutline", {
324
- enumerable: true,
325
- get: function () { return proRegularSvgIcons.faStars; }
326
- });
327
- Object.defineProperty(exports, "faTrashCanOutline", {
328
- enumerable: true,
329
- get: function () { return proRegularSvgIcons.faTrashCan; }
330
- });
331
- Object.defineProperty(exports, "faTrashOutline", {
332
- enumerable: true,
333
- get: function () { return proRegularSvgIcons.faTrash; }
334
- });
335
- Object.defineProperty(exports, "faTriangleExclamationOutline", {
336
- enumerable: true,
337
- get: function () { return proRegularSvgIcons.faTriangleExclamation; }
338
- });
339
- Object.defineProperty(exports, "faUnlockOutline", {
340
- enumerable: true,
341
- get: function () { return proRegularSvgIcons.faUnlock; }
342
- });
343
- Object.defineProperty(exports, "faUploadOutline", {
344
- enumerable: true,
345
- get: function () { return proRegularSvgIcons.faUpload; }
346
- });
347
- Object.defineProperty(exports, "faUserOutline", {
348
- enumerable: true,
349
- get: function () { return proRegularSvgIcons.faUser; }
350
- });
351
- Object.defineProperty(exports, "faUsersOutline", {
352
- enumerable: true,
353
- get: function () { return proRegularSvgIcons.faUsers; }
354
- });
355
- Object.defineProperty(exports, "faVideoOutline", {
356
- enumerable: true,
357
- get: function () { return proRegularSvgIcons.faVideo; }
358
- });
359
- Object.defineProperty(exports, "faXmarkOutline", {
360
- enumerable: true,
361
- get: function () { return proRegularSvgIcons.faXmark; }
362
- });
363
- Object.defineProperty(exports, "faAddressBookSolid", {
364
- enumerable: true,
365
- get: function () { return proSolidSvgIcons.faAddressBook; }
366
- });
367
- Object.defineProperty(exports, "faArrowDownBigSmallSolid", {
368
- enumerable: true,
369
- get: function () { return proSolidSvgIcons.faArrowDownBigSmall; }
370
- });
371
- Object.defineProperty(exports, "faArrowLeftFromLineSolid", {
372
- enumerable: true,
373
- get: function () { return proSolidSvgIcons.faArrowLeftFromLine; }
374
- });
375
- Object.defineProperty(exports, "faArrowLeftSolid", {
376
- enumerable: true,
377
- get: function () { return proSolidSvgIcons.faArrowLeft; }
378
- });
379
- Object.defineProperty(exports, "faArrowRightFromBracketSolid", {
380
- enumerable: true,
381
- get: function () { return proSolidSvgIcons.faArrowRightFromBracket; }
382
- });
383
- Object.defineProperty(exports, "faArrowRightFromLineSolid", {
384
- enumerable: true,
385
- get: function () { return proSolidSvgIcons.faArrowRightFromLine; }
386
- });
387
- Object.defineProperty(exports, "faArrowRightSolid", {
388
- enumerable: true,
389
- get: function () { return proSolidSvgIcons.faArrowRight; }
390
- });
391
- Object.defineProperty(exports, "faArrowUpSmallBigSolid", {
392
- enumerable: true,
393
- get: function () { return proSolidSvgIcons.faArrowUpSmallBig; }
394
- });
395
- Object.defineProperty(exports, "faBadgeDollarSolid", {
396
- enumerable: true,
397
- get: function () { return proSolidSvgIcons.faBadgeDollar; }
398
- });
399
- Object.defineProperty(exports, "faBellSolid", {
400
- enumerable: true,
401
- get: function () { return proSolidSvgIcons.faBell; }
402
- });
403
- Object.defineProperty(exports, "faBookmarkSolid", {
404
- enumerable: true,
405
- get: function () { return proSolidSvgIcons.faBookmark; }
406
- });
407
- Object.defineProperty(exports, "faBrakeWarningSolid", {
408
- enumerable: true,
409
- get: function () { return proSolidSvgIcons.faBrakeWarning; }
410
- });
411
- Object.defineProperty(exports, "faBuildingsSolid", {
412
- enumerable: true,
413
- get: function () { return proSolidSvgIcons.faBuildings; }
414
- });
415
- Object.defineProperty(exports, "faBullseyeSolid", {
416
- enumerable: true,
417
- get: function () { return proSolidSvgIcons.faBullseye; }
418
- });
419
- Object.defineProperty(exports, "faCalendarSolid", {
420
- enumerable: true,
421
- get: function () { return proSolidSvgIcons.faCalendar; }
422
- });
423
- Object.defineProperty(exports, "faChartLineUpSolid", {
424
- enumerable: true,
425
- get: function () { return proSolidSvgIcons.faChartLineUp; }
426
- });
427
- Object.defineProperty(exports, "faCheckSolid", {
428
- enumerable: true,
429
- get: function () { return proSolidSvgIcons.faCheck; }
430
- });
431
- Object.defineProperty(exports, "faChevronDownSolid", {
432
- enumerable: true,
433
- get: function () { return proSolidSvgIcons.faChevronDown; }
434
- });
435
- Object.defineProperty(exports, "faChevronLeftSolid", {
436
- enumerable: true,
437
- get: function () { return proSolidSvgIcons.faChevronLeft; }
438
- });
439
- Object.defineProperty(exports, "faChevronRightSolid", {
440
- enumerable: true,
441
- get: function () { return proSolidSvgIcons.faChevronRight; }
442
- });
443
- Object.defineProperty(exports, "faChevronUpSolid", {
444
- enumerable: true,
445
- get: function () { return proSolidSvgIcons.faChevronUp; }
446
- });
447
- Object.defineProperty(exports, "faCircleCheckSolid", {
448
- enumerable: true,
449
- get: function () { return proSolidSvgIcons.faCircleCheck; }
450
- });
451
- Object.defineProperty(exports, "faCircleExclamationSolid", {
452
- enumerable: true,
453
- get: function () { return proSolidSvgIcons.faCircleExclamation; }
454
- });
455
- Object.defineProperty(exports, "faCircleInfoSolid", {
456
- enumerable: true,
457
- get: function () { return proSolidSvgIcons.faCircleInfo; }
458
- });
459
- Object.defineProperty(exports, "faCircleNotchSolid", {
460
- enumerable: true,
461
- get: function () { return proSolidSvgIcons.faCircleNotch; }
462
- });
463
- Object.defineProperty(exports, "faCircleXmarkSolid", {
464
- enumerable: true,
465
- get: function () { return proSolidSvgIcons.faCircleXmark; }
466
- });
467
- Object.defineProperty(exports, "faClockSolid", {
468
- enumerable: true,
469
- get: function () { return proSolidSvgIcons.faClock; }
470
- });
471
- Object.defineProperty(exports, "faCoinSolid", {
472
- enumerable: true,
473
- get: function () { return proSolidSvgIcons.faCoin; }
474
- });
475
- Object.defineProperty(exports, "faCommentSolid", {
476
- enumerable: true,
477
- get: function () { return proSolidSvgIcons.faComment; }
478
- });
479
- Object.defineProperty(exports, "faCopySolid", {
480
- enumerable: true,
481
- get: function () { return proSolidSvgIcons.faCopy; }
482
- });
483
- Object.defineProperty(exports, "faDownloadSolid", {
484
- enumerable: true,
485
- get: function () { return proSolidSvgIcons.faDownload; }
486
- });
487
- Object.defineProperty(exports, "faEllipsisSolid", {
488
- enumerable: true,
489
- get: function () { return proSolidSvgIcons.faEllipsis; }
490
- });
491
- Object.defineProperty(exports, "faEllipsisVerticalSolid", {
492
- enumerable: true,
493
- get: function () { return proSolidSvgIcons.faEllipsisVertical; }
494
- });
495
- Object.defineProperty(exports, "faEnvelopeSolid", {
496
- enumerable: true,
497
- get: function () { return proSolidSvgIcons.faEnvelope; }
498
- });
499
- Object.defineProperty(exports, "faEyeSlashSolid", {
500
- enumerable: true,
501
- get: function () { return proSolidSvgIcons.faEyeSlash; }
502
- });
503
- Object.defineProperty(exports, "faEyeSolid", {
504
- enumerable: true,
505
- get: function () { return proSolidSvgIcons.faEye; }
506
- });
507
- Object.defineProperty(exports, "faFileSolid", {
508
- enumerable: true,
509
- get: function () { return proSolidSvgIcons.faFile; }
510
- });
511
- Object.defineProperty(exports, "faFilterSolid", {
512
- enumerable: true,
513
- get: function () { return proSolidSvgIcons.faFilter; }
514
- });
515
- Object.defineProperty(exports, "faFolderSolid", {
516
- enumerable: true,
517
- get: function () { return proSolidSvgIcons.faFolder; }
518
- });
519
- Object.defineProperty(exports, "faGaugeHighSolid", {
520
- enumerable: true,
521
- get: function () { return proSolidSvgIcons.faGaugeHigh; }
522
- });
523
- Object.defineProperty(exports, "faGearSolid", {
524
- enumerable: true,
525
- get: function () { return proSolidSvgIcons.faGear; }
526
- });
527
- Object.defineProperty(exports, "faGripDotsVerticalSolid", {
528
- enumerable: true,
529
- get: function () { return proSolidSvgIcons.faGripDotsVertical; }
530
- });
531
- Object.defineProperty(exports, "faHeartSolid", {
532
- enumerable: true,
533
- get: function () { return proSolidSvgIcons.faHeart; }
534
- });
535
- Object.defineProperty(exports, "faHomeSolid", {
536
- enumerable: true,
537
- get: function () { return proSolidSvgIcons.faHome; }
538
- });
539
- Object.defineProperty(exports, "faInboxSolid", {
540
- enumerable: true,
541
- get: function () { return proSolidSvgIcons.faInbox; }
542
- });
543
- Object.defineProperty(exports, "faLinkSolid", {
544
- enumerable: true,
545
- get: function () { return proSolidSvgIcons.faLink; }
546
- });
547
- Object.defineProperty(exports, "faLockSolid", {
548
- enumerable: true,
549
- get: function () { return proSolidSvgIcons.faLock; }
550
- });
551
- Object.defineProperty(exports, "faMagnifyingGlassSolid", {
552
- enumerable: true,
553
- get: function () { return proSolidSvgIcons.faMagnifyingGlass; }
554
- });
555
- Object.defineProperty(exports, "faMessageSolid", {
556
- enumerable: true,
557
- get: function () { return proSolidSvgIcons.faMessage; }
558
- });
559
- Object.defineProperty(exports, "faMinusSolid", {
560
- enumerable: true,
561
- get: function () { return proSolidSvgIcons.faMinus; }
562
- });
563
- Object.defineProperty(exports, "faPaperPlaneSolid", {
564
- enumerable: true,
565
- get: function () { return proSolidSvgIcons.faPaperPlane; }
566
- });
567
- Object.defineProperty(exports, "faPaperPlaneTopSolid", {
568
- enumerable: true,
569
- get: function () { return proSolidSvgIcons.faPaperPlaneTop; }
570
- });
571
- Object.defineProperty(exports, "faPauseSolid", {
572
- enumerable: true,
573
- get: function () { return proSolidSvgIcons.faPause; }
574
- });
575
- Object.defineProperty(exports, "faPenSolid", {
576
- enumerable: true,
577
- get: function () { return proSolidSvgIcons.faPen; }
578
- });
579
- Object.defineProperty(exports, "faPenToSquareSolid", {
580
- enumerable: true,
581
- get: function () { return proSolidSvgIcons.faPenToSquare; }
582
- });
583
- Object.defineProperty(exports, "faPhoneSolid", {
584
- enumerable: true,
585
- get: function () { return proSolidSvgIcons.faPhone; }
586
- });
587
- Object.defineProperty(exports, "faPlusSolid", {
588
- enumerable: true,
589
- get: function () { return proSolidSvgIcons.faPlus; }
590
- });
591
- Object.defineProperty(exports, "faRefreshSolid", {
592
- enumerable: true,
593
- get: function () { return proSolidSvgIcons.faRefresh; }
594
- });
595
- Object.defineProperty(exports, "faShapesSolid", {
596
- enumerable: true,
597
- get: function () { return proSolidSvgIcons.faShapes; }
598
- });
599
- Object.defineProperty(exports, "faSidebarFlipSolid", {
600
- enumerable: true,
601
- get: function () { return proSolidSvgIcons.faSidebarFlip; }
602
- });
603
- Object.defineProperty(exports, "faSlidersSolid", {
604
- enumerable: true,
605
- get: function () { return proSolidSvgIcons.faSliders; }
606
- });
607
- Object.defineProperty(exports, "faSortDownSolid", {
608
- enumerable: true,
609
- get: function () { return proSolidSvgIcons.faSortDown; }
610
- });
611
- Object.defineProperty(exports, "faSortSolid", {
612
- enumerable: true,
613
- get: function () { return proSolidSvgIcons.faSort; }
614
- });
615
- Object.defineProperty(exports, "faSortUpSolid", {
616
- enumerable: true,
617
- get: function () { return proSolidSvgIcons.faSortUp; }
618
- });
619
- Object.defineProperty(exports, "faSpinnerSolid", {
620
- enumerable: true,
621
- get: function () { return proSolidSvgIcons.faSpinner; }
622
- });
623
- Object.defineProperty(exports, "faSquareCheckSolid", {
624
- enumerable: true,
625
- get: function () { return proSolidSvgIcons.faSquareCheck; }
626
- });
627
- Object.defineProperty(exports, "faSquarePlusSolid", {
628
- enumerable: true,
629
- get: function () { return proSolidSvgIcons.faSquarePlus; }
630
- });
631
- Object.defineProperty(exports, "faStarSolid", {
632
- enumerable: true,
633
- get: function () { return proSolidSvgIcons.faStar; }
634
- });
635
- Object.defineProperty(exports, "faStarsSolid", {
636
- enumerable: true,
637
- get: function () { return proSolidSvgIcons.faStars; }
638
- });
639
- Object.defineProperty(exports, "faTrashCanSolid", {
640
- enumerable: true,
641
- get: function () { return proSolidSvgIcons.faTrashCan; }
642
- });
643
- Object.defineProperty(exports, "faTrashSolid", {
644
- enumerable: true,
645
- get: function () { return proSolidSvgIcons.faTrash; }
646
- });
647
- Object.defineProperty(exports, "faTriangleExclamationSolid", {
648
- enumerable: true,
649
- get: function () { return proSolidSvgIcons.faTriangleExclamation; }
650
- });
651
- Object.defineProperty(exports, "faUnlockSolid", {
652
- enumerable: true,
653
- get: function () { return proSolidSvgIcons.faUnlock; }
654
- });
655
- Object.defineProperty(exports, "faUploadSolid", {
656
- enumerable: true,
657
- get: function () { return proSolidSvgIcons.faUpload; }
658
- });
659
- Object.defineProperty(exports, "faUserSolid", {
660
- enumerable: true,
661
- get: function () { return proSolidSvgIcons.faUser; }
662
- });
663
- Object.defineProperty(exports, "faUsersSolid", {
664
- enumerable: true,
665
- get: function () { return proSolidSvgIcons.faUsers; }
666
- });
667
- Object.defineProperty(exports, "faVideoSolid", {
668
- enumerable: true,
669
- get: function () { return proSolidSvgIcons.faVideo; }
670
- });
671
- Object.defineProperty(exports, "faXmarkSolid", {
672
- enumerable: true,
673
- get: function () { return proSolidSvgIcons.faXmark; }
674
- });
675
209
  exports.Icon = Icon;
210
+ exports.faAddressBookOutline = faAddressBookOutline;
211
+ exports.faAddressBookSolid = faAddressBookSolid;
212
+ exports.faArrowDownBigSmallOutline = faArrowDownBigSmallOutline;
213
+ exports.faArrowDownBigSmallSolid = faArrowDownBigSmallSolid;
214
+ exports.faArrowLeftFromLineOutline = faArrowLeftFromLineOutline;
215
+ exports.faArrowLeftFromLineSolid = faArrowLeftFromLineSolid;
216
+ exports.faArrowLeftOutline = faArrowLeftOutline;
217
+ exports.faArrowLeftSolid = faArrowLeftSolid;
218
+ exports.faArrowRightFromBracketOutline = faArrowRightFromBracketOutline;
219
+ exports.faArrowRightFromBracketSolid = faArrowRightFromBracketSolid;
220
+ exports.faArrowRightFromLineOutline = faArrowRightFromLineOutline;
221
+ exports.faArrowRightFromLineSolid = faArrowRightFromLineSolid;
222
+ exports.faArrowRightOutline = faArrowRightOutline;
223
+ exports.faArrowRightSolid = faArrowRightSolid;
224
+ exports.faArrowUpSmallBigOutline = faArrowUpSmallBigOutline;
225
+ exports.faArrowUpSmallBigSolid = faArrowUpSmallBigSolid;
226
+ exports.faBadgeDollarOutline = faBadgeDollarOutline;
227
+ exports.faBadgeDollarSolid = faBadgeDollarSolid;
228
+ exports.faBellOutline = faBellOutline;
229
+ exports.faBellSolid = faBellSolid;
230
+ exports.faBoltOutline = faBoltOutline;
231
+ exports.faBookmarkOutline = faBookmarkOutline;
232
+ exports.faBookmarkSolid = faBookmarkSolid;
233
+ exports.faBrakeWarningOutline = faBrakeWarningOutline;
234
+ exports.faBrakeWarningSolid = faBrakeWarningSolid;
235
+ exports.faBuildingsOutline = faBuildingsOutline;
236
+ exports.faBuildingsSolid = faBuildingsSolid;
237
+ exports.faBullseyeOutline = faBullseyeOutline;
238
+ exports.faBullseyeSolid = faBullseyeSolid;
239
+ exports.faCalendarOutline = faCalendarOutline;
240
+ exports.faCalendarSolid = faCalendarSolid;
241
+ exports.faChartLineUpOutline = faChartLineUpOutline;
242
+ exports.faChartLineUpSolid = faChartLineUpSolid;
243
+ exports.faCheckOutline = faCheckOutline;
244
+ exports.faCheckSolid = faCheckSolid;
245
+ exports.faChevronDownOutline = faChevronDownOutline;
246
+ exports.faChevronDownSolid = faChevronDownSolid;
247
+ exports.faChevronLeftOutline = faChevronLeftOutline;
248
+ exports.faChevronLeftSolid = faChevronLeftSolid;
249
+ exports.faChevronRightOutline = faChevronRightOutline;
250
+ exports.faChevronRightSolid = faChevronRightSolid;
251
+ exports.faChevronUpOutline = faChevronUpOutline;
252
+ exports.faChevronUpSolid = faChevronUpSolid;
253
+ exports.faCircleCheckOutline = faCircleCheckOutline;
254
+ exports.faCircleCheckSolid = faCircleCheckSolid;
255
+ exports.faCircleExclamationOutline = faCircleExclamationOutline;
256
+ exports.faCircleExclamationSolid = faCircleExclamationSolid;
257
+ exports.faCircleInfoOutline = faCircleInfoOutline;
258
+ exports.faCircleInfoSolid = faCircleInfoSolid;
259
+ exports.faCircleNotchOutline = faCircleNotchOutline;
260
+ exports.faCircleNotchSolid = faCircleNotchSolid;
261
+ exports.faCircleXmarkOutline = faCircleXmarkOutline;
262
+ exports.faCircleXmarkSolid = faCircleXmarkSolid;
263
+ exports.faClockOutline = faClockOutline;
264
+ exports.faClockSolid = faClockSolid;
265
+ exports.faCoinOutline = faCoinOutline;
266
+ exports.faCoinSolid = faCoinSolid;
267
+ exports.faCommentOutline = faCommentOutline;
268
+ exports.faCommentSolid = faCommentSolid;
269
+ exports.faCopyOutline = faCopyOutline;
270
+ exports.faCopySolid = faCopySolid;
271
+ exports.faDownloadOutline = faDownloadOutline;
272
+ exports.faDownloadSolid = faDownloadSolid;
273
+ exports.faEllipsisOutline = faEllipsisOutline;
274
+ exports.faEllipsisSolid = faEllipsisSolid;
275
+ exports.faEllipsisVerticalOutline = faEllipsisVerticalOutline;
276
+ exports.faEllipsisVerticalSolid = faEllipsisVerticalSolid;
277
+ exports.faEnvelopeOutline = faEnvelopeOutline;
278
+ exports.faEnvelopeSolid = faEnvelopeSolid;
279
+ exports.faEyeOutline = faEyeOutline;
280
+ exports.faEyeSlashOutline = faEyeSlashOutline;
281
+ exports.faEyeSlashSolid = faEyeSlashSolid;
282
+ exports.faEyeSolid = faEyeSolid;
283
+ exports.faFileOutline = faFileOutline;
284
+ exports.faFileSolid = faFileSolid;
285
+ exports.faFilterOutline = faFilterOutline;
286
+ exports.faFilterSolid = faFilterSolid;
287
+ exports.faFolderOutline = faFolderOutline;
288
+ exports.faFolderSolid = faFolderSolid;
289
+ exports.faGaugeHighOutline = faGaugeHighOutline;
290
+ exports.faGaugeHighSolid = faGaugeHighSolid;
291
+ exports.faGearOutline = faGearOutline;
292
+ exports.faGearSolid = faGearSolid;
293
+ exports.faGripDotsVerticalOutline = faGripDotsVerticalOutline;
294
+ exports.faGripDotsVerticalSolid = faGripDotsVerticalSolid;
295
+ exports.faHeartOutline = faHeartOutline;
296
+ exports.faHeartSolid = faHeartSolid;
297
+ exports.faHomeOutline = faHomeOutline;
298
+ exports.faHomeSolid = faHomeSolid;
299
+ exports.faInboxOutline = faInboxOutline;
300
+ exports.faInboxSolid = faInboxSolid;
301
+ exports.faLinkOutline = faLinkOutline;
302
+ exports.faLinkSolid = faLinkSolid;
303
+ exports.faLockOutline = faLockOutline;
304
+ exports.faLockSolid = faLockSolid;
305
+ exports.faMagnifyingGlassOutline = faMagnifyingGlassOutline;
306
+ exports.faMagnifyingGlassSolid = faMagnifyingGlassSolid;
307
+ exports.faMessageOutline = faMessageOutline;
308
+ exports.faMessageSolid = faMessageSolid;
309
+ exports.faMinusOutline = faMinusOutline;
310
+ exports.faMinusSolid = faMinusSolid;
311
+ exports.faPaperPlaneOutline = faPaperPlaneOutline;
312
+ exports.faPaperPlaneSolid = faPaperPlaneSolid;
313
+ exports.faPaperPlaneTopOutline = faPaperPlaneTopOutline;
314
+ exports.faPaperPlaneTopSolid = faPaperPlaneTopSolid;
315
+ exports.faPauseOutline = faPauseOutline;
316
+ exports.faPauseSolid = faPauseSolid;
317
+ exports.faPenOutline = faPenOutline;
318
+ exports.faPenSolid = faPenSolid;
319
+ exports.faPenToSquareOutline = faPenToSquareOutline;
320
+ exports.faPenToSquareSolid = faPenToSquareSolid;
321
+ exports.faPhoneOutline = faPhoneOutline;
322
+ exports.faPhoneSolid = faPhoneSolid;
323
+ exports.faPlusOutline = faPlusOutline;
324
+ exports.faPlusSolid = faPlusSolid;
325
+ exports.faRefreshOutline = faRefreshOutline;
326
+ exports.faRefreshSolid = faRefreshSolid;
327
+ exports.faShapesOutline = faShapesOutline;
328
+ exports.faShapesSolid = faShapesSolid;
329
+ exports.faSidebarFlipOutline = faSidebarFlipOutline;
330
+ exports.faSidebarFlipSolid = faSidebarFlipSolid;
331
+ exports.faSlidersOutline = faSlidersOutline;
332
+ exports.faSlidersSolid = faSlidersSolid;
333
+ exports.faSortDownOutline = faSortDownOutline;
334
+ exports.faSortDownSolid = faSortDownSolid;
335
+ exports.faSortOutline = faSortOutline;
336
+ exports.faSortSolid = faSortSolid;
337
+ exports.faSortUpOutline = faSortUpOutline;
338
+ exports.faSortUpSolid = faSortUpSolid;
339
+ exports.faSpinnerOutline = faSpinnerOutline;
340
+ exports.faSpinnerSolid = faSpinnerSolid;
341
+ exports.faSquareCheckOutline = faSquareCheckOutline;
342
+ exports.faSquareCheckSolid = faSquareCheckSolid;
343
+ exports.faSquarePlusOutline = faSquarePlusOutline;
344
+ exports.faSquarePlusSolid = faSquarePlusSolid;
345
+ exports.faStarOutline = faStarOutline;
346
+ exports.faStarSolid = faStarSolid;
347
+ exports.faStarsOutline = faStarsOutline;
348
+ exports.faStarsSolid = faStarsSolid;
349
+ exports.faTrashCanOutline = faTrashCanOutline;
350
+ exports.faTrashCanSolid = faTrashCanSolid;
351
+ exports.faTrashOutline = faTrashOutline;
352
+ exports.faTrashSolid = faTrashSolid;
353
+ exports.faTriangleExclamationOutline = faTriangleExclamationOutline;
354
+ exports.faTriangleExclamationSolid = faTriangleExclamationSolid;
355
+ exports.faUnlockOutline = faUnlockOutline;
356
+ exports.faUnlockSolid = faUnlockSolid;
357
+ exports.faUploadOutline = faUploadOutline;
358
+ exports.faUploadSolid = faUploadSolid;
359
+ exports.faUserOutline = faUserOutline;
360
+ exports.faUserSolid = faUserSolid;
361
+ exports.faUsersOutline = faUsersOutline;
362
+ exports.faUsersSolid = faUsersSolid;
363
+ exports.faVideoOutline = faVideoOutline;
364
+ exports.faVideoSolid = faVideoSolid;
365
+ exports.faXmarkOutline = faXmarkOutline;
366
+ exports.faXmarkSolid = faXmarkSolid;
676
367
  //# sourceMappingURL=index.js.map
677
368
  //# sourceMappingURL=index.js.map