@eagami/ui 1.3.0 → 1.4.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.
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { InjectionToken, EnvironmentProviders, Signal, OnDestroy, ElementRef, TemplateRef, AfterViewInit, OnInit } from '@angular/core';
2
+ import { InjectionToken, EnvironmentProviders, Signal, OnDestroy, ElementRef, TemplateRef, Type, AfterViewInit, OnInit } from '@angular/core';
3
3
  import { ControlValueAccessor } from '@angular/forms';
4
4
  import * as _eagami_ui from '@eagami/ui';
5
5
 
@@ -602,6 +602,14 @@ type CheckboxSize = 'sm' | 'md' | 'lg';
602
602
  */
603
603
  declare class CheckboxComponent implements ControlValueAccessor {
604
604
  readonly label: i0.InputSignal<string | undefined>;
605
+ /**
606
+ * Optional supplementary value shown immediately after the label, dimmed
607
+ * to the tertiary text token. Renders inside the same `<span>` as the
608
+ * label so it shares the label's exact baseline and font metrics — keeps
609
+ * "Inbox 42" / "Brand (30)" patterns aligned without a sibling element
610
+ * fighting flex / inline-flow centring at the consumer's call site.
611
+ */
612
+ readonly count: i0.InputSignal<string | number | undefined>;
605
613
  readonly hint: i0.InputSignal<string | undefined>;
606
614
  readonly errorMsg: i0.InputSignal<string | undefined>;
607
615
  readonly size: i0.InputSignal<CheckboxSize>;
@@ -633,7 +641,7 @@ declare class CheckboxComponent implements ControlValueAccessor {
633
641
  setDisabledState(isDisabled: boolean): void;
634
642
  handleChange(): void;
635
643
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
636
- static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ea-checkbox", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "changed": "changed"; }, never, never, true, never>;
644
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ea-checkbox", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "count": { "alias": "count"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "errorMsg": { "alias": "errorMsg"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "changed": "changed"; }, never, never, true, never>;
637
645
  }
638
646
 
639
647
  /** Vertical density preset for table rows and header cells. */
@@ -1055,57 +1063,162 @@ declare class EmptyStateComponent {
1055
1063
  static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateComponent, "ea-empty-state", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "headingLevel": { "alias": "headingLevel"; "required": false; "isSignal": true; }; }, {}, never, ["[slot=media]", "[slot=actions]"], true, never>;
1056
1064
  }
1057
1065
 
1058
- declare class ActivityIconComponent {
1066
+ /**
1067
+ * Primary classification for an icon component. Every icon ships with a single
1068
+ * `category` (read off the component's `static readonly category` field) plus
1069
+ * a separate `static readonly isBrand` flag for whether it also depicts a
1070
+ * recognisable brand mark.
1071
+ *
1072
+ * `feather`: derived from the upstream Feather Icons set (MIT). Uses Feather's
1073
+ * canonical slug and design.
1074
+ * `eagami`: original Eagami UI design (the brand mark, the basic shape set,
1075
+ * household icons, and the brand-filled variants of icons that
1076
+ * also exist as Feather outlines).
1077
+ */
1078
+ type IconCategory = 'feather' | 'eagami';
1079
+ /**
1080
+ * Shape of the static metadata that every `ea-icon-*` component carries
1081
+ * alongside its template. Read these fields directly off the component class
1082
+ * (e.g. `GithubIconComponent.tags`) to build catalogues, search indices, or
1083
+ * documentation tables without pulling in any other icon as a transitive
1084
+ * dependency.
1085
+ */
1086
+ interface IconMeta {
1087
+ readonly slug: string;
1088
+ readonly category: IconCategory;
1089
+ /** True when the icon depicts a recognisable third-party or Eagami brand mark. */
1090
+ readonly isBrand?: boolean;
1091
+ readonly tags: ReadonlyArray<string>;
1092
+ }
1093
+ /** An icon component class augmented with its static metadata. */
1094
+ type IconComponentType = Type<unknown> & IconMeta;
1095
+ /**
1096
+ * Abstract base class for every `ea-icon-*` component. Provides the shared
1097
+ * host bindings that make icons render as inline-flex 1em squares, so
1098
+ * individual icon components don't need to repeat the `host: { style: '...' }`
1099
+ * config in their `@Component` decorator. Brand icons with their own host
1100
+ * bindings (e.g. a colour binding tied to a `brand` input) layer those onto
1101
+ * this base via additional `@HostBinding` getters.
1102
+ */
1103
+ declare abstract class IconComponentBase {
1104
+ readonly display = "inline-flex";
1105
+ readonly width = "1em";
1106
+ readonly height = "1em";
1107
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconComponentBase, never>;
1108
+ static ɵdir: i0.ɵɵDirectiveDeclaration<IconComponentBase, never, never, {}, {}, never, never, true, never>;
1109
+ }
1110
+
1111
+ /**
1112
+ * Resolves an icon's human-readable display name. Pass the component class
1113
+ * (`iconDisplayName(GithubIconComponent)` -> `'GitHub'`) or its slug
1114
+ * (`iconDisplayName('github')` -> `'GitHub'`). Falls back to a generic
1115
+ * `slug -> Title Case` derivation when no override is defined.
1116
+ */
1117
+ declare function iconDisplayName(iconOrSlug: IconComponentType | string): string;
1118
+
1119
+ /**
1120
+ * Flat list of every non-deprecated icon component shipped by Eagami UI,
1121
+ * sorted by `slug` so that consumers iterating it (the `/ui/icons` reference
1122
+ * page, the sandbox gallery, downstream pickers) get a stable alphabetical
1123
+ * order where a base icon always precedes its `-2` variant (e.g. `facebook`
1124
+ * before `facebook-2`). The literal order below is left in class-name order
1125
+ * for diff-friendliness; the `.sort()` at the bottom is the source of truth.
1126
+ *
1127
+ * Bundle-size note: importing this constant brings every icon component into
1128
+ * the consuming bundle, which is the right trade-off when you actually want
1129
+ * the full set. For single-icon usage import the component directly (e.g.
1130
+ * `import { HomeIconComponent } from '@eagami/ui'`) and the bundler will
1131
+ * tree-shake `ICONS` away.
1132
+ *
1133
+ * Deprecated aliases (e.g. `PencilIconComponent`) are intentionally excluded
1134
+ * so they don't surface in generated catalogues.
1135
+ */
1136
+ declare const ICONS: ReadonlyArray<IconComponentType>;
1137
+
1138
+ declare class ActivityIconComponent extends IconComponentBase {
1139
+ static readonly slug = "activity";
1140
+ static readonly category: IconCategory;
1141
+ static readonly tags: ReadonlyArray<string>;
1059
1142
  static ɵfac: i0.ɵɵFactoryDeclaration<ActivityIconComponent, never>;
1060
1143
  static ɵcmp: i0.ɵɵComponentDeclaration<ActivityIconComponent, "ea-icon-activity", never, {}, {}, never, never, true, never>;
1061
1144
  }
1062
1145
 
1063
- declare class AirplayIconComponent {
1146
+ declare class AirplayIconComponent extends IconComponentBase {
1147
+ static readonly slug = "airplay";
1148
+ static readonly category: IconCategory;
1149
+ static readonly tags: ReadonlyArray<string>;
1064
1150
  static ɵfac: i0.ɵɵFactoryDeclaration<AirplayIconComponent, never>;
1065
1151
  static ɵcmp: i0.ɵɵComponentDeclaration<AirplayIconComponent, "ea-icon-airplay", never, {}, {}, never, never, true, never>;
1066
1152
  }
1067
1153
 
1068
- declare class AlertCircleIconComponent {
1154
+ declare class AlertCircleIconComponent extends IconComponentBase {
1155
+ static readonly slug = "alert-circle";
1156
+ static readonly category: IconCategory;
1157
+ static readonly tags: ReadonlyArray<string>;
1069
1158
  static ɵfac: i0.ɵɵFactoryDeclaration<AlertCircleIconComponent, never>;
1070
1159
  static ɵcmp: i0.ɵɵComponentDeclaration<AlertCircleIconComponent, "ea-icon-alert-circle", never, {}, {}, never, never, true, never>;
1071
1160
  }
1072
1161
 
1073
- declare class AlertOctagonIconComponent {
1162
+ declare class AlertOctagonIconComponent extends IconComponentBase {
1163
+ static readonly slug = "alert-octagon";
1164
+ static readonly category: IconCategory;
1165
+ static readonly tags: ReadonlyArray<string>;
1074
1166
  static ɵfac: i0.ɵɵFactoryDeclaration<AlertOctagonIconComponent, never>;
1075
1167
  static ɵcmp: i0.ɵɵComponentDeclaration<AlertOctagonIconComponent, "ea-icon-alert-octagon", never, {}, {}, never, never, true, never>;
1076
1168
  }
1077
1169
 
1078
- declare class AlertTriangleIconComponent {
1170
+ declare class AlertTriangleIconComponent extends IconComponentBase {
1171
+ static readonly slug = "alert-triangle";
1172
+ static readonly category: IconCategory;
1173
+ static readonly tags: ReadonlyArray<string>;
1079
1174
  static ɵfac: i0.ɵɵFactoryDeclaration<AlertTriangleIconComponent, never>;
1080
1175
  static ɵcmp: i0.ɵɵComponentDeclaration<AlertTriangleIconComponent, "ea-icon-alert-triangle", never, {}, {}, never, never, true, never>;
1081
1176
  }
1082
1177
 
1083
- declare class AlignCenterIconComponent {
1178
+ declare class AlignCenterIconComponent extends IconComponentBase {
1179
+ static readonly slug = "align-center";
1180
+ static readonly category: IconCategory;
1181
+ static readonly tags: ReadonlyArray<string>;
1084
1182
  static ɵfac: i0.ɵɵFactoryDeclaration<AlignCenterIconComponent, never>;
1085
1183
  static ɵcmp: i0.ɵɵComponentDeclaration<AlignCenterIconComponent, "ea-icon-align-center", never, {}, {}, never, never, true, never>;
1086
1184
  }
1087
1185
 
1088
- declare class AlignJustifyIconComponent {
1186
+ declare class AlignJustifyIconComponent extends IconComponentBase {
1187
+ static readonly slug = "align-justify";
1188
+ static readonly category: IconCategory;
1189
+ static readonly tags: ReadonlyArray<string>;
1089
1190
  static ɵfac: i0.ɵɵFactoryDeclaration<AlignJustifyIconComponent, never>;
1090
1191
  static ɵcmp: i0.ɵɵComponentDeclaration<AlignJustifyIconComponent, "ea-icon-align-justify", never, {}, {}, never, never, true, never>;
1091
1192
  }
1092
1193
 
1093
- declare class AlignLeftIconComponent {
1194
+ declare class AlignLeftIconComponent extends IconComponentBase {
1195
+ static readonly slug = "align-left";
1196
+ static readonly category: IconCategory;
1197
+ static readonly tags: ReadonlyArray<string>;
1094
1198
  static ɵfac: i0.ɵɵFactoryDeclaration<AlignLeftIconComponent, never>;
1095
1199
  static ɵcmp: i0.ɵɵComponentDeclaration<AlignLeftIconComponent, "ea-icon-align-left", never, {}, {}, never, never, true, never>;
1096
1200
  }
1097
1201
 
1098
- declare class AlignRightIconComponent {
1202
+ declare class AlignRightIconComponent extends IconComponentBase {
1203
+ static readonly slug = "align-right";
1204
+ static readonly category: IconCategory;
1205
+ static readonly tags: ReadonlyArray<string>;
1099
1206
  static ɵfac: i0.ɵɵFactoryDeclaration<AlignRightIconComponent, never>;
1100
1207
  static ɵcmp: i0.ɵɵComponentDeclaration<AlignRightIconComponent, "ea-icon-align-right", never, {}, {}, never, never, true, never>;
1101
1208
  }
1102
1209
 
1103
- declare class AnchorIconComponent {
1210
+ declare class AnchorIconComponent extends IconComponentBase {
1211
+ static readonly slug = "anchor";
1212
+ static readonly category: IconCategory;
1213
+ static readonly tags: ReadonlyArray<string>;
1104
1214
  static ɵfac: i0.ɵɵFactoryDeclaration<AnchorIconComponent, never>;
1105
1215
  static ɵcmp: i0.ɵɵComponentDeclaration<AnchorIconComponent, "ea-icon-anchor", never, {}, {}, never, never, true, never>;
1106
1216
  }
1107
1217
 
1108
- declare class ApertureIconComponent {
1218
+ declare class ApertureIconComponent extends IconComponentBase {
1219
+ static readonly slug = "aperture";
1220
+ static readonly category: IconCategory;
1221
+ static readonly tags: ReadonlyArray<string>;
1109
1222
  static ɵfac: i0.ɵɵFactoryDeclaration<ApertureIconComponent, never>;
1110
1223
  static ɵcmp: i0.ɵɵComponentDeclaration<ApertureIconComponent, "ea-icon-aperture", never, {}, {}, never, never, true, never>;
1111
1224
  }
@@ -1116,1306 +1229,2699 @@ declare class ApertureIconComponent {
1116
1229
  * directly from Apple per their brand guidelines for use cases like "Sign in
1117
1230
  * with Apple".
1118
1231
  */
1119
- declare class AppleIconComponent {
1232
+ declare class AppleIconComponent extends IconComponentBase {
1120
1233
  readonly brand: i0.InputSignal<boolean>;
1121
1234
  static ɵfac: i0.ɵɵFactoryDeclaration<AppleIconComponent, never>;
1122
1235
  static ɵcmp: i0.ɵɵComponentDeclaration<AppleIconComponent, "ea-icon-apple", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1123
1236
  }
1124
1237
 
1125
- declare class ArchiveIconComponent {
1238
+ declare class ArchiveIconComponent extends IconComponentBase {
1239
+ static readonly slug = "archive";
1240
+ static readonly category: IconCategory;
1241
+ static readonly tags: ReadonlyArray<string>;
1126
1242
  static ɵfac: i0.ɵɵFactoryDeclaration<ArchiveIconComponent, never>;
1127
1243
  static ɵcmp: i0.ɵɵComponentDeclaration<ArchiveIconComponent, "ea-icon-archive", never, {}, {}, never, never, true, never>;
1128
1244
  }
1129
1245
 
1130
- declare class ArrowDownIconComponent {
1246
+ declare class ArrowDownIconComponent extends IconComponentBase {
1247
+ static readonly slug = "arrow-down";
1248
+ static readonly category: IconCategory;
1249
+ static readonly tags: ReadonlyArray<string>;
1131
1250
  static ɵfac: i0.ɵɵFactoryDeclaration<ArrowDownIconComponent, never>;
1132
1251
  static ɵcmp: i0.ɵɵComponentDeclaration<ArrowDownIconComponent, "ea-icon-arrow-down", never, {}, {}, never, never, true, never>;
1133
1252
  }
1134
1253
 
1135
- declare class ArrowDownLeftIconComponent {
1254
+ declare class ArrowDownCircleIconComponent extends IconComponentBase {
1255
+ static readonly slug = "arrow-down-circle";
1256
+ static readonly category: IconCategory;
1257
+ static readonly tags: ReadonlyArray<string>;
1258
+ static ɵfac: i0.ɵɵFactoryDeclaration<ArrowDownCircleIconComponent, never>;
1259
+ static ɵcmp: i0.ɵɵComponentDeclaration<ArrowDownCircleIconComponent, "ea-icon-arrow-down-circle", never, {}, {}, never, never, true, never>;
1260
+ }
1261
+
1262
+ declare class ArrowDownLeftIconComponent extends IconComponentBase {
1263
+ static readonly slug = "arrow-down-left";
1264
+ static readonly category: IconCategory;
1265
+ static readonly tags: ReadonlyArray<string>;
1136
1266
  static ɵfac: i0.ɵɵFactoryDeclaration<ArrowDownLeftIconComponent, never>;
1137
1267
  static ɵcmp: i0.ɵɵComponentDeclaration<ArrowDownLeftIconComponent, "ea-icon-arrow-down-left", never, {}, {}, never, never, true, never>;
1138
1268
  }
1139
1269
 
1140
- declare class ArrowDownRightIconComponent {
1270
+ declare class ArrowDownRightIconComponent extends IconComponentBase {
1271
+ static readonly slug = "arrow-down-right";
1272
+ static readonly category: IconCategory;
1273
+ static readonly tags: ReadonlyArray<string>;
1141
1274
  static ɵfac: i0.ɵɵFactoryDeclaration<ArrowDownRightIconComponent, never>;
1142
1275
  static ɵcmp: i0.ɵɵComponentDeclaration<ArrowDownRightIconComponent, "ea-icon-arrow-down-right", never, {}, {}, never, never, true, never>;
1143
1276
  }
1144
1277
 
1145
- declare class ArrowLeftIconComponent {
1278
+ declare class ArrowLeftIconComponent extends IconComponentBase {
1279
+ static readonly slug = "arrow-left";
1280
+ static readonly category: IconCategory;
1281
+ static readonly tags: ReadonlyArray<string>;
1146
1282
  static ɵfac: i0.ɵɵFactoryDeclaration<ArrowLeftIconComponent, never>;
1147
1283
  static ɵcmp: i0.ɵɵComponentDeclaration<ArrowLeftIconComponent, "ea-icon-arrow-left", never, {}, {}, never, never, true, never>;
1148
1284
  }
1149
1285
 
1150
- declare class ArrowRightIconComponent {
1286
+ declare class ArrowLeftCircleIconComponent extends IconComponentBase {
1287
+ static readonly slug = "arrow-left-circle";
1288
+ static readonly category: IconCategory;
1289
+ static readonly tags: ReadonlyArray<string>;
1290
+ static ɵfac: i0.ɵɵFactoryDeclaration<ArrowLeftCircleIconComponent, never>;
1291
+ static ɵcmp: i0.ɵɵComponentDeclaration<ArrowLeftCircleIconComponent, "ea-icon-arrow-left-circle", never, {}, {}, never, never, true, never>;
1292
+ }
1293
+
1294
+ declare class ArrowRightIconComponent extends IconComponentBase {
1295
+ static readonly slug = "arrow-right";
1296
+ static readonly category: IconCategory;
1297
+ static readonly tags: ReadonlyArray<string>;
1151
1298
  static ɵfac: i0.ɵɵFactoryDeclaration<ArrowRightIconComponent, never>;
1152
1299
  static ɵcmp: i0.ɵɵComponentDeclaration<ArrowRightIconComponent, "ea-icon-arrow-right", never, {}, {}, never, never, true, never>;
1153
1300
  }
1154
1301
 
1155
- declare class ArrowUpIconComponent {
1302
+ declare class ArrowRightCircleIconComponent extends IconComponentBase {
1303
+ static readonly slug = "arrow-right-circle";
1304
+ static readonly category: IconCategory;
1305
+ static readonly tags: ReadonlyArray<string>;
1306
+ static ɵfac: i0.ɵɵFactoryDeclaration<ArrowRightCircleIconComponent, never>;
1307
+ static ɵcmp: i0.ɵɵComponentDeclaration<ArrowRightCircleIconComponent, "ea-icon-arrow-right-circle", never, {}, {}, never, never, true, never>;
1308
+ }
1309
+
1310
+ declare class ArrowUpIconComponent extends IconComponentBase {
1311
+ static readonly slug = "arrow-up";
1312
+ static readonly category: IconCategory;
1313
+ static readonly tags: ReadonlyArray<string>;
1156
1314
  static ɵfac: i0.ɵɵFactoryDeclaration<ArrowUpIconComponent, never>;
1157
1315
  static ɵcmp: i0.ɵɵComponentDeclaration<ArrowUpIconComponent, "ea-icon-arrow-up", never, {}, {}, never, never, true, never>;
1158
1316
  }
1159
1317
 
1160
- declare class ArrowUpLeftIconComponent {
1318
+ declare class ArrowUpCircleIconComponent extends IconComponentBase {
1319
+ static readonly slug = "arrow-up-circle";
1320
+ static readonly category: IconCategory;
1321
+ static readonly tags: ReadonlyArray<string>;
1322
+ static ɵfac: i0.ɵɵFactoryDeclaration<ArrowUpCircleIconComponent, never>;
1323
+ static ɵcmp: i0.ɵɵComponentDeclaration<ArrowUpCircleIconComponent, "ea-icon-arrow-up-circle", never, {}, {}, never, never, true, never>;
1324
+ }
1325
+
1326
+ declare class ArrowUpLeftIconComponent extends IconComponentBase {
1327
+ static readonly slug = "arrow-up-left";
1328
+ static readonly category: IconCategory;
1329
+ static readonly tags: ReadonlyArray<string>;
1161
1330
  static ɵfac: i0.ɵɵFactoryDeclaration<ArrowUpLeftIconComponent, never>;
1162
1331
  static ɵcmp: i0.ɵɵComponentDeclaration<ArrowUpLeftIconComponent, "ea-icon-arrow-up-left", never, {}, {}, never, never, true, never>;
1163
1332
  }
1164
1333
 
1165
- declare class ArrowUpRightIconComponent {
1334
+ declare class ArrowUpRightIconComponent extends IconComponentBase {
1335
+ static readonly slug = "arrow-up-right";
1336
+ static readonly category: IconCategory;
1337
+ static readonly tags: ReadonlyArray<string>;
1166
1338
  static ɵfac: i0.ɵɵFactoryDeclaration<ArrowUpRightIconComponent, never>;
1167
1339
  static ɵcmp: i0.ɵɵComponentDeclaration<ArrowUpRightIconComponent, "ea-icon-arrow-up-right", never, {}, {}, never, never, true, never>;
1168
1340
  }
1169
1341
 
1170
- declare class AtSignIconComponent {
1342
+ declare class AtSignIconComponent extends IconComponentBase {
1343
+ static readonly slug = "at-sign";
1344
+ static readonly category: IconCategory;
1345
+ static readonly tags: ReadonlyArray<string>;
1171
1346
  static ɵfac: i0.ɵɵFactoryDeclaration<AtSignIconComponent, never>;
1172
1347
  static ɵcmp: i0.ɵɵComponentDeclaration<AtSignIconComponent, "ea-icon-at-sign", never, {}, {}, never, never, true, never>;
1173
1348
  }
1174
1349
 
1175
- declare class AwardIconComponent {
1350
+ declare class AwardIconComponent extends IconComponentBase {
1351
+ static readonly slug = "award";
1352
+ static readonly category: IconCategory;
1353
+ static readonly tags: ReadonlyArray<string>;
1176
1354
  static ɵfac: i0.ɵɵFactoryDeclaration<AwardIconComponent, never>;
1177
1355
  static ɵcmp: i0.ɵɵComponentDeclaration<AwardIconComponent, "ea-icon-award", never, {}, {}, never, never, true, never>;
1178
1356
  }
1179
1357
 
1180
- declare class BarChartIconComponent {
1358
+ declare class BarChartIconComponent extends IconComponentBase {
1359
+ static readonly slug = "bar-chart";
1360
+ static readonly category: IconCategory;
1361
+ static readonly tags: ReadonlyArray<string>;
1181
1362
  static ɵfac: i0.ɵɵFactoryDeclaration<BarChartIconComponent, never>;
1182
1363
  static ɵcmp: i0.ɵɵComponentDeclaration<BarChartIconComponent, "ea-icon-bar-chart", never, {}, {}, never, never, true, never>;
1183
1364
  }
1184
1365
 
1185
- declare class BatteryIconComponent {
1366
+ declare class BarChart2IconComponent extends IconComponentBase {
1367
+ static readonly slug = "bar-chart-2";
1368
+ static readonly category: IconCategory;
1369
+ static readonly tags: ReadonlyArray<string>;
1370
+ static ɵfac: i0.ɵɵFactoryDeclaration<BarChart2IconComponent, never>;
1371
+ static ɵcmp: i0.ɵɵComponentDeclaration<BarChart2IconComponent, "ea-icon-bar-chart-2", never, {}, {}, never, never, true, never>;
1372
+ }
1373
+
1374
+ declare class BatteryIconComponent extends IconComponentBase {
1375
+ static readonly slug = "battery";
1376
+ static readonly category: IconCategory;
1377
+ static readonly tags: ReadonlyArray<string>;
1186
1378
  static ɵfac: i0.ɵɵFactoryDeclaration<BatteryIconComponent, never>;
1187
1379
  static ɵcmp: i0.ɵɵComponentDeclaration<BatteryIconComponent, "ea-icon-battery", never, {}, {}, never, never, true, never>;
1188
1380
  }
1189
1381
 
1190
- declare class BatteryChargingIconComponent {
1382
+ declare class BatteryChargingIconComponent extends IconComponentBase {
1383
+ static readonly slug = "battery-charging";
1384
+ static readonly category: IconCategory;
1385
+ static readonly tags: ReadonlyArray<string>;
1191
1386
  static ɵfac: i0.ɵɵFactoryDeclaration<BatteryChargingIconComponent, never>;
1192
1387
  static ɵcmp: i0.ɵɵComponentDeclaration<BatteryChargingIconComponent, "ea-icon-battery-charging", never, {}, {}, never, never, true, never>;
1193
1388
  }
1194
1389
 
1195
- declare class BellIconComponent {
1390
+ declare class BellIconComponent extends IconComponentBase {
1391
+ static readonly slug = "bell";
1392
+ static readonly category: IconCategory;
1393
+ static readonly tags: ReadonlyArray<string>;
1196
1394
  static ɵfac: i0.ɵɵFactoryDeclaration<BellIconComponent, never>;
1197
1395
  static ɵcmp: i0.ɵɵComponentDeclaration<BellIconComponent, "ea-icon-bell", never, {}, {}, never, never, true, never>;
1198
1396
  }
1199
1397
 
1200
- declare class BellOffIconComponent {
1398
+ declare class BellOffIconComponent extends IconComponentBase {
1399
+ static readonly slug = "bell-off";
1400
+ static readonly category: IconCategory;
1401
+ static readonly tags: ReadonlyArray<string>;
1201
1402
  static ɵfac: i0.ɵɵFactoryDeclaration<BellOffIconComponent, never>;
1202
1403
  static ɵcmp: i0.ɵɵComponentDeclaration<BellOffIconComponent, "ea-icon-bell-off", never, {}, {}, never, never, true, never>;
1203
1404
  }
1204
1405
 
1205
- declare class BluetoothIconComponent {
1406
+ declare class BluetoothIconComponent extends IconComponentBase {
1407
+ static readonly slug = "bluetooth";
1408
+ static readonly category: IconCategory;
1409
+ static readonly tags: ReadonlyArray<string>;
1206
1410
  static ɵfac: i0.ɵɵFactoryDeclaration<BluetoothIconComponent, never>;
1207
1411
  static ɵcmp: i0.ɵɵComponentDeclaration<BluetoothIconComponent, "ea-icon-bluetooth", never, {}, {}, never, never, true, never>;
1208
1412
  }
1209
1413
 
1210
- declare class BoldIconComponent {
1414
+ declare class BoldIconComponent extends IconComponentBase {
1415
+ static readonly slug = "bold";
1416
+ static readonly category: IconCategory;
1417
+ static readonly tags: ReadonlyArray<string>;
1211
1418
  static ɵfac: i0.ɵɵFactoryDeclaration<BoldIconComponent, never>;
1212
1419
  static ɵcmp: i0.ɵɵComponentDeclaration<BoldIconComponent, "ea-icon-bold", never, {}, {}, never, never, true, never>;
1213
1420
  }
1214
1421
 
1215
- declare class BookIconComponent {
1422
+ declare class BookIconComponent extends IconComponentBase {
1423
+ static readonly slug = "book";
1424
+ static readonly category: IconCategory;
1425
+ static readonly tags: ReadonlyArray<string>;
1216
1426
  static ɵfac: i0.ɵɵFactoryDeclaration<BookIconComponent, never>;
1217
1427
  static ɵcmp: i0.ɵɵComponentDeclaration<BookIconComponent, "ea-icon-book", never, {}, {}, never, never, true, never>;
1218
1428
  }
1219
1429
 
1220
- declare class BookOpenIconComponent {
1430
+ declare class BookOpenIconComponent extends IconComponentBase {
1431
+ static readonly slug = "book-open";
1432
+ static readonly category: IconCategory;
1433
+ static readonly tags: ReadonlyArray<string>;
1221
1434
  static ɵfac: i0.ɵɵFactoryDeclaration<BookOpenIconComponent, never>;
1222
1435
  static ɵcmp: i0.ɵɵComponentDeclaration<BookOpenIconComponent, "ea-icon-book-open", never, {}, {}, never, never, true, never>;
1223
1436
  }
1224
1437
 
1225
- declare class BookmarkIconComponent {
1438
+ declare class BookmarkIconComponent extends IconComponentBase {
1439
+ static readonly slug = "bookmark";
1440
+ static readonly category: IconCategory;
1441
+ static readonly tags: ReadonlyArray<string>;
1226
1442
  static ɵfac: i0.ɵɵFactoryDeclaration<BookmarkIconComponent, never>;
1227
1443
  static ɵcmp: i0.ɵɵComponentDeclaration<BookmarkIconComponent, "ea-icon-bookmark", never, {}, {}, never, never, true, never>;
1228
1444
  }
1229
1445
 
1230
- declare class BoxIconComponent {
1446
+ declare class BottleIconComponent extends IconComponentBase {
1447
+ static readonly slug = "bottle";
1448
+ static readonly category: IconCategory;
1449
+ static readonly tags: ReadonlyArray<string>;
1450
+ static ɵfac: i0.ɵɵFactoryDeclaration<BottleIconComponent, never>;
1451
+ static ɵcmp: i0.ɵɵComponentDeclaration<BottleIconComponent, "ea-icon-bottle", never, {}, {}, never, never, true, never>;
1452
+ }
1453
+
1454
+ declare class BoxIconComponent extends IconComponentBase {
1455
+ static readonly slug = "box";
1456
+ static readonly category: IconCategory;
1457
+ static readonly tags: ReadonlyArray<string>;
1231
1458
  static ɵfac: i0.ɵɵFactoryDeclaration<BoxIconComponent, never>;
1232
1459
  static ɵcmp: i0.ɵɵComponentDeclaration<BoxIconComponent, "ea-icon-box", never, {}, {}, never, never, true, never>;
1233
1460
  }
1234
1461
 
1235
- declare class BriefcaseIconComponent {
1462
+ declare class BriefcaseIconComponent extends IconComponentBase {
1463
+ static readonly slug = "briefcase";
1464
+ static readonly category: IconCategory;
1465
+ static readonly tags: ReadonlyArray<string>;
1236
1466
  static ɵfac: i0.ɵɵFactoryDeclaration<BriefcaseIconComponent, never>;
1237
1467
  static ɵcmp: i0.ɵɵComponentDeclaration<BriefcaseIconComponent, "ea-icon-briefcase", never, {}, {}, never, never, true, never>;
1238
1468
  }
1239
1469
 
1240
- declare class CalendarIconComponent {
1470
+ declare class CalendarIconComponent extends IconComponentBase {
1471
+ static readonly slug = "calendar";
1472
+ static readonly category: IconCategory;
1473
+ static readonly tags: ReadonlyArray<string>;
1241
1474
  static ɵfac: i0.ɵɵFactoryDeclaration<CalendarIconComponent, never>;
1242
1475
  static ɵcmp: i0.ɵɵComponentDeclaration<CalendarIconComponent, "ea-icon-calendar", never, {}, {}, never, never, true, never>;
1243
1476
  }
1244
1477
 
1245
- declare class CameraIconComponent {
1478
+ declare class CameraIconComponent extends IconComponentBase {
1479
+ static readonly slug = "camera";
1480
+ static readonly category: IconCategory;
1481
+ static readonly tags: ReadonlyArray<string>;
1246
1482
  static ɵfac: i0.ɵɵFactoryDeclaration<CameraIconComponent, never>;
1247
1483
  static ɵcmp: i0.ɵɵComponentDeclaration<CameraIconComponent, "ea-icon-camera", never, {}, {}, never, never, true, never>;
1248
1484
  }
1249
1485
 
1250
- declare class CheckIconComponent {
1486
+ declare class CameraOffIconComponent extends IconComponentBase {
1487
+ static readonly slug = "camera-off";
1488
+ static readonly category: IconCategory;
1489
+ static readonly tags: ReadonlyArray<string>;
1490
+ static ɵfac: i0.ɵɵFactoryDeclaration<CameraOffIconComponent, never>;
1491
+ static ɵcmp: i0.ɵɵComponentDeclaration<CameraOffIconComponent, "ea-icon-camera-off", never, {}, {}, never, never, true, never>;
1492
+ }
1493
+
1494
+ declare class CandleIconComponent extends IconComponentBase {
1495
+ static readonly slug = "candle";
1496
+ static readonly category: IconCategory;
1497
+ static readonly tags: ReadonlyArray<string>;
1498
+ static ɵfac: i0.ɵɵFactoryDeclaration<CandleIconComponent, never>;
1499
+ static ɵcmp: i0.ɵɵComponentDeclaration<CandleIconComponent, "ea-icon-candle", never, {}, {}, never, never, true, never>;
1500
+ }
1501
+
1502
+ declare class CastIconComponent extends IconComponentBase {
1503
+ static readonly slug = "cast";
1504
+ static readonly category: IconCategory;
1505
+ static readonly tags: ReadonlyArray<string>;
1506
+ static ɵfac: i0.ɵɵFactoryDeclaration<CastIconComponent, never>;
1507
+ static ɵcmp: i0.ɵɵComponentDeclaration<CastIconComponent, "ea-icon-cast", never, {}, {}, never, never, true, never>;
1508
+ }
1509
+
1510
+ declare class CheckIconComponent extends IconComponentBase {
1511
+ static readonly slug = "check";
1512
+ static readonly category: IconCategory;
1513
+ static readonly tags: ReadonlyArray<string>;
1251
1514
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckIconComponent, never>;
1252
1515
  static ɵcmp: i0.ɵɵComponentDeclaration<CheckIconComponent, "ea-icon-check", never, {}, {}, never, never, true, never>;
1253
1516
  }
1254
1517
 
1255
- declare class CheckCircleIconComponent {
1518
+ declare class CheckCircleIconComponent extends IconComponentBase {
1519
+ static readonly slug = "check-circle";
1520
+ static readonly category: IconCategory;
1521
+ static readonly tags: ReadonlyArray<string>;
1256
1522
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckCircleIconComponent, never>;
1257
1523
  static ɵcmp: i0.ɵɵComponentDeclaration<CheckCircleIconComponent, "ea-icon-check-circle", never, {}, {}, never, never, true, never>;
1258
1524
  }
1259
1525
 
1260
- declare class ChevronDownIconComponent {
1526
+ declare class CheckSquareIconComponent extends IconComponentBase {
1527
+ static readonly slug = "check-square";
1528
+ static readonly category: IconCategory;
1529
+ static readonly tags: ReadonlyArray<string>;
1530
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckSquareIconComponent, never>;
1531
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckSquareIconComponent, "ea-icon-check-square", never, {}, {}, never, never, true, never>;
1532
+ }
1533
+
1534
+ declare class ChevronDownIconComponent extends IconComponentBase {
1535
+ static readonly slug = "chevron-down";
1536
+ static readonly category: IconCategory;
1537
+ static readonly tags: ReadonlyArray<string>;
1261
1538
  static ɵfac: i0.ɵɵFactoryDeclaration<ChevronDownIconComponent, never>;
1262
1539
  static ɵcmp: i0.ɵɵComponentDeclaration<ChevronDownIconComponent, "ea-icon-chevron-down", never, {}, {}, never, never, true, never>;
1263
1540
  }
1264
1541
 
1265
- declare class ChevronLeftIconComponent {
1542
+ declare class ChevronLeftIconComponent extends IconComponentBase {
1543
+ static readonly slug = "chevron-left";
1544
+ static readonly category: IconCategory;
1545
+ static readonly tags: ReadonlyArray<string>;
1266
1546
  static ɵfac: i0.ɵɵFactoryDeclaration<ChevronLeftIconComponent, never>;
1267
1547
  static ɵcmp: i0.ɵɵComponentDeclaration<ChevronLeftIconComponent, "ea-icon-chevron-left", never, {}, {}, never, never, true, never>;
1268
1548
  }
1269
1549
 
1270
- declare class ChevronRightIconComponent {
1550
+ declare class ChevronRightIconComponent extends IconComponentBase {
1551
+ static readonly slug = "chevron-right";
1552
+ static readonly category: IconCategory;
1553
+ static readonly tags: ReadonlyArray<string>;
1271
1554
  static ɵfac: i0.ɵɵFactoryDeclaration<ChevronRightIconComponent, never>;
1272
1555
  static ɵcmp: i0.ɵɵComponentDeclaration<ChevronRightIconComponent, "ea-icon-chevron-right", never, {}, {}, never, never, true, never>;
1273
1556
  }
1274
1557
 
1275
- declare class ChevronUpIconComponent {
1558
+ declare class ChevronUpIconComponent extends IconComponentBase {
1559
+ static readonly slug = "chevron-up";
1560
+ static readonly category: IconCategory;
1561
+ static readonly tags: ReadonlyArray<string>;
1276
1562
  static ɵfac: i0.ɵɵFactoryDeclaration<ChevronUpIconComponent, never>;
1277
1563
  static ɵcmp: i0.ɵɵComponentDeclaration<ChevronUpIconComponent, "ea-icon-chevron-up", never, {}, {}, never, never, true, never>;
1278
1564
  }
1279
1565
 
1280
- declare class ChevronsUpDownIconComponent {
1566
+ declare class ChevronsDownIconComponent extends IconComponentBase {
1567
+ static readonly slug = "chevrons-down";
1568
+ static readonly category: IconCategory;
1569
+ static readonly tags: ReadonlyArray<string>;
1570
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChevronsDownIconComponent, never>;
1571
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChevronsDownIconComponent, "ea-icon-chevrons-down", never, {}, {}, never, never, true, never>;
1572
+ }
1573
+
1574
+ declare class ChevronsLeftIconComponent extends IconComponentBase {
1575
+ static readonly slug = "chevrons-left";
1576
+ static readonly category: IconCategory;
1577
+ static readonly tags: ReadonlyArray<string>;
1578
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChevronsLeftIconComponent, never>;
1579
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChevronsLeftIconComponent, "ea-icon-chevrons-left", never, {}, {}, never, never, true, never>;
1580
+ }
1581
+
1582
+ declare class ChevronsRightIconComponent extends IconComponentBase {
1583
+ static readonly slug = "chevrons-right";
1584
+ static readonly category: IconCategory;
1585
+ static readonly tags: ReadonlyArray<string>;
1586
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChevronsRightIconComponent, never>;
1587
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChevronsRightIconComponent, "ea-icon-chevrons-right", never, {}, {}, never, never, true, never>;
1588
+ }
1589
+
1590
+ declare class ChevronsUpIconComponent extends IconComponentBase {
1591
+ static readonly slug = "chevrons-up";
1592
+ static readonly category: IconCategory;
1593
+ static readonly tags: ReadonlyArray<string>;
1594
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChevronsUpIconComponent, never>;
1595
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChevronsUpIconComponent, "ea-icon-chevrons-up", never, {}, {}, never, never, true, never>;
1596
+ }
1597
+
1598
+ declare class ChevronsUpDownIconComponent extends IconComponentBase {
1599
+ static readonly slug = "chevrons-up-down";
1600
+ static readonly category: IconCategory;
1601
+ static readonly tags: ReadonlyArray<string>;
1281
1602
  static ɵfac: i0.ɵɵFactoryDeclaration<ChevronsUpDownIconComponent, never>;
1282
1603
  static ɵcmp: i0.ɵɵComponentDeclaration<ChevronsUpDownIconComponent, "ea-icon-chevrons-up-down", never, {}, {}, never, never, true, never>;
1283
1604
  }
1284
1605
 
1285
- declare class ChromeIconComponent {
1606
+ declare class ChromeIconComponent extends IconComponentBase {
1607
+ static readonly slug = "chrome";
1608
+ static readonly category: IconCategory;
1609
+ static readonly isBrand = true;
1610
+ static readonly tags: ReadonlyArray<string>;
1286
1611
  static ɵfac: i0.ɵɵFactoryDeclaration<ChromeIconComponent, never>;
1287
1612
  static ɵcmp: i0.ɵɵComponentDeclaration<ChromeIconComponent, "ea-icon-chrome", never, {}, {}, never, never, true, never>;
1288
1613
  }
1289
1614
 
1290
- declare class ClipboardIconComponent {
1615
+ declare class CircleIconComponent extends IconComponentBase {
1616
+ static readonly slug = "circle";
1617
+ static readonly category: IconCategory;
1618
+ static readonly tags: ReadonlyArray<string>;
1619
+ static ɵfac: i0.ɵɵFactoryDeclaration<CircleIconComponent, never>;
1620
+ static ɵcmp: i0.ɵɵComponentDeclaration<CircleIconComponent, "ea-icon-circle", never, {}, {}, never, never, true, never>;
1621
+ }
1622
+
1623
+ declare class ClipboardIconComponent extends IconComponentBase {
1624
+ static readonly slug = "clipboard";
1625
+ static readonly category: IconCategory;
1626
+ static readonly tags: ReadonlyArray<string>;
1291
1627
  static ɵfac: i0.ɵɵFactoryDeclaration<ClipboardIconComponent, never>;
1292
1628
  static ɵcmp: i0.ɵɵComponentDeclaration<ClipboardIconComponent, "ea-icon-clipboard", never, {}, {}, never, never, true, never>;
1293
1629
  }
1294
1630
 
1295
- declare class ClockIconComponent {
1631
+ declare class ClockIconComponent extends IconComponentBase {
1632
+ static readonly slug = "clock";
1633
+ static readonly category: IconCategory;
1634
+ static readonly tags: ReadonlyArray<string>;
1296
1635
  static ɵfac: i0.ɵɵFactoryDeclaration<ClockIconComponent, never>;
1297
1636
  static ɵcmp: i0.ɵɵComponentDeclaration<ClockIconComponent, "ea-icon-clock", never, {}, {}, never, never, true, never>;
1298
1637
  }
1299
1638
 
1300
- declare class CloudIconComponent {
1639
+ declare class CloudIconComponent extends IconComponentBase {
1640
+ static readonly slug = "cloud";
1641
+ static readonly category: IconCategory;
1642
+ static readonly tags: ReadonlyArray<string>;
1301
1643
  static ɵfac: i0.ɵɵFactoryDeclaration<CloudIconComponent, never>;
1302
1644
  static ɵcmp: i0.ɵɵComponentDeclaration<CloudIconComponent, "ea-icon-cloud", never, {}, {}, never, never, true, never>;
1303
1645
  }
1304
1646
 
1305
- declare class CloudflareIconComponent {
1647
+ declare class CloudDrizzleIconComponent extends IconComponentBase {
1648
+ static readonly slug = "cloud-drizzle";
1649
+ static readonly category: IconCategory;
1650
+ static readonly tags: ReadonlyArray<string>;
1651
+ static ɵfac: i0.ɵɵFactoryDeclaration<CloudDrizzleIconComponent, never>;
1652
+ static ɵcmp: i0.ɵɵComponentDeclaration<CloudDrizzleIconComponent, "ea-icon-cloud-drizzle", never, {}, {}, never, never, true, never>;
1653
+ }
1654
+
1655
+ declare class CloudLightningIconComponent extends IconComponentBase {
1656
+ static readonly slug = "cloud-lightning";
1657
+ static readonly category: IconCategory;
1658
+ static readonly tags: ReadonlyArray<string>;
1659
+ static ɵfac: i0.ɵɵFactoryDeclaration<CloudLightningIconComponent, never>;
1660
+ static ɵcmp: i0.ɵɵComponentDeclaration<CloudLightningIconComponent, "ea-icon-cloud-lightning", never, {}, {}, never, never, true, never>;
1661
+ }
1662
+
1663
+ declare class CloudOffIconComponent extends IconComponentBase {
1664
+ static readonly slug = "cloud-off";
1665
+ static readonly category: IconCategory;
1666
+ static readonly tags: ReadonlyArray<string>;
1667
+ static ɵfac: i0.ɵɵFactoryDeclaration<CloudOffIconComponent, never>;
1668
+ static ɵcmp: i0.ɵɵComponentDeclaration<CloudOffIconComponent, "ea-icon-cloud-off", never, {}, {}, never, never, true, never>;
1669
+ }
1670
+
1671
+ declare class CloudRainIconComponent extends IconComponentBase {
1672
+ static readonly slug = "cloud-rain";
1673
+ static readonly category: IconCategory;
1674
+ static readonly tags: ReadonlyArray<string>;
1675
+ static ɵfac: i0.ɵɵFactoryDeclaration<CloudRainIconComponent, never>;
1676
+ static ɵcmp: i0.ɵɵComponentDeclaration<CloudRainIconComponent, "ea-icon-cloud-rain", never, {}, {}, never, never, true, never>;
1677
+ }
1678
+
1679
+ declare class CloudSnowIconComponent extends IconComponentBase {
1680
+ static readonly slug = "cloud-snow";
1681
+ static readonly category: IconCategory;
1682
+ static readonly tags: ReadonlyArray<string>;
1683
+ static ɵfac: i0.ɵɵFactoryDeclaration<CloudSnowIconComponent, never>;
1684
+ static ɵcmp: i0.ɵɵComponentDeclaration<CloudSnowIconComponent, "ea-icon-cloud-snow", never, {}, {}, never, never, true, never>;
1685
+ }
1686
+
1687
+ declare class CloudflareIconComponent extends IconComponentBase {
1688
+ static readonly slug = "cloudflare";
1689
+ static readonly category: IconCategory;
1690
+ static readonly isBrand = true;
1691
+ static readonly tags: ReadonlyArray<string>;
1306
1692
  static ɵfac: i0.ɵɵFactoryDeclaration<CloudflareIconComponent, never>;
1307
1693
  static ɵcmp: i0.ɵɵComponentDeclaration<CloudflareIconComponent, "ea-icon-cloudflare", never, {}, {}, never, never, true, never>;
1308
1694
  }
1309
1695
 
1310
- declare class CodeIconComponent {
1696
+ declare class CodeIconComponent extends IconComponentBase {
1697
+ static readonly slug = "code";
1698
+ static readonly category: IconCategory;
1699
+ static readonly tags: ReadonlyArray<string>;
1311
1700
  static ɵfac: i0.ɵɵFactoryDeclaration<CodeIconComponent, never>;
1312
1701
  static ɵcmp: i0.ɵɵComponentDeclaration<CodeIconComponent, "ea-icon-code", never, {}, {}, never, never, true, never>;
1313
1702
  }
1314
1703
 
1315
- declare class CodepenIconComponent {
1704
+ declare class CodepenIconComponent extends IconComponentBase {
1705
+ static readonly slug = "codepen";
1706
+ static readonly category: IconCategory;
1707
+ static readonly isBrand = true;
1708
+ static readonly tags: ReadonlyArray<string>;
1316
1709
  static ɵfac: i0.ɵɵFactoryDeclaration<CodepenIconComponent, never>;
1317
1710
  static ɵcmp: i0.ɵɵComponentDeclaration<CodepenIconComponent, "ea-icon-codepen", never, {}, {}, never, never, true, never>;
1318
1711
  }
1319
1712
 
1320
- declare class CodesandboxIconComponent {
1713
+ declare class CodesandboxIconComponent extends IconComponentBase {
1714
+ static readonly slug = "codesandbox";
1715
+ static readonly category: IconCategory;
1716
+ static readonly isBrand = true;
1717
+ static readonly tags: ReadonlyArray<string>;
1321
1718
  static ɵfac: i0.ɵɵFactoryDeclaration<CodesandboxIconComponent, never>;
1322
1719
  static ɵcmp: i0.ɵɵComponentDeclaration<CodesandboxIconComponent, "ea-icon-codesandbox", never, {}, {}, never, never, true, never>;
1323
1720
  }
1324
1721
 
1325
- declare class CoffeeIconComponent {
1722
+ declare class CoffeeIconComponent extends IconComponentBase {
1723
+ static readonly slug = "coffee";
1724
+ static readonly category: IconCategory;
1725
+ static readonly tags: ReadonlyArray<string>;
1326
1726
  static ɵfac: i0.ɵɵFactoryDeclaration<CoffeeIconComponent, never>;
1327
1727
  static ɵcmp: i0.ɵɵComponentDeclaration<CoffeeIconComponent, "ea-icon-coffee", never, {}, {}, never, never, true, never>;
1328
1728
  }
1329
1729
 
1330
- declare class ColumnsIconComponent {
1730
+ declare class ColumnsIconComponent extends IconComponentBase {
1731
+ static readonly slug = "columns";
1732
+ static readonly category: IconCategory;
1733
+ static readonly tags: ReadonlyArray<string>;
1331
1734
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsIconComponent, never>;
1332
1735
  static ɵcmp: i0.ɵɵComponentDeclaration<ColumnsIconComponent, "ea-icon-columns", never, {}, {}, never, never, true, never>;
1333
1736
  }
1334
1737
 
1335
- declare class CommandIconComponent {
1738
+ declare class CommandIconComponent extends IconComponentBase {
1739
+ static readonly slug = "command";
1740
+ static readonly category: IconCategory;
1741
+ static readonly tags: ReadonlyArray<string>;
1336
1742
  static ɵfac: i0.ɵɵFactoryDeclaration<CommandIconComponent, never>;
1337
1743
  static ɵcmp: i0.ɵɵComponentDeclaration<CommandIconComponent, "ea-icon-command", never, {}, {}, never, never, true, never>;
1338
1744
  }
1339
1745
 
1340
- declare class CompassIconComponent {
1746
+ declare class CompassIconComponent extends IconComponentBase {
1747
+ static readonly slug = "compass";
1748
+ static readonly category: IconCategory;
1749
+ static readonly tags: ReadonlyArray<string>;
1341
1750
  static ɵfac: i0.ɵɵFactoryDeclaration<CompassIconComponent, never>;
1342
1751
  static ɵcmp: i0.ɵɵComponentDeclaration<CompassIconComponent, "ea-icon-compass", never, {}, {}, never, never, true, never>;
1343
1752
  }
1344
1753
 
1345
- declare class CopyIconComponent {
1754
+ declare class CopyIconComponent extends IconComponentBase {
1755
+ static readonly slug = "copy";
1756
+ static readonly category: IconCategory;
1757
+ static readonly tags: ReadonlyArray<string>;
1346
1758
  static ɵfac: i0.ɵɵFactoryDeclaration<CopyIconComponent, never>;
1347
1759
  static ɵcmp: i0.ɵɵComponentDeclaration<CopyIconComponent, "ea-icon-copy", never, {}, {}, never, never, true, never>;
1348
1760
  }
1349
1761
 
1350
- declare class CornerDownLeftIconComponent {
1762
+ declare class CornerDownLeftIconComponent extends IconComponentBase {
1763
+ static readonly slug = "corner-down-left";
1764
+ static readonly category: IconCategory;
1765
+ static readonly tags: ReadonlyArray<string>;
1351
1766
  static ɵfac: i0.ɵɵFactoryDeclaration<CornerDownLeftIconComponent, never>;
1352
1767
  static ɵcmp: i0.ɵɵComponentDeclaration<CornerDownLeftIconComponent, "ea-icon-corner-down-left", never, {}, {}, never, never, true, never>;
1353
1768
  }
1354
1769
 
1355
- declare class CornerDownRightIconComponent {
1770
+ declare class CornerDownRightIconComponent extends IconComponentBase {
1771
+ static readonly slug = "corner-down-right";
1772
+ static readonly category: IconCategory;
1773
+ static readonly tags: ReadonlyArray<string>;
1356
1774
  static ɵfac: i0.ɵɵFactoryDeclaration<CornerDownRightIconComponent, never>;
1357
1775
  static ɵcmp: i0.ɵɵComponentDeclaration<CornerDownRightIconComponent, "ea-icon-corner-down-right", never, {}, {}, never, never, true, never>;
1358
1776
  }
1359
1777
 
1360
- declare class CornerUpLeftIconComponent {
1778
+ declare class CornerLeftDownIconComponent extends IconComponentBase {
1779
+ static readonly slug = "corner-left-down";
1780
+ static readonly category: IconCategory;
1781
+ static readonly tags: ReadonlyArray<string>;
1782
+ static ɵfac: i0.ɵɵFactoryDeclaration<CornerLeftDownIconComponent, never>;
1783
+ static ɵcmp: i0.ɵɵComponentDeclaration<CornerLeftDownIconComponent, "ea-icon-corner-left-down", never, {}, {}, never, never, true, never>;
1784
+ }
1785
+
1786
+ declare class CornerLeftUpIconComponent extends IconComponentBase {
1787
+ static readonly slug = "corner-left-up";
1788
+ static readonly category: IconCategory;
1789
+ static readonly tags: ReadonlyArray<string>;
1790
+ static ɵfac: i0.ɵɵFactoryDeclaration<CornerLeftUpIconComponent, never>;
1791
+ static ɵcmp: i0.ɵɵComponentDeclaration<CornerLeftUpIconComponent, "ea-icon-corner-left-up", never, {}, {}, never, never, true, never>;
1792
+ }
1793
+
1794
+ declare class CornerRightDownIconComponent extends IconComponentBase {
1795
+ static readonly slug = "corner-right-down";
1796
+ static readonly category: IconCategory;
1797
+ static readonly tags: ReadonlyArray<string>;
1798
+ static ɵfac: i0.ɵɵFactoryDeclaration<CornerRightDownIconComponent, never>;
1799
+ static ɵcmp: i0.ɵɵComponentDeclaration<CornerRightDownIconComponent, "ea-icon-corner-right-down", never, {}, {}, never, never, true, never>;
1800
+ }
1801
+
1802
+ declare class CornerRightUpIconComponent extends IconComponentBase {
1803
+ static readonly slug = "corner-right-up";
1804
+ static readonly category: IconCategory;
1805
+ static readonly tags: ReadonlyArray<string>;
1806
+ static ɵfac: i0.ɵɵFactoryDeclaration<CornerRightUpIconComponent, never>;
1807
+ static ɵcmp: i0.ɵɵComponentDeclaration<CornerRightUpIconComponent, "ea-icon-corner-right-up", never, {}, {}, never, never, true, never>;
1808
+ }
1809
+
1810
+ declare class CornerUpLeftIconComponent extends IconComponentBase {
1811
+ static readonly slug = "corner-up-left";
1812
+ static readonly category: IconCategory;
1813
+ static readonly tags: ReadonlyArray<string>;
1361
1814
  static ɵfac: i0.ɵɵFactoryDeclaration<CornerUpLeftIconComponent, never>;
1362
1815
  static ɵcmp: i0.ɵɵComponentDeclaration<CornerUpLeftIconComponent, "ea-icon-corner-up-left", never, {}, {}, never, never, true, never>;
1363
1816
  }
1364
1817
 
1365
- declare class CornerUpRightIconComponent {
1818
+ declare class CornerUpRightIconComponent extends IconComponentBase {
1819
+ static readonly slug = "corner-up-right";
1820
+ static readonly category: IconCategory;
1821
+ static readonly tags: ReadonlyArray<string>;
1366
1822
  static ɵfac: i0.ɵɵFactoryDeclaration<CornerUpRightIconComponent, never>;
1367
1823
  static ɵcmp: i0.ɵɵComponentDeclaration<CornerUpRightIconComponent, "ea-icon-corner-up-right", never, {}, {}, never, never, true, never>;
1368
1824
  }
1369
1825
 
1370
- declare class CpuIconComponent {
1826
+ declare class CpuIconComponent extends IconComponentBase {
1827
+ static readonly slug = "cpu";
1828
+ static readonly category: IconCategory;
1829
+ static readonly tags: ReadonlyArray<string>;
1371
1830
  static ɵfac: i0.ɵɵFactoryDeclaration<CpuIconComponent, never>;
1372
1831
  static ɵcmp: i0.ɵɵComponentDeclaration<CpuIconComponent, "ea-icon-cpu", never, {}, {}, never, never, true, never>;
1373
1832
  }
1374
1833
 
1375
- declare class CreditCardIconComponent {
1834
+ declare class CreditCardIconComponent extends IconComponentBase {
1835
+ static readonly slug = "credit-card";
1836
+ static readonly category: IconCategory;
1837
+ static readonly tags: ReadonlyArray<string>;
1376
1838
  static ɵfac: i0.ɵɵFactoryDeclaration<CreditCardIconComponent, never>;
1377
1839
  static ɵcmp: i0.ɵɵComponentDeclaration<CreditCardIconComponent, "ea-icon-credit-card", never, {}, {}, never, never, true, never>;
1378
1840
  }
1379
1841
 
1380
- declare class CropIconComponent {
1842
+ declare class CropIconComponent extends IconComponentBase {
1843
+ static readonly slug = "crop";
1844
+ static readonly category: IconCategory;
1845
+ static readonly tags: ReadonlyArray<string>;
1381
1846
  static ɵfac: i0.ɵɵFactoryDeclaration<CropIconComponent, never>;
1382
1847
  static ɵcmp: i0.ɵɵComponentDeclaration<CropIconComponent, "ea-icon-crop", never, {}, {}, never, never, true, never>;
1383
1848
  }
1384
1849
 
1385
- declare class CrosshairIconComponent {
1850
+ declare class CrosshairIconComponent extends IconComponentBase {
1851
+ static readonly slug = "crosshair";
1852
+ static readonly category: IconCategory;
1853
+ static readonly tags: ReadonlyArray<string>;
1386
1854
  static ɵfac: i0.ɵɵFactoryDeclaration<CrosshairIconComponent, never>;
1387
1855
  static ɵcmp: i0.ɵɵComponentDeclaration<CrosshairIconComponent, "ea-icon-crosshair", never, {}, {}, never, never, true, never>;
1388
1856
  }
1389
1857
 
1390
- declare class DatabaseIconComponent {
1858
+ declare class DatabaseIconComponent extends IconComponentBase {
1859
+ static readonly slug = "database";
1860
+ static readonly category: IconCategory;
1861
+ static readonly tags: ReadonlyArray<string>;
1391
1862
  static ɵfac: i0.ɵɵFactoryDeclaration<DatabaseIconComponent, never>;
1392
1863
  static ɵcmp: i0.ɵɵComponentDeclaration<DatabaseIconComponent, "ea-icon-database", never, {}, {}, never, never, true, never>;
1393
1864
  }
1394
1865
 
1395
- declare class DeleteIconComponent {
1866
+ declare class DeleteIconComponent extends IconComponentBase {
1867
+ static readonly slug = "delete";
1868
+ static readonly category: IconCategory;
1869
+ static readonly tags: ReadonlyArray<string>;
1396
1870
  static ɵfac: i0.ɵɵFactoryDeclaration<DeleteIconComponent, never>;
1397
1871
  static ɵcmp: i0.ɵɵComponentDeclaration<DeleteIconComponent, "ea-icon-delete", never, {}, {}, never, never, true, never>;
1398
1872
  }
1399
1873
 
1400
- declare class DiscIconComponent {
1874
+ declare class DiscIconComponent extends IconComponentBase {
1875
+ static readonly slug = "disc";
1876
+ static readonly category: IconCategory;
1877
+ static readonly tags: ReadonlyArray<string>;
1401
1878
  static ɵfac: i0.ɵɵFactoryDeclaration<DiscIconComponent, never>;
1402
1879
  static ɵcmp: i0.ɵɵComponentDeclaration<DiscIconComponent, "ea-icon-disc", never, {}, {}, never, never, true, never>;
1403
1880
  }
1404
1881
 
1405
- declare class DiscordIconComponent {
1882
+ declare class DiscordIconComponent extends IconComponentBase {
1883
+ static readonly slug = "discord";
1884
+ static readonly category: IconCategory;
1885
+ static readonly isBrand = true;
1886
+ static readonly tags: ReadonlyArray<string>;
1406
1887
  readonly brand: i0.InputSignal<boolean>;
1407
1888
  static ɵfac: i0.ɵɵFactoryDeclaration<DiscordIconComponent, never>;
1408
1889
  static ɵcmp: i0.ɵɵComponentDeclaration<DiscordIconComponent, "ea-icon-discord", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1409
1890
  }
1410
1891
 
1411
- declare class DivideIconComponent {
1892
+ declare class DivideIconComponent extends IconComponentBase {
1893
+ static readonly slug = "divide";
1894
+ static readonly category: IconCategory;
1895
+ static readonly tags: ReadonlyArray<string>;
1412
1896
  static ɵfac: i0.ɵɵFactoryDeclaration<DivideIconComponent, never>;
1413
1897
  static ɵcmp: i0.ɵɵComponentDeclaration<DivideIconComponent, "ea-icon-divide", never, {}, {}, never, never, true, never>;
1414
1898
  }
1415
1899
 
1416
- declare class DockerIconComponent {
1900
+ declare class DivideCircleIconComponent extends IconComponentBase {
1901
+ static readonly slug = "divide-circle";
1902
+ static readonly category: IconCategory;
1903
+ static readonly tags: ReadonlyArray<string>;
1904
+ static ɵfac: i0.ɵɵFactoryDeclaration<DivideCircleIconComponent, never>;
1905
+ static ɵcmp: i0.ɵɵComponentDeclaration<DivideCircleIconComponent, "ea-icon-divide-circle", never, {}, {}, never, never, true, never>;
1906
+ }
1907
+
1908
+ declare class DivideSquareIconComponent extends IconComponentBase {
1909
+ static readonly slug = "divide-square";
1910
+ static readonly category: IconCategory;
1911
+ static readonly tags: ReadonlyArray<string>;
1912
+ static ɵfac: i0.ɵɵFactoryDeclaration<DivideSquareIconComponent, never>;
1913
+ static ɵcmp: i0.ɵɵComponentDeclaration<DivideSquareIconComponent, "ea-icon-divide-square", never, {}, {}, never, never, true, never>;
1914
+ }
1915
+
1916
+ declare class DockerIconComponent extends IconComponentBase {
1917
+ static readonly slug = "docker";
1918
+ static readonly category: IconCategory;
1919
+ static readonly isBrand = true;
1920
+ static readonly tags: ReadonlyArray<string>;
1417
1921
  readonly brand: i0.InputSignal<boolean>;
1418
1922
  static ɵfac: i0.ɵɵFactoryDeclaration<DockerIconComponent, never>;
1419
1923
  static ɵcmp: i0.ɵɵComponentDeclaration<DockerIconComponent, "ea-icon-docker", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1420
1924
  }
1421
1925
 
1422
- declare class DollarSignIconComponent {
1926
+ declare class DollarSignIconComponent extends IconComponentBase {
1927
+ static readonly slug = "dollar-sign";
1928
+ static readonly category: IconCategory;
1929
+ static readonly tags: ReadonlyArray<string>;
1423
1930
  static ɵfac: i0.ɵɵFactoryDeclaration<DollarSignIconComponent, never>;
1424
1931
  static ɵcmp: i0.ɵɵComponentDeclaration<DollarSignIconComponent, "ea-icon-dollar-sign", never, {}, {}, never, never, true, never>;
1425
1932
  }
1426
1933
 
1427
- declare class DownloadIconComponent {
1934
+ declare class DownloadIconComponent extends IconComponentBase {
1935
+ static readonly slug = "download";
1936
+ static readonly category: IconCategory;
1937
+ static readonly tags: ReadonlyArray<string>;
1428
1938
  static ɵfac: i0.ɵɵFactoryDeclaration<DownloadIconComponent, never>;
1429
1939
  static ɵcmp: i0.ɵɵComponentDeclaration<DownloadIconComponent, "ea-icon-download", never, {}, {}, never, never, true, never>;
1430
1940
  }
1431
1941
 
1432
- declare class DownloadCloudIconComponent {
1942
+ declare class DownloadCloudIconComponent extends IconComponentBase {
1943
+ static readonly slug = "download-cloud";
1944
+ static readonly category: IconCategory;
1945
+ static readonly tags: ReadonlyArray<string>;
1433
1946
  static ɵfac: i0.ɵɵFactoryDeclaration<DownloadCloudIconComponent, never>;
1434
1947
  static ɵcmp: i0.ɵɵComponentDeclaration<DownloadCloudIconComponent, "ea-icon-download-cloud", never, {}, {}, never, never, true, never>;
1435
1948
  }
1436
1949
 
1437
- declare class DropboxIconComponent {
1950
+ declare class DribbbleIconComponent extends IconComponentBase {
1951
+ static readonly slug = "dribbble";
1952
+ static readonly category: IconCategory;
1953
+ static readonly tags: ReadonlyArray<string>;
1954
+ static ɵfac: i0.ɵɵFactoryDeclaration<DribbbleIconComponent, never>;
1955
+ static ɵcmp: i0.ɵɵComponentDeclaration<DribbbleIconComponent, "ea-icon-dribbble", never, {}, {}, never, never, true, never>;
1956
+ }
1957
+
1958
+ declare class DropboxIconComponent extends IconComponentBase {
1959
+ static readonly slug = "dropbox";
1960
+ static readonly category: IconCategory;
1961
+ static readonly isBrand = true;
1962
+ static readonly tags: ReadonlyArray<string>;
1438
1963
  readonly brand: i0.InputSignal<boolean>;
1439
1964
  static ɵfac: i0.ɵɵFactoryDeclaration<DropboxIconComponent, never>;
1440
1965
  static ɵcmp: i0.ɵɵComponentDeclaration<DropboxIconComponent, "ea-icon-dropbox", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1441
1966
  }
1442
1967
 
1443
- declare class DropletIconComponent {
1968
+ declare class DropletIconComponent extends IconComponentBase {
1969
+ static readonly slug = "droplet";
1970
+ static readonly category: IconCategory;
1971
+ static readonly tags: ReadonlyArray<string>;
1444
1972
  static ɵfac: i0.ɵɵFactoryDeclaration<DropletIconComponent, never>;
1445
1973
  static ɵcmp: i0.ɵɵComponentDeclaration<DropletIconComponent, "ea-icon-droplet", never, {}, {}, never, never, true, never>;
1446
1974
  }
1447
1975
 
1448
- declare class EagamiIconComponent {
1976
+ declare class EagamiIconComponent extends IconComponentBase {
1977
+ static readonly slug = "eagami";
1978
+ static readonly category: IconCategory;
1979
+ static readonly isBrand = true;
1980
+ static readonly tags: ReadonlyArray<string>;
1449
1981
  static ɵfac: i0.ɵɵFactoryDeclaration<EagamiIconComponent, never>;
1450
1982
  static ɵcmp: i0.ɵɵComponentDeclaration<EagamiIconComponent, "ea-icon-eagami", never, {}, {}, never, never, true, never>;
1451
1983
  }
1452
1984
 
1453
- declare class EditIconComponent {
1985
+ declare class EditIconComponent extends IconComponentBase {
1986
+ static readonly slug = "edit";
1987
+ static readonly category: IconCategory;
1988
+ static readonly tags: ReadonlyArray<string>;
1454
1989
  static ɵfac: i0.ɵɵFactoryDeclaration<EditIconComponent, never>;
1455
1990
  static ɵcmp: i0.ɵɵComponentDeclaration<EditIconComponent, "ea-icon-edit", never, {}, {}, never, never, true, never>;
1456
1991
  }
1457
1992
 
1458
- declare class Edit2IconComponent {
1993
+ declare class Edit2IconComponent extends IconComponentBase {
1994
+ static readonly slug = "edit-2";
1995
+ static readonly category: IconCategory;
1996
+ static readonly tags: ReadonlyArray<string>;
1459
1997
  static ɵfac: i0.ɵɵFactoryDeclaration<Edit2IconComponent, never>;
1460
1998
  static ɵcmp: i0.ɵɵComponentDeclaration<Edit2IconComponent, "ea-icon-edit-2", never, {}, {}, never, never, true, never>;
1461
1999
  }
1462
2000
 
1463
- declare class Edit3IconComponent {
2001
+ declare class Edit3IconComponent extends IconComponentBase {
2002
+ static readonly slug = "edit-3";
2003
+ static readonly category: IconCategory;
2004
+ static readonly tags: ReadonlyArray<string>;
1464
2005
  static ɵfac: i0.ɵɵFactoryDeclaration<Edit3IconComponent, never>;
1465
2006
  static ɵcmp: i0.ɵɵComponentDeclaration<Edit3IconComponent, "ea-icon-edit-3", never, {}, {}, never, never, true, never>;
1466
2007
  }
1467
2008
 
1468
- declare class ExternalLinkIconComponent {
2009
+ declare class ExternalLinkIconComponent extends IconComponentBase {
2010
+ static readonly slug = "external-link";
2011
+ static readonly category: IconCategory;
2012
+ static readonly tags: ReadonlyArray<string>;
1469
2013
  static ɵfac: i0.ɵɵFactoryDeclaration<ExternalLinkIconComponent, never>;
1470
2014
  static ɵcmp: i0.ɵɵComponentDeclaration<ExternalLinkIconComponent, "ea-icon-external-link", never, {}, {}, never, never, true, never>;
1471
2015
  }
1472
2016
 
1473
- declare class EyeIconComponent {
2017
+ declare class EyeIconComponent extends IconComponentBase {
2018
+ static readonly slug = "eye";
2019
+ static readonly category: IconCategory;
2020
+ static readonly tags: ReadonlyArray<string>;
1474
2021
  static ɵfac: i0.ɵɵFactoryDeclaration<EyeIconComponent, never>;
1475
2022
  static ɵcmp: i0.ɵɵComponentDeclaration<EyeIconComponent, "ea-icon-eye", never, {}, {}, never, never, true, never>;
1476
2023
  }
1477
2024
 
1478
- declare class EyeOffIconComponent {
2025
+ declare class EyeOffIconComponent extends IconComponentBase {
2026
+ static readonly slug = "eye-off";
2027
+ static readonly category: IconCategory;
2028
+ static readonly tags: ReadonlyArray<string>;
1479
2029
  static ɵfac: i0.ɵɵFactoryDeclaration<EyeOffIconComponent, never>;
1480
2030
  static ɵcmp: i0.ɵɵComponentDeclaration<EyeOffIconComponent, "ea-icon-eye-off", never, {}, {}, never, never, true, never>;
1481
2031
  }
1482
2032
 
1483
- declare class FacebookIconComponent {
1484
- readonly brand: i0.InputSignal<boolean>;
2033
+ /**
2034
+ * Facebook icon (Feather outline).
2035
+ *
2036
+ * @remarks
2037
+ * Prior to v1.4 this slug rendered Eagami's brand-filled Facebook mark. v1.4
2038
+ * aligns the canonical slug with Feather Icons, so `FacebookIconComponent` now
2039
+ * renders Feather's outline. The brand-filled mark that previously shipped
2040
+ * here has moved to `<ea-icon-facebook-2>` / `Facebook2IconComponent`.
2041
+ */
2042
+ declare class FacebookIconComponent extends IconComponentBase {
2043
+ static readonly slug = "facebook";
2044
+ static readonly category: IconCategory;
2045
+ static readonly isBrand = true;
2046
+ static readonly tags: ReadonlyArray<string>;
1485
2047
  static ɵfac: i0.ɵɵFactoryDeclaration<FacebookIconComponent, never>;
1486
- static ɵcmp: i0.ɵɵComponentDeclaration<FacebookIconComponent, "ea-icon-facebook", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2048
+ static ɵcmp: i0.ɵɵComponentDeclaration<FacebookIconComponent, "ea-icon-facebook", never, {}, {}, never, never, true, never>;
1487
2049
  }
1488
2050
 
1489
- declare class FastForwardIconComponent {
2051
+ /**
2052
+ * Facebook brand mark (Eagami brand-filled).
2053
+ *
2054
+ * @remarks
2055
+ * Up to v1.3 this design shipped as `FacebookIconComponent` at slug
2056
+ * `ea-icon-facebook`. v1.4 reassigns the canonical slug to Feather's outline
2057
+ * and moves the brand-filled mark here. Set the `brand` input to render in
2058
+ * the official brand colour.
2059
+ */
2060
+ declare class Facebook2IconComponent extends IconComponentBase {
2061
+ static readonly slug = "facebook-2";
2062
+ static readonly category: IconCategory;
2063
+ static readonly isBrand = true;
2064
+ static readonly tags: ReadonlyArray<string>;
2065
+ readonly brand: i0.InputSignal<boolean>;
2066
+ static ɵfac: i0.ɵɵFactoryDeclaration<Facebook2IconComponent, never>;
2067
+ static ɵcmp: i0.ɵɵComponentDeclaration<Facebook2IconComponent, "ea-icon-facebook-2", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2068
+ }
2069
+
2070
+ declare class FastForwardIconComponent extends IconComponentBase {
2071
+ static readonly slug = "fast-forward";
2072
+ static readonly category: IconCategory;
2073
+ static readonly tags: ReadonlyArray<string>;
1490
2074
  static ɵfac: i0.ɵɵFactoryDeclaration<FastForwardIconComponent, never>;
1491
2075
  static ɵcmp: i0.ɵɵComponentDeclaration<FastForwardIconComponent, "ea-icon-fast-forward", never, {}, {}, never, never, true, never>;
1492
2076
  }
1493
2077
 
1494
- declare class FeatherIconComponent {
2078
+ declare class FeatherIconComponent extends IconComponentBase {
2079
+ static readonly slug = "feather";
2080
+ static readonly category: IconCategory;
2081
+ static readonly tags: ReadonlyArray<string>;
1495
2082
  static ɵfac: i0.ɵɵFactoryDeclaration<FeatherIconComponent, never>;
1496
2083
  static ɵcmp: i0.ɵɵComponentDeclaration<FeatherIconComponent, "ea-icon-feather", never, {}, {}, never, never, true, never>;
1497
2084
  }
1498
2085
 
1499
- declare class FigmaIconComponent {
2086
+ /**
2087
+ * Figma icon (Feather outline).
2088
+ *
2089
+ * @remarks
2090
+ * Prior to v1.4 this slug rendered Eagami's brand-filled Figma mark. v1.4
2091
+ * aligns the canonical slug with Feather Icons, so `FigmaIconComponent` now
2092
+ * renders Feather's outline. The brand-filled mark that previously shipped
2093
+ * here has moved to `<ea-icon-figma-2>` / `Figma2IconComponent`.
2094
+ */
2095
+ declare class FigmaIconComponent extends IconComponentBase {
2096
+ static readonly slug = "figma";
2097
+ static readonly category: IconCategory;
2098
+ static readonly isBrand = true;
2099
+ static readonly tags: ReadonlyArray<string>;
1500
2100
  static ɵfac: i0.ɵɵFactoryDeclaration<FigmaIconComponent, never>;
1501
2101
  static ɵcmp: i0.ɵɵComponentDeclaration<FigmaIconComponent, "ea-icon-figma", never, {}, {}, never, never, true, never>;
1502
2102
  }
1503
2103
 
1504
- declare class FileIconComponent {
2104
+ /**
2105
+ * Figma brand mark (Eagami brand-filled).
2106
+ *
2107
+ * @remarks
2108
+ * Up to v1.3 this design shipped as `FigmaIconComponent` at slug
2109
+ * `ea-icon-figma`. v1.4 reassigns the canonical slug to Feather's outline
2110
+ * and moves the brand-filled mark here. Set the `brand` input to render in
2111
+ * the official brand colour.
2112
+ */
2113
+ declare class Figma2IconComponent extends IconComponentBase {
2114
+ static readonly slug = "figma-2";
2115
+ static readonly category: IconCategory;
2116
+ static readonly isBrand = true;
2117
+ static readonly tags: ReadonlyArray<string>;
2118
+ static ɵfac: i0.ɵɵFactoryDeclaration<Figma2IconComponent, never>;
2119
+ static ɵcmp: i0.ɵɵComponentDeclaration<Figma2IconComponent, "ea-icon-figma-2", never, {}, {}, never, never, true, never>;
2120
+ }
2121
+
2122
+ declare class FileIconComponent extends IconComponentBase {
2123
+ static readonly slug = "file";
2124
+ static readonly category: IconCategory;
2125
+ static readonly tags: ReadonlyArray<string>;
1505
2126
  static ɵfac: i0.ɵɵFactoryDeclaration<FileIconComponent, never>;
1506
2127
  static ɵcmp: i0.ɵɵComponentDeclaration<FileIconComponent, "ea-icon-file", never, {}, {}, never, never, true, never>;
1507
2128
  }
1508
2129
 
1509
- declare class FileMinusIconComponent {
2130
+ declare class FileMinusIconComponent extends IconComponentBase {
2131
+ static readonly slug = "file-minus";
2132
+ static readonly category: IconCategory;
2133
+ static readonly tags: ReadonlyArray<string>;
1510
2134
  static ɵfac: i0.ɵɵFactoryDeclaration<FileMinusIconComponent, never>;
1511
2135
  static ɵcmp: i0.ɵɵComponentDeclaration<FileMinusIconComponent, "ea-icon-file-minus", never, {}, {}, never, never, true, never>;
1512
2136
  }
1513
2137
 
1514
- declare class FilePlusIconComponent {
2138
+ declare class FilePlusIconComponent extends IconComponentBase {
2139
+ static readonly slug = "file-plus";
2140
+ static readonly category: IconCategory;
2141
+ static readonly tags: ReadonlyArray<string>;
1515
2142
  static ɵfac: i0.ɵɵFactoryDeclaration<FilePlusIconComponent, never>;
1516
2143
  static ɵcmp: i0.ɵɵComponentDeclaration<FilePlusIconComponent, "ea-icon-file-plus", never, {}, {}, never, never, true, never>;
1517
2144
  }
1518
2145
 
1519
- declare class FileTextIconComponent {
2146
+ declare class FileTextIconComponent extends IconComponentBase {
2147
+ static readonly slug = "file-text";
2148
+ static readonly category: IconCategory;
2149
+ static readonly tags: ReadonlyArray<string>;
1520
2150
  static ɵfac: i0.ɵɵFactoryDeclaration<FileTextIconComponent, never>;
1521
2151
  static ɵcmp: i0.ɵɵComponentDeclaration<FileTextIconComponent, "ea-icon-file-text", never, {}, {}, never, never, true, never>;
1522
2152
  }
1523
2153
 
1524
- declare class FilmIconComponent {
2154
+ declare class FilmIconComponent extends IconComponentBase {
2155
+ static readonly slug = "film";
2156
+ static readonly category: IconCategory;
2157
+ static readonly tags: ReadonlyArray<string>;
1525
2158
  static ɵfac: i0.ɵɵFactoryDeclaration<FilmIconComponent, never>;
1526
2159
  static ɵcmp: i0.ɵɵComponentDeclaration<FilmIconComponent, "ea-icon-film", never, {}, {}, never, never, true, never>;
1527
2160
  }
1528
2161
 
1529
- declare class FilterIconComponent {
2162
+ declare class FilterIconComponent extends IconComponentBase {
2163
+ static readonly slug = "filter";
2164
+ static readonly category: IconCategory;
2165
+ static readonly tags: ReadonlyArray<string>;
1530
2166
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterIconComponent, never>;
1531
2167
  static ɵcmp: i0.ɵɵComponentDeclaration<FilterIconComponent, "ea-icon-filter", never, {}, {}, never, never, true, never>;
1532
2168
  }
1533
2169
 
1534
- declare class FlagIconComponent {
2170
+ declare class FlagIconComponent extends IconComponentBase {
2171
+ static readonly slug = "flag";
2172
+ static readonly category: IconCategory;
2173
+ static readonly tags: ReadonlyArray<string>;
1535
2174
  static ɵfac: i0.ɵɵFactoryDeclaration<FlagIconComponent, never>;
1536
2175
  static ɵcmp: i0.ɵɵComponentDeclaration<FlagIconComponent, "ea-icon-flag", never, {}, {}, never, never, true, never>;
1537
2176
  }
1538
2177
 
1539
- declare class FolderIconComponent {
2178
+ declare class FolderIconComponent extends IconComponentBase {
2179
+ static readonly slug = "folder";
2180
+ static readonly category: IconCategory;
2181
+ static readonly tags: ReadonlyArray<string>;
1540
2182
  static ɵfac: i0.ɵɵFactoryDeclaration<FolderIconComponent, never>;
1541
2183
  static ɵcmp: i0.ɵɵComponentDeclaration<FolderIconComponent, "ea-icon-folder", never, {}, {}, never, never, true, never>;
1542
2184
  }
1543
2185
 
1544
- declare class FrownIconComponent {
2186
+ declare class FolderMinusIconComponent extends IconComponentBase {
2187
+ static readonly slug = "folder-minus";
2188
+ static readonly category: IconCategory;
2189
+ static readonly tags: ReadonlyArray<string>;
2190
+ static ɵfac: i0.ɵɵFactoryDeclaration<FolderMinusIconComponent, never>;
2191
+ static ɵcmp: i0.ɵɵComponentDeclaration<FolderMinusIconComponent, "ea-icon-folder-minus", never, {}, {}, never, never, true, never>;
2192
+ }
2193
+
2194
+ declare class FolderPlusIconComponent extends IconComponentBase {
2195
+ static readonly slug = "folder-plus";
2196
+ static readonly category: IconCategory;
2197
+ static readonly tags: ReadonlyArray<string>;
2198
+ static ɵfac: i0.ɵɵFactoryDeclaration<FolderPlusIconComponent, never>;
2199
+ static ɵcmp: i0.ɵɵComponentDeclaration<FolderPlusIconComponent, "ea-icon-folder-plus", never, {}, {}, never, never, true, never>;
2200
+ }
2201
+
2202
+ declare class FramerIconComponent extends IconComponentBase {
2203
+ static readonly slug = "framer";
2204
+ static readonly category: IconCategory;
2205
+ static readonly tags: ReadonlyArray<string>;
2206
+ static ɵfac: i0.ɵɵFactoryDeclaration<FramerIconComponent, never>;
2207
+ static ɵcmp: i0.ɵɵComponentDeclaration<FramerIconComponent, "ea-icon-framer", never, {}, {}, never, never, true, never>;
2208
+ }
2209
+
2210
+ declare class FrownIconComponent extends IconComponentBase {
2211
+ static readonly slug = "frown";
2212
+ static readonly category: IconCategory;
2213
+ static readonly tags: ReadonlyArray<string>;
1545
2214
  static ɵfac: i0.ɵɵFactoryDeclaration<FrownIconComponent, never>;
1546
2215
  static ɵcmp: i0.ɵɵComponentDeclaration<FrownIconComponent, "ea-icon-frown", never, {}, {}, never, never, true, never>;
1547
2216
  }
1548
2217
 
1549
- declare class GiftIconComponent {
2218
+ declare class GiftIconComponent extends IconComponentBase {
2219
+ static readonly slug = "gift";
2220
+ static readonly category: IconCategory;
2221
+ static readonly tags: ReadonlyArray<string>;
1550
2222
  static ɵfac: i0.ɵɵFactoryDeclaration<GiftIconComponent, never>;
1551
2223
  static ɵcmp: i0.ɵɵComponentDeclaration<GiftIconComponent, "ea-icon-gift", never, {}, {}, never, never, true, never>;
1552
2224
  }
1553
2225
 
1554
- declare class GitBranchIconComponent {
2226
+ declare class GitBranchIconComponent extends IconComponentBase {
2227
+ static readonly slug = "git-branch";
2228
+ static readonly category: IconCategory;
2229
+ static readonly tags: ReadonlyArray<string>;
1555
2230
  static ɵfac: i0.ɵɵFactoryDeclaration<GitBranchIconComponent, never>;
1556
2231
  static ɵcmp: i0.ɵɵComponentDeclaration<GitBranchIconComponent, "ea-icon-git-branch", never, {}, {}, never, never, true, never>;
1557
2232
  }
1558
2233
 
1559
- declare class GitCommitIconComponent {
2234
+ declare class GitCommitIconComponent extends IconComponentBase {
2235
+ static readonly slug = "git-commit";
2236
+ static readonly category: IconCategory;
2237
+ static readonly tags: ReadonlyArray<string>;
1560
2238
  static ɵfac: i0.ɵɵFactoryDeclaration<GitCommitIconComponent, never>;
1561
2239
  static ɵcmp: i0.ɵɵComponentDeclaration<GitCommitIconComponent, "ea-icon-git-commit", never, {}, {}, never, never, true, never>;
1562
2240
  }
1563
2241
 
1564
- declare class GitMergeIconComponent {
2242
+ declare class GitMergeIconComponent extends IconComponentBase {
2243
+ static readonly slug = "git-merge";
2244
+ static readonly category: IconCategory;
2245
+ static readonly tags: ReadonlyArray<string>;
1565
2246
  static ɵfac: i0.ɵɵFactoryDeclaration<GitMergeIconComponent, never>;
1566
2247
  static ɵcmp: i0.ɵɵComponentDeclaration<GitMergeIconComponent, "ea-icon-git-merge", never, {}, {}, never, never, true, never>;
1567
2248
  }
1568
2249
 
1569
- declare class GitPullRequestIconComponent {
2250
+ declare class GitPullRequestIconComponent extends IconComponentBase {
2251
+ static readonly slug = "git-pull-request";
2252
+ static readonly category: IconCategory;
2253
+ static readonly tags: ReadonlyArray<string>;
1570
2254
  static ɵfac: i0.ɵɵFactoryDeclaration<GitPullRequestIconComponent, never>;
1571
2255
  static ɵcmp: i0.ɵɵComponentDeclaration<GitPullRequestIconComponent, "ea-icon-git-pull-request", never, {}, {}, never, never, true, never>;
1572
2256
  }
1573
2257
 
1574
- declare class GithubIconComponent {
1575
- readonly brand: i0.InputSignal<boolean>;
2258
+ /**
2259
+ * GitHub icon (Feather outline).
2260
+ *
2261
+ * @remarks
2262
+ * Prior to v1.4 this slug rendered Eagami's brand-filled GitHub mark. v1.4
2263
+ * aligns the canonical slug with Feather Icons, so `GithubIconComponent` now
2264
+ * renders Feather's outline. The brand-filled mark that previously shipped
2265
+ * here has moved to `<ea-icon-github-2>` / `Github2IconComponent`.
2266
+ */
2267
+ declare class GithubIconComponent extends IconComponentBase {
2268
+ static readonly slug = "github";
2269
+ static readonly category: IconCategory;
2270
+ static readonly isBrand = true;
2271
+ static readonly tags: ReadonlyArray<string>;
1576
2272
  static ɵfac: i0.ɵɵFactoryDeclaration<GithubIconComponent, never>;
1577
- static ɵcmp: i0.ɵɵComponentDeclaration<GithubIconComponent, "ea-icon-github", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2273
+ static ɵcmp: i0.ɵɵComponentDeclaration<GithubIconComponent, "ea-icon-github", never, {}, {}, never, never, true, never>;
1578
2274
  }
1579
2275
 
1580
- declare class GitlabIconComponent {
2276
+ /**
2277
+ * GitHub brand mark (Eagami brand-filled).
2278
+ *
2279
+ * @remarks
2280
+ * Up to v1.3 this design shipped as `GithubIconComponent` at slug
2281
+ * `ea-icon-github`. v1.4 reassigns the canonical slug to Feather's outline
2282
+ * and moves the brand-filled mark here. Set the `brand` input to render in
2283
+ * the official brand colour.
2284
+ */
2285
+ declare class Github2IconComponent extends IconComponentBase {
2286
+ static readonly slug = "github-2";
2287
+ static readonly category: IconCategory;
2288
+ static readonly isBrand = true;
2289
+ static readonly tags: ReadonlyArray<string>;
2290
+ readonly brand: i0.InputSignal<boolean>;
2291
+ static ɵfac: i0.ɵɵFactoryDeclaration<Github2IconComponent, never>;
2292
+ static ɵcmp: i0.ɵɵComponentDeclaration<Github2IconComponent, "ea-icon-github-2", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2293
+ }
2294
+
2295
+ declare class GitlabIconComponent extends IconComponentBase {
2296
+ static readonly slug = "gitlab";
2297
+ static readonly category: IconCategory;
2298
+ static readonly isBrand = true;
2299
+ static readonly tags: ReadonlyArray<string>;
1581
2300
  readonly brand: i0.InputSignal<boolean>;
1582
2301
  static ɵfac: i0.ɵɵFactoryDeclaration<GitlabIconComponent, never>;
1583
2302
  static ɵcmp: i0.ɵɵComponentDeclaration<GitlabIconComponent, "ea-icon-gitlab", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1584
2303
  }
1585
2304
 
1586
- declare class GlobeIconComponent {
2305
+ declare class GlobeIconComponent extends IconComponentBase {
2306
+ static readonly slug = "globe";
2307
+ static readonly category: IconCategory;
2308
+ static readonly tags: ReadonlyArray<string>;
1587
2309
  static ɵfac: i0.ɵɵFactoryDeclaration<GlobeIconComponent, never>;
1588
2310
  static ɵcmp: i0.ɵɵComponentDeclaration<GlobeIconComponent, "ea-icon-globe", never, {}, {}, never, never, true, never>;
1589
2311
  }
1590
2312
 
1591
- declare class GoogleIconComponent {
2313
+ declare class GoogleIconComponent extends IconComponentBase {
2314
+ static readonly slug = "google";
2315
+ static readonly category: IconCategory;
2316
+ static readonly isBrand = true;
2317
+ static readonly tags: ReadonlyArray<string>;
1592
2318
  static ɵfac: i0.ɵɵFactoryDeclaration<GoogleIconComponent, never>;
1593
2319
  static ɵcmp: i0.ɵɵComponentDeclaration<GoogleIconComponent, "ea-icon-google", never, {}, {}, never, never, true, never>;
1594
2320
  }
1595
2321
 
1596
- declare class GridIconComponent {
2322
+ declare class GridIconComponent extends IconComponentBase {
2323
+ static readonly slug = "grid";
2324
+ static readonly category: IconCategory;
2325
+ static readonly tags: ReadonlyArray<string>;
1597
2326
  static ɵfac: i0.ɵɵFactoryDeclaration<GridIconComponent, never>;
1598
2327
  static ɵcmp: i0.ɵɵComponentDeclaration<GridIconComponent, "ea-icon-grid", never, {}, {}, never, never, true, never>;
1599
2328
  }
1600
2329
 
1601
- declare class HardDriveIconComponent {
2330
+ declare class HardDriveIconComponent extends IconComponentBase {
2331
+ static readonly slug = "hard-drive";
2332
+ static readonly category: IconCategory;
2333
+ static readonly tags: ReadonlyArray<string>;
1602
2334
  static ɵfac: i0.ɵɵFactoryDeclaration<HardDriveIconComponent, never>;
1603
2335
  static ɵcmp: i0.ɵɵComponentDeclaration<HardDriveIconComponent, "ea-icon-hard-drive", never, {}, {}, never, never, true, never>;
1604
2336
  }
1605
2337
 
1606
- declare class HashIconComponent {
2338
+ declare class HashIconComponent extends IconComponentBase {
2339
+ static readonly slug = "hash";
2340
+ static readonly category: IconCategory;
2341
+ static readonly tags: ReadonlyArray<string>;
1607
2342
  static ɵfac: i0.ɵɵFactoryDeclaration<HashIconComponent, never>;
1608
2343
  static ɵcmp: i0.ɵɵComponentDeclaration<HashIconComponent, "ea-icon-hash", never, {}, {}, never, never, true, never>;
1609
2344
  }
1610
2345
 
1611
- declare class HeadphonesIconComponent {
2346
+ declare class HeadphonesIconComponent extends IconComponentBase {
2347
+ static readonly slug = "headphones";
2348
+ static readonly category: IconCategory;
2349
+ static readonly tags: ReadonlyArray<string>;
1612
2350
  static ɵfac: i0.ɵɵFactoryDeclaration<HeadphonesIconComponent, never>;
1613
2351
  static ɵcmp: i0.ɵɵComponentDeclaration<HeadphonesIconComponent, "ea-icon-headphones", never, {}, {}, never, never, true, never>;
1614
2352
  }
1615
2353
 
1616
- declare class HeartIconComponent {
2354
+ declare class HeartIconComponent extends IconComponentBase {
2355
+ static readonly slug = "heart";
2356
+ static readonly category: IconCategory;
2357
+ static readonly tags: ReadonlyArray<string>;
1617
2358
  static ɵfac: i0.ɵɵFactoryDeclaration<HeartIconComponent, never>;
1618
2359
  static ɵcmp: i0.ɵɵComponentDeclaration<HeartIconComponent, "ea-icon-heart", never, {}, {}, never, never, true, never>;
1619
2360
  }
1620
2361
 
1621
- declare class HelpCircleIconComponent {
2362
+ declare class HelpCircleIconComponent extends IconComponentBase {
2363
+ static readonly slug = "help-circle";
2364
+ static readonly category: IconCategory;
2365
+ static readonly tags: ReadonlyArray<string>;
1622
2366
  static ɵfac: i0.ɵɵFactoryDeclaration<HelpCircleIconComponent, never>;
1623
2367
  static ɵcmp: i0.ɵɵComponentDeclaration<HelpCircleIconComponent, "ea-icon-help-circle", never, {}, {}, never, never, true, never>;
1624
2368
  }
1625
2369
 
1626
- declare class HomeIconComponent {
2370
+ declare class HeptagonIconComponent extends IconComponentBase {
2371
+ static readonly slug = "heptagon";
2372
+ static readonly category: IconCategory;
2373
+ static readonly tags: ReadonlyArray<string>;
2374
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeptagonIconComponent, never>;
2375
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeptagonIconComponent, "ea-icon-heptagon", never, {}, {}, never, never, true, never>;
2376
+ }
2377
+
2378
+ declare class HexagonIconComponent extends IconComponentBase {
2379
+ static readonly slug = "hexagon";
2380
+ static readonly category: IconCategory;
2381
+ static readonly tags: ReadonlyArray<string>;
2382
+ static ɵfac: i0.ɵɵFactoryDeclaration<HexagonIconComponent, never>;
2383
+ static ɵcmp: i0.ɵɵComponentDeclaration<HexagonIconComponent, "ea-icon-hexagon", never, {}, {}, never, never, true, never>;
2384
+ }
2385
+
2386
+ declare class HomeIconComponent extends IconComponentBase {
2387
+ static readonly slug = "home";
2388
+ static readonly category: IconCategory;
2389
+ static readonly tags: ReadonlyArray<string>;
1627
2390
  static ɵfac: i0.ɵɵFactoryDeclaration<HomeIconComponent, never>;
1628
2391
  static ɵcmp: i0.ɵɵComponentDeclaration<HomeIconComponent, "ea-icon-home", never, {}, {}, never, never, true, never>;
1629
2392
  }
1630
2393
 
1631
- declare class ImageIconComponent {
2394
+ declare class ImageIconComponent extends IconComponentBase {
2395
+ static readonly slug = "image";
2396
+ static readonly category: IconCategory;
2397
+ static readonly tags: ReadonlyArray<string>;
1632
2398
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageIconComponent, never>;
1633
2399
  static ɵcmp: i0.ɵɵComponentDeclaration<ImageIconComponent, "ea-icon-image", never, {}, {}, never, never, true, never>;
1634
2400
  }
1635
2401
 
1636
- declare class InboxIconComponent {
2402
+ declare class InboxIconComponent extends IconComponentBase {
2403
+ static readonly slug = "inbox";
2404
+ static readonly category: IconCategory;
2405
+ static readonly tags: ReadonlyArray<string>;
1637
2406
  static ɵfac: i0.ɵɵFactoryDeclaration<InboxIconComponent, never>;
1638
2407
  static ɵcmp: i0.ɵɵComponentDeclaration<InboxIconComponent, "ea-icon-inbox", never, {}, {}, never, never, true, never>;
1639
2408
  }
1640
2409
 
1641
- declare class InfoIconComponent {
2410
+ declare class InfoIconComponent extends IconComponentBase {
2411
+ static readonly slug = "info";
2412
+ static readonly category: IconCategory;
2413
+ static readonly tags: ReadonlyArray<string>;
1642
2414
  static ɵfac: i0.ɵɵFactoryDeclaration<InfoIconComponent, never>;
1643
2415
  static ɵcmp: i0.ɵɵComponentDeclaration<InfoIconComponent, "ea-icon-info", never, {}, {}, never, never, true, never>;
1644
2416
  }
1645
2417
 
1646
- declare class ItalicIconComponent {
2418
+ declare class InstagramIconComponent extends IconComponentBase {
2419
+ static readonly slug = "instagram";
2420
+ static readonly category: IconCategory;
2421
+ static readonly tags: ReadonlyArray<string>;
2422
+ static ɵfac: i0.ɵɵFactoryDeclaration<InstagramIconComponent, never>;
2423
+ static ɵcmp: i0.ɵɵComponentDeclaration<InstagramIconComponent, "ea-icon-instagram", never, {}, {}, never, never, true, never>;
2424
+ }
2425
+
2426
+ declare class ItalicIconComponent extends IconComponentBase {
2427
+ static readonly slug = "italic";
2428
+ static readonly category: IconCategory;
2429
+ static readonly tags: ReadonlyArray<string>;
1647
2430
  static ɵfac: i0.ɵɵFactoryDeclaration<ItalicIconComponent, never>;
1648
2431
  static ɵcmp: i0.ɵɵComponentDeclaration<ItalicIconComponent, "ea-icon-italic", never, {}, {}, never, never, true, never>;
1649
2432
  }
1650
2433
 
1651
- declare class KeyIconComponent {
2434
+ declare class KeyIconComponent extends IconComponentBase {
2435
+ static readonly slug = "key";
2436
+ static readonly category: IconCategory;
2437
+ static readonly tags: ReadonlyArray<string>;
1652
2438
  static ɵfac: i0.ɵɵFactoryDeclaration<KeyIconComponent, never>;
1653
2439
  static ɵcmp: i0.ɵɵComponentDeclaration<KeyIconComponent, "ea-icon-key", never, {}, {}, never, never, true, never>;
1654
2440
  }
1655
2441
 
1656
- declare class KubernetesIconComponent {
2442
+ declare class KubernetesIconComponent extends IconComponentBase {
2443
+ static readonly slug = "kubernetes";
2444
+ static readonly category: IconCategory;
2445
+ static readonly isBrand = true;
2446
+ static readonly tags: ReadonlyArray<string>;
1657
2447
  readonly brand: i0.InputSignal<boolean>;
1658
2448
  static ɵfac: i0.ɵɵFactoryDeclaration<KubernetesIconComponent, never>;
1659
2449
  static ɵcmp: i0.ɵɵComponentDeclaration<KubernetesIconComponent, "ea-icon-kubernetes", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1660
2450
  }
1661
2451
 
1662
- declare class LayersIconComponent {
2452
+ declare class LampIconComponent extends IconComponentBase {
2453
+ static readonly slug = "lamp";
2454
+ static readonly category: IconCategory;
2455
+ static readonly tags: ReadonlyArray<string>;
2456
+ static ɵfac: i0.ɵɵFactoryDeclaration<LampIconComponent, never>;
2457
+ static ɵcmp: i0.ɵɵComponentDeclaration<LampIconComponent, "ea-icon-lamp", never, {}, {}, never, never, true, never>;
2458
+ }
2459
+
2460
+ declare class LayersIconComponent extends IconComponentBase {
2461
+ static readonly slug = "layers";
2462
+ static readonly category: IconCategory;
2463
+ static readonly tags: ReadonlyArray<string>;
1663
2464
  static ɵfac: i0.ɵɵFactoryDeclaration<LayersIconComponent, never>;
1664
2465
  static ɵcmp: i0.ɵɵComponentDeclaration<LayersIconComponent, "ea-icon-layers", never, {}, {}, never, never, true, never>;
1665
2466
  }
1666
2467
 
1667
- declare class LayoutIconComponent {
2468
+ declare class LayoutIconComponent extends IconComponentBase {
2469
+ static readonly slug = "layout";
2470
+ static readonly category: IconCategory;
2471
+ static readonly tags: ReadonlyArray<string>;
1668
2472
  static ɵfac: i0.ɵɵFactoryDeclaration<LayoutIconComponent, never>;
1669
2473
  static ɵcmp: i0.ɵɵComponentDeclaration<LayoutIconComponent, "ea-icon-layout", never, {}, {}, never, never, true, never>;
1670
2474
  }
1671
2475
 
1672
- declare class LifeBuoyIconComponent {
2476
+ declare class LifeBuoyIconComponent extends IconComponentBase {
2477
+ static readonly slug = "life-buoy";
2478
+ static readonly category: IconCategory;
2479
+ static readonly tags: ReadonlyArray<string>;
1673
2480
  static ɵfac: i0.ɵɵFactoryDeclaration<LifeBuoyIconComponent, never>;
1674
2481
  static ɵcmp: i0.ɵɵComponentDeclaration<LifeBuoyIconComponent, "ea-icon-life-buoy", never, {}, {}, never, never, true, never>;
1675
2482
  }
1676
2483
 
1677
- declare class LinkIconComponent {
2484
+ declare class LinkIconComponent extends IconComponentBase {
2485
+ static readonly slug = "link";
2486
+ static readonly category: IconCategory;
2487
+ static readonly tags: ReadonlyArray<string>;
1678
2488
  static ɵfac: i0.ɵɵFactoryDeclaration<LinkIconComponent, never>;
1679
2489
  static ɵcmp: i0.ɵɵComponentDeclaration<LinkIconComponent, "ea-icon-link", never, {}, {}, never, never, true, never>;
1680
2490
  }
1681
2491
 
1682
- declare class Link2IconComponent {
2492
+ declare class Link2IconComponent extends IconComponentBase {
2493
+ static readonly slug = "link-2";
2494
+ static readonly category: IconCategory;
2495
+ static readonly tags: ReadonlyArray<string>;
1683
2496
  static ɵfac: i0.ɵɵFactoryDeclaration<Link2IconComponent, never>;
1684
2497
  static ɵcmp: i0.ɵɵComponentDeclaration<Link2IconComponent, "ea-icon-link-2", never, {}, {}, never, never, true, never>;
1685
2498
  }
1686
2499
 
1687
- declare class LinkedinIconComponent {
1688
- readonly brand: i0.InputSignal<boolean>;
2500
+ /**
2501
+ * LinkedIn icon (Feather outline).
2502
+ *
2503
+ * @remarks
2504
+ * Prior to v1.4 this slug rendered Eagami's brand-filled LinkedIn mark. v1.4
2505
+ * aligns the canonical slug with Feather Icons, so `LinkedinIconComponent` now
2506
+ * renders Feather's outline. The brand-filled mark that previously shipped
2507
+ * here has moved to `<ea-icon-linkedin-2>` / `Linkedin2IconComponent`.
2508
+ */
2509
+ declare class LinkedinIconComponent extends IconComponentBase {
2510
+ static readonly slug = "linkedin";
2511
+ static readonly category: IconCategory;
2512
+ static readonly isBrand = true;
2513
+ static readonly tags: ReadonlyArray<string>;
1689
2514
  static ɵfac: i0.ɵɵFactoryDeclaration<LinkedinIconComponent, never>;
1690
- static ɵcmp: i0.ɵɵComponentDeclaration<LinkedinIconComponent, "ea-icon-linkedin", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2515
+ static ɵcmp: i0.ɵɵComponentDeclaration<LinkedinIconComponent, "ea-icon-linkedin", never, {}, {}, never, never, true, never>;
2516
+ }
2517
+
2518
+ /**
2519
+ * LinkedIn brand mark (Eagami brand-filled).
2520
+ *
2521
+ * @remarks
2522
+ * Up to v1.3 this design shipped as `LinkedinIconComponent` at slug
2523
+ * `ea-icon-linkedin`. v1.4 reassigns the canonical slug to Feather's outline
2524
+ * and moves the brand-filled mark here. Set the `brand` input to render in
2525
+ * the official brand colour.
2526
+ */
2527
+ declare class Linkedin2IconComponent extends IconComponentBase {
2528
+ static readonly slug = "linkedin-2";
2529
+ static readonly category: IconCategory;
2530
+ static readonly isBrand = true;
2531
+ static readonly tags: ReadonlyArray<string>;
2532
+ readonly brand: i0.InputSignal<boolean>;
2533
+ static ɵfac: i0.ɵɵFactoryDeclaration<Linkedin2IconComponent, never>;
2534
+ static ɵcmp: i0.ɵɵComponentDeclaration<Linkedin2IconComponent, "ea-icon-linkedin-2", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1691
2535
  }
1692
2536
 
1693
- declare class ListIconComponent {
2537
+ declare class ListIconComponent extends IconComponentBase {
2538
+ static readonly slug = "list";
2539
+ static readonly category: IconCategory;
2540
+ static readonly tags: ReadonlyArray<string>;
1694
2541
  static ɵfac: i0.ɵɵFactoryDeclaration<ListIconComponent, never>;
1695
2542
  static ɵcmp: i0.ɵɵComponentDeclaration<ListIconComponent, "ea-icon-list", never, {}, {}, never, never, true, never>;
1696
2543
  }
1697
2544
 
1698
- declare class LoaderIconComponent {
2545
+ declare class LoaderIconComponent extends IconComponentBase {
2546
+ static readonly slug = "loader";
2547
+ static readonly category: IconCategory;
2548
+ static readonly tags: ReadonlyArray<string>;
1699
2549
  static ɵfac: i0.ɵɵFactoryDeclaration<LoaderIconComponent, never>;
1700
2550
  static ɵcmp: i0.ɵɵComponentDeclaration<LoaderIconComponent, "ea-icon-loader", never, {}, {}, never, never, true, never>;
1701
2551
  }
1702
2552
 
1703
- declare class LockIconComponent {
2553
+ declare class LockIconComponent extends IconComponentBase {
2554
+ static readonly slug = "lock";
2555
+ static readonly category: IconCategory;
2556
+ static readonly tags: ReadonlyArray<string>;
1704
2557
  static ɵfac: i0.ɵɵFactoryDeclaration<LockIconComponent, never>;
1705
2558
  static ɵcmp: i0.ɵɵComponentDeclaration<LockIconComponent, "ea-icon-lock", never, {}, {}, never, never, true, never>;
1706
2559
  }
1707
2560
 
1708
- declare class LogInIconComponent {
2561
+ declare class LogInIconComponent extends IconComponentBase {
2562
+ static readonly slug = "log-in";
2563
+ static readonly category: IconCategory;
2564
+ static readonly tags: ReadonlyArray<string>;
1709
2565
  static ɵfac: i0.ɵɵFactoryDeclaration<LogInIconComponent, never>;
1710
2566
  static ɵcmp: i0.ɵɵComponentDeclaration<LogInIconComponent, "ea-icon-log-in", never, {}, {}, never, never, true, never>;
1711
2567
  }
1712
2568
 
1713
- declare class LogOutIconComponent {
2569
+ declare class LogOutIconComponent extends IconComponentBase {
2570
+ static readonly slug = "log-out";
2571
+ static readonly category: IconCategory;
2572
+ static readonly tags: ReadonlyArray<string>;
1714
2573
  static ɵfac: i0.ɵɵFactoryDeclaration<LogOutIconComponent, never>;
1715
2574
  static ɵcmp: i0.ɵɵComponentDeclaration<LogOutIconComponent, "ea-icon-log-out", never, {}, {}, never, never, true, never>;
1716
2575
  }
1717
2576
 
1718
- declare class MailIconComponent {
2577
+ declare class MailIconComponent extends IconComponentBase {
2578
+ static readonly slug = "mail";
2579
+ static readonly category: IconCategory;
2580
+ static readonly tags: ReadonlyArray<string>;
1719
2581
  static ɵfac: i0.ɵɵFactoryDeclaration<MailIconComponent, never>;
1720
2582
  static ɵcmp: i0.ɵɵComponentDeclaration<MailIconComponent, "ea-icon-mail", never, {}, {}, never, never, true, never>;
1721
2583
  }
1722
2584
 
1723
- declare class MapIconComponent {
2585
+ declare class MapIconComponent extends IconComponentBase {
2586
+ static readonly slug = "map";
2587
+ static readonly category: IconCategory;
2588
+ static readonly tags: ReadonlyArray<string>;
1724
2589
  static ɵfac: i0.ɵɵFactoryDeclaration<MapIconComponent, never>;
1725
2590
  static ɵcmp: i0.ɵɵComponentDeclaration<MapIconComponent, "ea-icon-map", never, {}, {}, never, never, true, never>;
1726
2591
  }
1727
2592
 
1728
- declare class MapPinIconComponent {
2593
+ declare class MapPinIconComponent extends IconComponentBase {
2594
+ static readonly slug = "map-pin";
2595
+ static readonly category: IconCategory;
2596
+ static readonly tags: ReadonlyArray<string>;
1729
2597
  static ɵfac: i0.ɵɵFactoryDeclaration<MapPinIconComponent, never>;
1730
2598
  static ɵcmp: i0.ɵɵComponentDeclaration<MapPinIconComponent, "ea-icon-map-pin", never, {}, {}, never, never, true, never>;
1731
2599
  }
1732
2600
 
1733
- declare class MastercardIconComponent {
2601
+ declare class MastercardIconComponent extends IconComponentBase {
2602
+ static readonly slug = "mastercard";
2603
+ static readonly category: IconCategory;
2604
+ static readonly isBrand = true;
2605
+ static readonly tags: ReadonlyArray<string>;
1734
2606
  static ɵfac: i0.ɵɵFactoryDeclaration<MastercardIconComponent, never>;
1735
2607
  static ɵcmp: i0.ɵɵComponentDeclaration<MastercardIconComponent, "ea-icon-mastercard", never, {}, {}, never, never, true, never>;
1736
2608
  }
1737
2609
 
1738
- declare class MaximizeIconComponent {
2610
+ declare class MaximizeIconComponent extends IconComponentBase {
2611
+ static readonly slug = "maximize";
2612
+ static readonly category: IconCategory;
2613
+ static readonly tags: ReadonlyArray<string>;
1739
2614
  static ɵfac: i0.ɵɵFactoryDeclaration<MaximizeIconComponent, never>;
1740
2615
  static ɵcmp: i0.ɵɵComponentDeclaration<MaximizeIconComponent, "ea-icon-maximize", never, {}, {}, never, never, true, never>;
1741
2616
  }
1742
2617
 
1743
- declare class Maximize2IconComponent {
2618
+ declare class Maximize2IconComponent extends IconComponentBase {
2619
+ static readonly slug = "maximize-2";
2620
+ static readonly category: IconCategory;
2621
+ static readonly tags: ReadonlyArray<string>;
1744
2622
  static ɵfac: i0.ɵɵFactoryDeclaration<Maximize2IconComponent, never>;
1745
2623
  static ɵcmp: i0.ɵɵComponentDeclaration<Maximize2IconComponent, "ea-icon-maximize-2", never, {}, {}, never, never, true, never>;
1746
2624
  }
1747
2625
 
1748
- declare class MehIconComponent {
2626
+ declare class MehIconComponent extends IconComponentBase {
2627
+ static readonly slug = "meh";
2628
+ static readonly category: IconCategory;
2629
+ static readonly tags: ReadonlyArray<string>;
1749
2630
  static ɵfac: i0.ɵɵFactoryDeclaration<MehIconComponent, never>;
1750
2631
  static ɵcmp: i0.ɵɵComponentDeclaration<MehIconComponent, "ea-icon-meh", never, {}, {}, never, never, true, never>;
1751
2632
  }
1752
2633
 
1753
- declare class MenuIconComponent {
2634
+ declare class MenuIconComponent extends IconComponentBase {
2635
+ static readonly slug = "menu";
2636
+ static readonly category: IconCategory;
2637
+ static readonly tags: ReadonlyArray<string>;
1754
2638
  static ɵfac: i0.ɵɵFactoryDeclaration<MenuIconComponent, never>;
1755
2639
  static ɵcmp: i0.ɵɵComponentDeclaration<MenuIconComponent, "ea-icon-menu", never, {}, {}, never, never, true, never>;
1756
2640
  }
1757
2641
 
1758
- declare class MessageCircleIconComponent {
2642
+ declare class MessageCircleIconComponent extends IconComponentBase {
2643
+ static readonly slug = "message-circle";
2644
+ static readonly category: IconCategory;
2645
+ static readonly tags: ReadonlyArray<string>;
1759
2646
  static ɵfac: i0.ɵɵFactoryDeclaration<MessageCircleIconComponent, never>;
1760
2647
  static ɵcmp: i0.ɵɵComponentDeclaration<MessageCircleIconComponent, "ea-icon-message-circle", never, {}, {}, never, never, true, never>;
1761
2648
  }
1762
2649
 
1763
- declare class MessageSquareIconComponent {
2650
+ declare class MessageSquareIconComponent extends IconComponentBase {
2651
+ static readonly slug = "message-square";
2652
+ static readonly category: IconCategory;
2653
+ static readonly tags: ReadonlyArray<string>;
1764
2654
  static ɵfac: i0.ɵɵFactoryDeclaration<MessageSquareIconComponent, never>;
1765
2655
  static ɵcmp: i0.ɵɵComponentDeclaration<MessageSquareIconComponent, "ea-icon-message-square", never, {}, {}, never, never, true, never>;
1766
2656
  }
1767
2657
 
1768
- declare class MicIconComponent {
2658
+ declare class MicIconComponent extends IconComponentBase {
2659
+ static readonly slug = "mic";
2660
+ static readonly category: IconCategory;
2661
+ static readonly tags: ReadonlyArray<string>;
1769
2662
  static ɵfac: i0.ɵɵFactoryDeclaration<MicIconComponent, never>;
1770
2663
  static ɵcmp: i0.ɵɵComponentDeclaration<MicIconComponent, "ea-icon-mic", never, {}, {}, never, never, true, never>;
1771
2664
  }
1772
2665
 
1773
- declare class MicOffIconComponent {
2666
+ declare class MicOffIconComponent extends IconComponentBase {
2667
+ static readonly slug = "mic-off";
2668
+ static readonly category: IconCategory;
2669
+ static readonly tags: ReadonlyArray<string>;
1774
2670
  static ɵfac: i0.ɵɵFactoryDeclaration<MicOffIconComponent, never>;
1775
2671
  static ɵcmp: i0.ɵɵComponentDeclaration<MicOffIconComponent, "ea-icon-mic-off", never, {}, {}, never, never, true, never>;
1776
2672
  }
1777
2673
 
1778
- declare class MicrosoftIconComponent {
2674
+ declare class MicrosoftIconComponent extends IconComponentBase {
2675
+ static readonly slug = "microsoft";
2676
+ static readonly category: IconCategory;
2677
+ static readonly isBrand = true;
2678
+ static readonly tags: ReadonlyArray<string>;
1779
2679
  static ɵfac: i0.ɵɵFactoryDeclaration<MicrosoftIconComponent, never>;
1780
2680
  static ɵcmp: i0.ɵɵComponentDeclaration<MicrosoftIconComponent, "ea-icon-microsoft", never, {}, {}, never, never, true, never>;
1781
2681
  }
1782
2682
 
1783
- declare class MinimizeIconComponent {
2683
+ declare class MinimizeIconComponent extends IconComponentBase {
2684
+ static readonly slug = "minimize";
2685
+ static readonly category: IconCategory;
2686
+ static readonly tags: ReadonlyArray<string>;
1784
2687
  static ɵfac: i0.ɵɵFactoryDeclaration<MinimizeIconComponent, never>;
1785
2688
  static ɵcmp: i0.ɵɵComponentDeclaration<MinimizeIconComponent, "ea-icon-minimize", never, {}, {}, never, never, true, never>;
1786
2689
  }
1787
2690
 
1788
- declare class Minimize2IconComponent {
2691
+ declare class Minimize2IconComponent extends IconComponentBase {
2692
+ static readonly slug = "minimize-2";
2693
+ static readonly category: IconCategory;
2694
+ static readonly tags: ReadonlyArray<string>;
1789
2695
  static ɵfac: i0.ɵɵFactoryDeclaration<Minimize2IconComponent, never>;
1790
2696
  static ɵcmp: i0.ɵɵComponentDeclaration<Minimize2IconComponent, "ea-icon-minimize-2", never, {}, {}, never, never, true, never>;
1791
2697
  }
1792
2698
 
1793
- declare class MinusIconComponent {
2699
+ declare class MinusIconComponent extends IconComponentBase {
2700
+ static readonly slug = "minus";
2701
+ static readonly category: IconCategory;
2702
+ static readonly tags: ReadonlyArray<string>;
1794
2703
  static ɵfac: i0.ɵɵFactoryDeclaration<MinusIconComponent, never>;
1795
2704
  static ɵcmp: i0.ɵɵComponentDeclaration<MinusIconComponent, "ea-icon-minus", never, {}, {}, never, never, true, never>;
1796
2705
  }
1797
2706
 
1798
- declare class MinusCircleIconComponent {
2707
+ declare class MinusCircleIconComponent extends IconComponentBase {
2708
+ static readonly slug = "minus-circle";
2709
+ static readonly category: IconCategory;
2710
+ static readonly tags: ReadonlyArray<string>;
1799
2711
  static ɵfac: i0.ɵɵFactoryDeclaration<MinusCircleIconComponent, never>;
1800
2712
  static ɵcmp: i0.ɵɵComponentDeclaration<MinusCircleIconComponent, "ea-icon-minus-circle", never, {}, {}, never, never, true, never>;
1801
2713
  }
1802
2714
 
1803
- declare class MinusSquareIconComponent {
2715
+ declare class MinusSquareIconComponent extends IconComponentBase {
2716
+ static readonly slug = "minus-square";
2717
+ static readonly category: IconCategory;
2718
+ static readonly tags: ReadonlyArray<string>;
1804
2719
  static ɵfac: i0.ɵɵFactoryDeclaration<MinusSquareIconComponent, never>;
1805
2720
  static ɵcmp: i0.ɵɵComponentDeclaration<MinusSquareIconComponent, "ea-icon-minus-square", never, {}, {}, never, never, true, never>;
1806
2721
  }
1807
2722
 
1808
- declare class MongodbIconComponent {
2723
+ declare class MongodbIconComponent extends IconComponentBase {
2724
+ static readonly slug = "mongodb";
2725
+ static readonly category: IconCategory;
2726
+ static readonly isBrand = true;
2727
+ static readonly tags: ReadonlyArray<string>;
1809
2728
  readonly brand: i0.InputSignal<boolean>;
1810
2729
  static ɵfac: i0.ɵɵFactoryDeclaration<MongodbIconComponent, never>;
1811
2730
  static ɵcmp: i0.ɵɵComponentDeclaration<MongodbIconComponent, "ea-icon-mongodb", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1812
2731
  }
1813
2732
 
1814
- declare class MonitorIconComponent {
2733
+ declare class MonitorIconComponent extends IconComponentBase {
2734
+ static readonly slug = "monitor";
2735
+ static readonly category: IconCategory;
2736
+ static readonly tags: ReadonlyArray<string>;
1815
2737
  static ɵfac: i0.ɵɵFactoryDeclaration<MonitorIconComponent, never>;
1816
2738
  static ɵcmp: i0.ɵɵComponentDeclaration<MonitorIconComponent, "ea-icon-monitor", never, {}, {}, never, never, true, never>;
1817
2739
  }
1818
2740
 
1819
- declare class MoonIconComponent {
2741
+ declare class MoonIconComponent extends IconComponentBase {
2742
+ static readonly slug = "moon";
2743
+ static readonly category: IconCategory;
2744
+ static readonly tags: ReadonlyArray<string>;
1820
2745
  static ɵfac: i0.ɵɵFactoryDeclaration<MoonIconComponent, never>;
1821
2746
  static ɵcmp: i0.ɵɵComponentDeclaration<MoonIconComponent, "ea-icon-moon", never, {}, {}, never, never, true, never>;
1822
2747
  }
1823
2748
 
1824
- declare class MoreHorizontalIconComponent {
2749
+ declare class MoreHorizontalIconComponent extends IconComponentBase {
2750
+ static readonly slug = "more-horizontal";
2751
+ static readonly category: IconCategory;
2752
+ static readonly tags: ReadonlyArray<string>;
1825
2753
  static ɵfac: i0.ɵɵFactoryDeclaration<MoreHorizontalIconComponent, never>;
1826
2754
  static ɵcmp: i0.ɵɵComponentDeclaration<MoreHorizontalIconComponent, "ea-icon-more-horizontal", never, {}, {}, never, never, true, never>;
1827
2755
  }
1828
2756
 
1829
- declare class MoreVerticalIconComponent {
2757
+ declare class MoreVerticalIconComponent extends IconComponentBase {
2758
+ static readonly slug = "more-vertical";
2759
+ static readonly category: IconCategory;
2760
+ static readonly tags: ReadonlyArray<string>;
1830
2761
  static ɵfac: i0.ɵɵFactoryDeclaration<MoreVerticalIconComponent, never>;
1831
2762
  static ɵcmp: i0.ɵɵComponentDeclaration<MoreVerticalIconComponent, "ea-icon-more-vertical", never, {}, {}, never, never, true, never>;
1832
2763
  }
1833
2764
 
1834
- declare class MousePointerIconComponent {
2765
+ declare class MousePointerIconComponent extends IconComponentBase {
2766
+ static readonly slug = "mouse-pointer";
2767
+ static readonly category: IconCategory;
2768
+ static readonly tags: ReadonlyArray<string>;
1835
2769
  static ɵfac: i0.ɵɵFactoryDeclaration<MousePointerIconComponent, never>;
1836
2770
  static ɵcmp: i0.ɵɵComponentDeclaration<MousePointerIconComponent, "ea-icon-mouse-pointer", never, {}, {}, never, never, true, never>;
1837
2771
  }
1838
2772
 
1839
- declare class MoveIconComponent {
2773
+ declare class MoveIconComponent extends IconComponentBase {
2774
+ static readonly slug = "move";
2775
+ static readonly category: IconCategory;
2776
+ static readonly tags: ReadonlyArray<string>;
1840
2777
  static ɵfac: i0.ɵɵFactoryDeclaration<MoveIconComponent, never>;
1841
2778
  static ɵcmp: i0.ɵɵComponentDeclaration<MoveIconComponent, "ea-icon-move", never, {}, {}, never, never, true, never>;
1842
2779
  }
1843
2780
 
1844
- declare class MusicIconComponent {
2781
+ declare class MusicIconComponent extends IconComponentBase {
2782
+ static readonly slug = "music";
2783
+ static readonly category: IconCategory;
2784
+ static readonly tags: ReadonlyArray<string>;
1845
2785
  static ɵfac: i0.ɵɵFactoryDeclaration<MusicIconComponent, never>;
1846
2786
  static ɵcmp: i0.ɵɵComponentDeclaration<MusicIconComponent, "ea-icon-music", never, {}, {}, never, never, true, never>;
1847
2787
  }
1848
2788
 
1849
- declare class NavigationIconComponent {
2789
+ declare class NavigationIconComponent extends IconComponentBase {
2790
+ static readonly slug = "navigation";
2791
+ static readonly category: IconCategory;
2792
+ static readonly tags: ReadonlyArray<string>;
1850
2793
  static ɵfac: i0.ɵɵFactoryDeclaration<NavigationIconComponent, never>;
1851
2794
  static ɵcmp: i0.ɵɵComponentDeclaration<NavigationIconComponent, "ea-icon-navigation", never, {}, {}, never, never, true, never>;
1852
2795
  }
1853
2796
 
1854
- declare class Navigation2IconComponent {
2797
+ declare class Navigation2IconComponent extends IconComponentBase {
2798
+ static readonly slug = "navigation-2";
2799
+ static readonly category: IconCategory;
2800
+ static readonly tags: ReadonlyArray<string>;
1855
2801
  static ɵfac: i0.ɵɵFactoryDeclaration<Navigation2IconComponent, never>;
1856
2802
  static ɵcmp: i0.ɵɵComponentDeclaration<Navigation2IconComponent, "ea-icon-navigation-2", never, {}, {}, never, never, true, never>;
1857
2803
  }
1858
2804
 
1859
- declare class NetlifyIconComponent {
2805
+ declare class NetlifyIconComponent extends IconComponentBase {
2806
+ static readonly slug = "netlify";
2807
+ static readonly category: IconCategory;
2808
+ static readonly isBrand = true;
2809
+ static readonly tags: ReadonlyArray<string>;
1860
2810
  static ɵfac: i0.ɵɵFactoryDeclaration<NetlifyIconComponent, never>;
1861
2811
  static ɵcmp: i0.ɵɵComponentDeclaration<NetlifyIconComponent, "ea-icon-netlify", never, {}, {}, never, never, true, never>;
1862
2812
  }
1863
2813
 
1864
- declare class NotionIconComponent {
2814
+ declare class NotionIconComponent extends IconComponentBase {
2815
+ static readonly slug = "notion";
2816
+ static readonly category: IconCategory;
2817
+ static readonly isBrand = true;
2818
+ static readonly tags: ReadonlyArray<string>;
1865
2819
  readonly brand: i0.InputSignal<boolean>;
1866
2820
  static ɵfac: i0.ɵɵFactoryDeclaration<NotionIconComponent, never>;
1867
2821
  static ɵcmp: i0.ɵɵComponentDeclaration<NotionIconComponent, "ea-icon-notion", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1868
2822
  }
1869
2823
 
1870
- declare class NpmIconComponent {
2824
+ declare class NpmIconComponent extends IconComponentBase {
2825
+ static readonly slug = "npm";
2826
+ static readonly category: IconCategory;
2827
+ static readonly isBrand = true;
2828
+ static readonly tags: ReadonlyArray<string>;
1871
2829
  readonly brand: i0.InputSignal<boolean>;
1872
2830
  static ɵfac: i0.ɵɵFactoryDeclaration<NpmIconComponent, never>;
1873
2831
  static ɵcmp: i0.ɵɵComponentDeclaration<NpmIconComponent, "ea-icon-npm", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1874
2832
  }
1875
2833
 
1876
- declare class OctagonIconComponent {
2834
+ declare class OctagonIconComponent extends IconComponentBase {
2835
+ static readonly slug = "octagon";
2836
+ static readonly category: IconCategory;
2837
+ static readonly tags: ReadonlyArray<string>;
1877
2838
  static ɵfac: i0.ɵɵFactoryDeclaration<OctagonIconComponent, never>;
1878
2839
  static ɵcmp: i0.ɵɵComponentDeclaration<OctagonIconComponent, "ea-icon-octagon", never, {}, {}, never, never, true, never>;
1879
2840
  }
1880
2841
 
1881
- declare class PackageIconComponent {
2842
+ declare class PackageIconComponent extends IconComponentBase {
2843
+ static readonly slug = "package";
2844
+ static readonly category: IconCategory;
2845
+ static readonly tags: ReadonlyArray<string>;
1882
2846
  static ɵfac: i0.ɵɵFactoryDeclaration<PackageIconComponent, never>;
1883
2847
  static ɵcmp: i0.ɵɵComponentDeclaration<PackageIconComponent, "ea-icon-package", never, {}, {}, never, never, true, never>;
1884
2848
  }
1885
2849
 
1886
- declare class PaperclipIconComponent {
2850
+ declare class PaperclipIconComponent extends IconComponentBase {
2851
+ static readonly slug = "paperclip";
2852
+ static readonly category: IconCategory;
2853
+ static readonly tags: ReadonlyArray<string>;
1887
2854
  static ɵfac: i0.ɵɵFactoryDeclaration<PaperclipIconComponent, never>;
1888
2855
  static ɵcmp: i0.ɵɵComponentDeclaration<PaperclipIconComponent, "ea-icon-paperclip", never, {}, {}, never, never, true, never>;
1889
2856
  }
1890
2857
 
1891
- declare class PauseIconComponent {
2858
+ declare class PauseIconComponent extends IconComponentBase {
2859
+ static readonly slug = "pause";
2860
+ static readonly category: IconCategory;
2861
+ static readonly tags: ReadonlyArray<string>;
1892
2862
  static ɵfac: i0.ɵɵFactoryDeclaration<PauseIconComponent, never>;
1893
2863
  static ɵcmp: i0.ɵɵComponentDeclaration<PauseIconComponent, "ea-icon-pause", never, {}, {}, never, never, true, never>;
1894
2864
  }
1895
2865
 
1896
- declare class PauseCircleIconComponent {
2866
+ declare class PauseCircleIconComponent extends IconComponentBase {
2867
+ static readonly slug = "pause-circle";
2868
+ static readonly category: IconCategory;
2869
+ static readonly tags: ReadonlyArray<string>;
1897
2870
  static ɵfac: i0.ɵɵFactoryDeclaration<PauseCircleIconComponent, never>;
1898
2871
  static ɵcmp: i0.ɵɵComponentDeclaration<PauseCircleIconComponent, "ea-icon-pause-circle", never, {}, {}, never, never, true, never>;
1899
2872
  }
1900
2873
 
1901
- declare class PaypalIconComponent {
2874
+ declare class PaypalIconComponent extends IconComponentBase {
2875
+ static readonly slug = "paypal";
2876
+ static readonly category: IconCategory;
2877
+ static readonly isBrand = true;
2878
+ static readonly tags: ReadonlyArray<string>;
1902
2879
  static ɵfac: i0.ɵɵFactoryDeclaration<PaypalIconComponent, never>;
1903
2880
  static ɵcmp: i0.ɵɵComponentDeclaration<PaypalIconComponent, "ea-icon-paypal", never, {}, {}, never, never, true, never>;
1904
2881
  }
1905
2882
 
1906
- declare class PencilIconComponent {
2883
+ declare class PenToolIconComponent extends IconComponentBase {
2884
+ static readonly slug = "pen-tool";
2885
+ static readonly category: IconCategory;
2886
+ static readonly tags: ReadonlyArray<string>;
2887
+ static ɵfac: i0.ɵɵFactoryDeclaration<PenToolIconComponent, never>;
2888
+ static ɵcmp: i0.ɵɵComponentDeclaration<PenToolIconComponent, "ea-icon-pen-tool", never, {}, {}, never, never, true, never>;
2889
+ }
2890
+
2891
+ /**
2892
+ * @deprecated Will be removed in v2.0.0. The `pencil` icon depicts the same
2893
+ * mark as Feather's canonical `edit-2` (with a marginally different cap
2894
+ * curvature) and is being retired as redundant. Switch to `<ea-icon-edit-2>`
2895
+ * / `Edit2IconComponent`.
2896
+ */
2897
+ declare class PencilIconComponent extends IconComponentBase {
2898
+ static readonly slug = "pencil";
2899
+ static readonly category: IconCategory;
2900
+ static readonly tags: ReadonlyArray<string>;
1907
2901
  static ɵfac: i0.ɵɵFactoryDeclaration<PencilIconComponent, never>;
1908
2902
  static ɵcmp: i0.ɵɵComponentDeclaration<PencilIconComponent, "ea-icon-pencil", never, {}, {}, never, never, true, never>;
1909
2903
  }
1910
2904
 
1911
- declare class PercentIconComponent {
2905
+ declare class PentagonIconComponent extends IconComponentBase {
2906
+ static readonly slug = "pentagon";
2907
+ static readonly category: IconCategory;
2908
+ static readonly tags: ReadonlyArray<string>;
2909
+ static ɵfac: i0.ɵɵFactoryDeclaration<PentagonIconComponent, never>;
2910
+ static ɵcmp: i0.ɵɵComponentDeclaration<PentagonIconComponent, "ea-icon-pentagon", never, {}, {}, never, never, true, never>;
2911
+ }
2912
+
2913
+ declare class PercentIconComponent extends IconComponentBase {
2914
+ static readonly slug = "percent";
2915
+ static readonly category: IconCategory;
2916
+ static readonly tags: ReadonlyArray<string>;
1912
2917
  static ɵfac: i0.ɵɵFactoryDeclaration<PercentIconComponent, never>;
1913
2918
  static ɵcmp: i0.ɵɵComponentDeclaration<PercentIconComponent, "ea-icon-percent", never, {}, {}, never, never, true, never>;
1914
2919
  }
1915
2920
 
1916
- declare class PhoneIconComponent {
2921
+ declare class PhoneIconComponent extends IconComponentBase {
2922
+ static readonly slug = "phone";
2923
+ static readonly category: IconCategory;
2924
+ static readonly tags: ReadonlyArray<string>;
1917
2925
  static ɵfac: i0.ɵɵFactoryDeclaration<PhoneIconComponent, never>;
1918
2926
  static ɵcmp: i0.ɵɵComponentDeclaration<PhoneIconComponent, "ea-icon-phone", never, {}, {}, never, never, true, never>;
1919
2927
  }
1920
2928
 
1921
- declare class PieChartIconComponent {
2929
+ declare class PhoneCallIconComponent extends IconComponentBase {
2930
+ static readonly slug = "phone-call";
2931
+ static readonly category: IconCategory;
2932
+ static readonly tags: ReadonlyArray<string>;
2933
+ static ɵfac: i0.ɵɵFactoryDeclaration<PhoneCallIconComponent, never>;
2934
+ static ɵcmp: i0.ɵɵComponentDeclaration<PhoneCallIconComponent, "ea-icon-phone-call", never, {}, {}, never, never, true, never>;
2935
+ }
2936
+
2937
+ declare class PhoneForwardedIconComponent extends IconComponentBase {
2938
+ static readonly slug = "phone-forwarded";
2939
+ static readonly category: IconCategory;
2940
+ static readonly tags: ReadonlyArray<string>;
2941
+ static ɵfac: i0.ɵɵFactoryDeclaration<PhoneForwardedIconComponent, never>;
2942
+ static ɵcmp: i0.ɵɵComponentDeclaration<PhoneForwardedIconComponent, "ea-icon-phone-forwarded", never, {}, {}, never, never, true, never>;
2943
+ }
2944
+
2945
+ declare class PhoneIncomingIconComponent extends IconComponentBase {
2946
+ static readonly slug = "phone-incoming";
2947
+ static readonly category: IconCategory;
2948
+ static readonly tags: ReadonlyArray<string>;
2949
+ static ɵfac: i0.ɵɵFactoryDeclaration<PhoneIncomingIconComponent, never>;
2950
+ static ɵcmp: i0.ɵɵComponentDeclaration<PhoneIncomingIconComponent, "ea-icon-phone-incoming", never, {}, {}, never, never, true, never>;
2951
+ }
2952
+
2953
+ declare class PhoneMissedIconComponent extends IconComponentBase {
2954
+ static readonly slug = "phone-missed";
2955
+ static readonly category: IconCategory;
2956
+ static readonly tags: ReadonlyArray<string>;
2957
+ static ɵfac: i0.ɵɵFactoryDeclaration<PhoneMissedIconComponent, never>;
2958
+ static ɵcmp: i0.ɵɵComponentDeclaration<PhoneMissedIconComponent, "ea-icon-phone-missed", never, {}, {}, never, never, true, never>;
2959
+ }
2960
+
2961
+ declare class PhoneOffIconComponent extends IconComponentBase {
2962
+ static readonly slug = "phone-off";
2963
+ static readonly category: IconCategory;
2964
+ static readonly tags: ReadonlyArray<string>;
2965
+ static ɵfac: i0.ɵɵFactoryDeclaration<PhoneOffIconComponent, never>;
2966
+ static ɵcmp: i0.ɵɵComponentDeclaration<PhoneOffIconComponent, "ea-icon-phone-off", never, {}, {}, never, never, true, never>;
2967
+ }
2968
+
2969
+ declare class PhoneOutgoingIconComponent extends IconComponentBase {
2970
+ static readonly slug = "phone-outgoing";
2971
+ static readonly category: IconCategory;
2972
+ static readonly tags: ReadonlyArray<string>;
2973
+ static ɵfac: i0.ɵɵFactoryDeclaration<PhoneOutgoingIconComponent, never>;
2974
+ static ɵcmp: i0.ɵɵComponentDeclaration<PhoneOutgoingIconComponent, "ea-icon-phone-outgoing", never, {}, {}, never, never, true, never>;
2975
+ }
2976
+
2977
+ declare class PieChartIconComponent extends IconComponentBase {
2978
+ static readonly slug = "pie-chart";
2979
+ static readonly category: IconCategory;
2980
+ static readonly tags: ReadonlyArray<string>;
1922
2981
  static ɵfac: i0.ɵɵFactoryDeclaration<PieChartIconComponent, never>;
1923
2982
  static ɵcmp: i0.ɵɵComponentDeclaration<PieChartIconComponent, "ea-icon-pie-chart", never, {}, {}, never, never, true, never>;
1924
2983
  }
1925
2984
 
1926
- declare class PlayIconComponent {
2985
+ declare class PlayIconComponent extends IconComponentBase {
2986
+ static readonly slug = "play";
2987
+ static readonly category: IconCategory;
2988
+ static readonly tags: ReadonlyArray<string>;
1927
2989
  static ɵfac: i0.ɵɵFactoryDeclaration<PlayIconComponent, never>;
1928
2990
  static ɵcmp: i0.ɵɵComponentDeclaration<PlayIconComponent, "ea-icon-play", never, {}, {}, never, never, true, never>;
1929
2991
  }
1930
2992
 
1931
- declare class PlayCircleIconComponent {
2993
+ declare class PlayCircleIconComponent extends IconComponentBase {
2994
+ static readonly slug = "play-circle";
2995
+ static readonly category: IconCategory;
2996
+ static readonly tags: ReadonlyArray<string>;
1932
2997
  static ɵfac: i0.ɵɵFactoryDeclaration<PlayCircleIconComponent, never>;
1933
2998
  static ɵcmp: i0.ɵɵComponentDeclaration<PlayCircleIconComponent, "ea-icon-play-circle", never, {}, {}, never, never, true, never>;
1934
2999
  }
1935
3000
 
1936
- declare class PlusIconComponent {
3001
+ declare class PlusIconComponent extends IconComponentBase {
3002
+ static readonly slug = "plus";
3003
+ static readonly category: IconCategory;
3004
+ static readonly tags: ReadonlyArray<string>;
1937
3005
  static ɵfac: i0.ɵɵFactoryDeclaration<PlusIconComponent, never>;
1938
3006
  static ɵcmp: i0.ɵɵComponentDeclaration<PlusIconComponent, "ea-icon-plus", never, {}, {}, never, never, true, never>;
1939
3007
  }
1940
3008
 
1941
- declare class PlusCircleIconComponent {
3009
+ declare class PlusCircleIconComponent extends IconComponentBase {
3010
+ static readonly slug = "plus-circle";
3011
+ static readonly category: IconCategory;
3012
+ static readonly tags: ReadonlyArray<string>;
1942
3013
  static ɵfac: i0.ɵɵFactoryDeclaration<PlusCircleIconComponent, never>;
1943
3014
  static ɵcmp: i0.ɵɵComponentDeclaration<PlusCircleIconComponent, "ea-icon-plus-circle", never, {}, {}, never, never, true, never>;
1944
3015
  }
1945
3016
 
1946
- declare class PlusSquareIconComponent {
3017
+ declare class PlusSquareIconComponent extends IconComponentBase {
3018
+ static readonly slug = "plus-square";
3019
+ static readonly category: IconCategory;
3020
+ static readonly tags: ReadonlyArray<string>;
1947
3021
  static ɵfac: i0.ɵɵFactoryDeclaration<PlusSquareIconComponent, never>;
1948
3022
  static ɵcmp: i0.ɵɵComponentDeclaration<PlusSquareIconComponent, "ea-icon-plus-square", never, {}, {}, never, never, true, never>;
1949
3023
  }
1950
3024
 
1951
- declare class PocketIconComponent {
3025
+ declare class PocketIconComponent extends IconComponentBase {
3026
+ static readonly slug = "pocket";
3027
+ static readonly category: IconCategory;
3028
+ static readonly tags: ReadonlyArray<string>;
1952
3029
  static ɵfac: i0.ɵɵFactoryDeclaration<PocketIconComponent, never>;
1953
3030
  static ɵcmp: i0.ɵɵComponentDeclaration<PocketIconComponent, "ea-icon-pocket", never, {}, {}, never, never, true, never>;
1954
3031
  }
1955
3032
 
1956
- declare class PowerIconComponent {
3033
+ declare class PowerIconComponent extends IconComponentBase {
3034
+ static readonly slug = "power";
3035
+ static readonly category: IconCategory;
3036
+ static readonly tags: ReadonlyArray<string>;
1957
3037
  static ɵfac: i0.ɵɵFactoryDeclaration<PowerIconComponent, never>;
1958
3038
  static ɵcmp: i0.ɵɵComponentDeclaration<PowerIconComponent, "ea-icon-power", never, {}, {}, never, never, true, never>;
1959
3039
  }
1960
3040
 
1961
- declare class PrinterIconComponent {
3041
+ declare class PrinterIconComponent extends IconComponentBase {
3042
+ static readonly slug = "printer";
3043
+ static readonly category: IconCategory;
3044
+ static readonly tags: ReadonlyArray<string>;
1962
3045
  static ɵfac: i0.ɵɵFactoryDeclaration<PrinterIconComponent, never>;
1963
3046
  static ɵcmp: i0.ɵɵComponentDeclaration<PrinterIconComponent, "ea-icon-printer", never, {}, {}, never, never, true, never>;
1964
3047
  }
1965
3048
 
1966
- declare class RadioIconComponent {
3049
+ declare class RadioIconComponent extends IconComponentBase {
3050
+ static readonly slug = "radio";
3051
+ static readonly category: IconCategory;
3052
+ static readonly tags: ReadonlyArray<string>;
1967
3053
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioIconComponent, never>;
1968
3054
  static ɵcmp: i0.ɵɵComponentDeclaration<RadioIconComponent, "ea-icon-radio", never, {}, {}, never, never, true, never>;
1969
3055
  }
1970
3056
 
1971
- declare class RedditIconComponent {
3057
+ declare class RectangleHorizontalIconComponent extends IconComponentBase {
3058
+ static readonly slug = "rectangle-horizontal";
3059
+ static readonly category: IconCategory;
3060
+ static readonly tags: ReadonlyArray<string>;
3061
+ static ɵfac: i0.ɵɵFactoryDeclaration<RectangleHorizontalIconComponent, never>;
3062
+ static ɵcmp: i0.ɵɵComponentDeclaration<RectangleHorizontalIconComponent, "ea-icon-rectangle-horizontal", never, {}, {}, never, never, true, never>;
3063
+ }
3064
+
3065
+ declare class RectangleVerticalIconComponent extends IconComponentBase {
3066
+ static readonly slug = "rectangle-vertical";
3067
+ static readonly category: IconCategory;
3068
+ static readonly tags: ReadonlyArray<string>;
3069
+ static ɵfac: i0.ɵɵFactoryDeclaration<RectangleVerticalIconComponent, never>;
3070
+ static ɵcmp: i0.ɵɵComponentDeclaration<RectangleVerticalIconComponent, "ea-icon-rectangle-vertical", never, {}, {}, never, never, true, never>;
3071
+ }
3072
+
3073
+ declare class RedditIconComponent extends IconComponentBase {
3074
+ static readonly slug = "reddit";
3075
+ static readonly category: IconCategory;
3076
+ static readonly isBrand = true;
3077
+ static readonly tags: ReadonlyArray<string>;
1972
3078
  readonly brand: i0.InputSignal<boolean>;
1973
3079
  static ɵfac: i0.ɵɵFactoryDeclaration<RedditIconComponent, never>;
1974
3080
  static ɵcmp: i0.ɵɵComponentDeclaration<RedditIconComponent, "ea-icon-reddit", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1975
3081
  }
1976
3082
 
1977
- declare class RefreshCwIconComponent {
3083
+ declare class RefreshCcwIconComponent extends IconComponentBase {
3084
+ static readonly slug = "refresh-ccw";
3085
+ static readonly category: IconCategory;
3086
+ static readonly tags: ReadonlyArray<string>;
3087
+ static ɵfac: i0.ɵɵFactoryDeclaration<RefreshCcwIconComponent, never>;
3088
+ static ɵcmp: i0.ɵɵComponentDeclaration<RefreshCcwIconComponent, "ea-icon-refresh-ccw", never, {}, {}, never, never, true, never>;
3089
+ }
3090
+
3091
+ declare class RefreshCwIconComponent extends IconComponentBase {
3092
+ static readonly slug = "refresh-cw";
3093
+ static readonly category: IconCategory;
3094
+ static readonly tags: ReadonlyArray<string>;
1978
3095
  static ɵfac: i0.ɵɵFactoryDeclaration<RefreshCwIconComponent, never>;
1979
3096
  static ɵcmp: i0.ɵɵComponentDeclaration<RefreshCwIconComponent, "ea-icon-refresh-cw", never, {}, {}, never, never, true, never>;
1980
3097
  }
1981
3098
 
1982
- declare class RepeatIconComponent {
3099
+ declare class RepeatIconComponent extends IconComponentBase {
3100
+ static readonly slug = "repeat";
3101
+ static readonly category: IconCategory;
3102
+ static readonly tags: ReadonlyArray<string>;
1983
3103
  static ɵfac: i0.ɵɵFactoryDeclaration<RepeatIconComponent, never>;
1984
3104
  static ɵcmp: i0.ɵɵComponentDeclaration<RepeatIconComponent, "ea-icon-repeat", never, {}, {}, never, never, true, never>;
1985
3105
  }
1986
3106
 
1987
- declare class RewindIconComponent {
3107
+ declare class RewindIconComponent extends IconComponentBase {
3108
+ static readonly slug = "rewind";
3109
+ static readonly category: IconCategory;
3110
+ static readonly tags: ReadonlyArray<string>;
1988
3111
  static ɵfac: i0.ɵɵFactoryDeclaration<RewindIconComponent, never>;
1989
3112
  static ɵcmp: i0.ɵɵComponentDeclaration<RewindIconComponent, "ea-icon-rewind", never, {}, {}, never, never, true, never>;
1990
3113
  }
1991
3114
 
1992
- declare class RotateCcwIconComponent {
3115
+ declare class RotateCcwIconComponent extends IconComponentBase {
3116
+ static readonly slug = "rotate-ccw";
3117
+ static readonly category: IconCategory;
3118
+ static readonly tags: ReadonlyArray<string>;
1993
3119
  static ɵfac: i0.ɵɵFactoryDeclaration<RotateCcwIconComponent, never>;
1994
3120
  static ɵcmp: i0.ɵɵComponentDeclaration<RotateCcwIconComponent, "ea-icon-rotate-ccw", never, {}, {}, never, never, true, never>;
1995
3121
  }
1996
3122
 
1997
- declare class RotateCwIconComponent {
3123
+ declare class RotateCwIconComponent extends IconComponentBase {
3124
+ static readonly slug = "rotate-cw";
3125
+ static readonly category: IconCategory;
3126
+ static readonly tags: ReadonlyArray<string>;
1998
3127
  static ɵfac: i0.ɵɵFactoryDeclaration<RotateCwIconComponent, never>;
1999
3128
  static ɵcmp: i0.ɵɵComponentDeclaration<RotateCwIconComponent, "ea-icon-rotate-cw", never, {}, {}, never, never, true, never>;
2000
3129
  }
2001
3130
 
2002
- declare class RssIconComponent {
3131
+ declare class RssIconComponent extends IconComponentBase {
3132
+ static readonly slug = "rss";
3133
+ static readonly category: IconCategory;
3134
+ static readonly tags: ReadonlyArray<string>;
2003
3135
  static ɵfac: i0.ɵɵFactoryDeclaration<RssIconComponent, never>;
2004
3136
  static ɵcmp: i0.ɵɵComponentDeclaration<RssIconComponent, "ea-icon-rss", never, {}, {}, never, never, true, never>;
2005
3137
  }
2006
3138
 
2007
- declare class SaveIconComponent {
3139
+ declare class SaveIconComponent extends IconComponentBase {
3140
+ static readonly slug = "save";
3141
+ static readonly category: IconCategory;
3142
+ static readonly tags: ReadonlyArray<string>;
2008
3143
  static ɵfac: i0.ɵɵFactoryDeclaration<SaveIconComponent, never>;
2009
3144
  static ɵcmp: i0.ɵɵComponentDeclaration<SaveIconComponent, "ea-icon-save", never, {}, {}, never, never, true, never>;
2010
3145
  }
2011
3146
 
2012
- declare class ScissorsIconComponent {
3147
+ declare class ScissorsIconComponent extends IconComponentBase {
3148
+ static readonly slug = "scissors";
3149
+ static readonly category: IconCategory;
3150
+ static readonly tags: ReadonlyArray<string>;
2013
3151
  static ɵfac: i0.ɵɵFactoryDeclaration<ScissorsIconComponent, never>;
2014
3152
  static ɵcmp: i0.ɵɵComponentDeclaration<ScissorsIconComponent, "ea-icon-scissors", never, {}, {}, never, never, true, never>;
2015
3153
  }
2016
3154
 
2017
- declare class SearchIconComponent {
3155
+ declare class SearchIconComponent extends IconComponentBase {
3156
+ static readonly slug = "search";
3157
+ static readonly category: IconCategory;
3158
+ static readonly tags: ReadonlyArray<string>;
2018
3159
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchIconComponent, never>;
2019
3160
  static ɵcmp: i0.ɵɵComponentDeclaration<SearchIconComponent, "ea-icon-search", never, {}, {}, never, never, true, never>;
2020
3161
  }
2021
3162
 
2022
- declare class SendIconComponent {
3163
+ declare class SendIconComponent extends IconComponentBase {
3164
+ static readonly slug = "send";
3165
+ static readonly category: IconCategory;
3166
+ static readonly tags: ReadonlyArray<string>;
2023
3167
  static ɵfac: i0.ɵɵFactoryDeclaration<SendIconComponent, never>;
2024
3168
  static ɵcmp: i0.ɵɵComponentDeclaration<SendIconComponent, "ea-icon-send", never, {}, {}, never, never, true, never>;
2025
3169
  }
2026
3170
 
2027
- declare class ServerIconComponent {
3171
+ declare class ServerIconComponent extends IconComponentBase {
3172
+ static readonly slug = "server";
3173
+ static readonly category: IconCategory;
3174
+ static readonly tags: ReadonlyArray<string>;
2028
3175
  static ɵfac: i0.ɵɵFactoryDeclaration<ServerIconComponent, never>;
2029
3176
  static ɵcmp: i0.ɵɵComponentDeclaration<ServerIconComponent, "ea-icon-server", never, {}, {}, never, never, true, never>;
2030
3177
  }
2031
3178
 
2032
- declare class SettingsIconComponent {
3179
+ declare class SettingsIconComponent extends IconComponentBase {
3180
+ static readonly slug = "settings";
3181
+ static readonly category: IconCategory;
3182
+ static readonly tags: ReadonlyArray<string>;
2033
3183
  static ɵfac: i0.ɵɵFactoryDeclaration<SettingsIconComponent, never>;
2034
3184
  static ɵcmp: i0.ɵɵComponentDeclaration<SettingsIconComponent, "ea-icon-settings", never, {}, {}, never, never, true, never>;
2035
3185
  }
2036
3186
 
2037
- declare class ShareIconComponent {
3187
+ declare class ShareIconComponent extends IconComponentBase {
3188
+ static readonly slug = "share";
3189
+ static readonly category: IconCategory;
3190
+ static readonly tags: ReadonlyArray<string>;
2038
3191
  static ɵfac: i0.ɵɵFactoryDeclaration<ShareIconComponent, never>;
2039
3192
  static ɵcmp: i0.ɵɵComponentDeclaration<ShareIconComponent, "ea-icon-share", never, {}, {}, never, never, true, never>;
2040
3193
  }
2041
3194
 
2042
- declare class Share2IconComponent {
3195
+ declare class Share2IconComponent extends IconComponentBase {
3196
+ static readonly slug = "share-2";
3197
+ static readonly category: IconCategory;
3198
+ static readonly tags: ReadonlyArray<string>;
2043
3199
  static ɵfac: i0.ɵɵFactoryDeclaration<Share2IconComponent, never>;
2044
3200
  static ɵcmp: i0.ɵɵComponentDeclaration<Share2IconComponent, "ea-icon-share-2", never, {}, {}, never, never, true, never>;
2045
3201
  }
2046
3202
 
2047
- declare class ShieldIconComponent {
3203
+ declare class ShieldIconComponent extends IconComponentBase {
3204
+ static readonly slug = "shield";
3205
+ static readonly category: IconCategory;
3206
+ static readonly tags: ReadonlyArray<string>;
2048
3207
  static ɵfac: i0.ɵɵFactoryDeclaration<ShieldIconComponent, never>;
2049
3208
  static ɵcmp: i0.ɵɵComponentDeclaration<ShieldIconComponent, "ea-icon-shield", never, {}, {}, never, never, true, never>;
2050
3209
  }
2051
3210
 
2052
- declare class ShieldOffIconComponent {
3211
+ declare class ShieldOffIconComponent extends IconComponentBase {
3212
+ static readonly slug = "shield-off";
3213
+ static readonly category: IconCategory;
3214
+ static readonly tags: ReadonlyArray<string>;
2053
3215
  static ɵfac: i0.ɵɵFactoryDeclaration<ShieldOffIconComponent, never>;
2054
3216
  static ɵcmp: i0.ɵɵComponentDeclaration<ShieldOffIconComponent, "ea-icon-shield-off", never, {}, {}, never, never, true, never>;
2055
3217
  }
2056
3218
 
2057
- declare class ShoppingBagIconComponent {
3219
+ declare class ShoppingBagIconComponent extends IconComponentBase {
3220
+ static readonly slug = "shopping-bag";
3221
+ static readonly category: IconCategory;
3222
+ static readonly tags: ReadonlyArray<string>;
2058
3223
  static ɵfac: i0.ɵɵFactoryDeclaration<ShoppingBagIconComponent, never>;
2059
3224
  static ɵcmp: i0.ɵɵComponentDeclaration<ShoppingBagIconComponent, "ea-icon-shopping-bag", never, {}, {}, never, never, true, never>;
2060
3225
  }
2061
3226
 
2062
- declare class ShoppingCartIconComponent {
3227
+ declare class ShoppingCartIconComponent extends IconComponentBase {
3228
+ static readonly slug = "shopping-cart";
3229
+ static readonly category: IconCategory;
3230
+ static readonly tags: ReadonlyArray<string>;
2063
3231
  static ɵfac: i0.ɵɵFactoryDeclaration<ShoppingCartIconComponent, never>;
2064
3232
  static ɵcmp: i0.ɵɵComponentDeclaration<ShoppingCartIconComponent, "ea-icon-shopping-cart", never, {}, {}, never, never, true, never>;
2065
3233
  }
2066
3234
 
2067
- declare class ShuffleIconComponent {
3235
+ declare class ShuffleIconComponent extends IconComponentBase {
3236
+ static readonly slug = "shuffle";
3237
+ static readonly category: IconCategory;
3238
+ static readonly tags: ReadonlyArray<string>;
2068
3239
  static ɵfac: i0.ɵɵFactoryDeclaration<ShuffleIconComponent, never>;
2069
3240
  static ɵcmp: i0.ɵɵComponentDeclaration<ShuffleIconComponent, "ea-icon-shuffle", never, {}, {}, never, never, true, never>;
2070
3241
  }
2071
3242
 
2072
- declare class SidebarIconComponent {
3243
+ declare class SidebarIconComponent extends IconComponentBase {
3244
+ static readonly slug = "sidebar";
3245
+ static readonly category: IconCategory;
3246
+ static readonly tags: ReadonlyArray<string>;
2073
3247
  static ɵfac: i0.ɵɵFactoryDeclaration<SidebarIconComponent, never>;
2074
3248
  static ɵcmp: i0.ɵɵComponentDeclaration<SidebarIconComponent, "ea-icon-sidebar", never, {}, {}, never, never, true, never>;
2075
3249
  }
2076
3250
 
2077
- declare class SkipBackIconComponent {
3251
+ declare class SkipBackIconComponent extends IconComponentBase {
3252
+ static readonly slug = "skip-back";
3253
+ static readonly category: IconCategory;
3254
+ static readonly tags: ReadonlyArray<string>;
2078
3255
  static ɵfac: i0.ɵɵFactoryDeclaration<SkipBackIconComponent, never>;
2079
3256
  static ɵcmp: i0.ɵɵComponentDeclaration<SkipBackIconComponent, "ea-icon-skip-back", never, {}, {}, never, never, true, never>;
2080
3257
  }
2081
3258
 
2082
- declare class SkipForwardIconComponent {
3259
+ declare class SkipForwardIconComponent extends IconComponentBase {
3260
+ static readonly slug = "skip-forward";
3261
+ static readonly category: IconCategory;
3262
+ static readonly tags: ReadonlyArray<string>;
2083
3263
  static ɵfac: i0.ɵɵFactoryDeclaration<SkipForwardIconComponent, never>;
2084
3264
  static ɵcmp: i0.ɵɵComponentDeclaration<SkipForwardIconComponent, "ea-icon-skip-forward", never, {}, {}, never, never, true, never>;
2085
3265
  }
2086
3266
 
2087
- declare class SlackIconComponent {
3267
+ /**
3268
+ * Slack icon (Feather outline).
3269
+ *
3270
+ * @remarks
3271
+ * Prior to v1.4 this slug rendered Eagami's brand-filled Slack mark. v1.4
3272
+ * aligns the canonical slug with Feather Icons, so `SlackIconComponent` now
3273
+ * renders Feather's outline. The brand-filled mark that previously shipped
3274
+ * here has moved to `<ea-icon-slack-2>` / `Slack2IconComponent`.
3275
+ */
3276
+ declare class SlackIconComponent extends IconComponentBase {
3277
+ static readonly slug = "slack";
3278
+ static readonly category: IconCategory;
3279
+ static readonly isBrand = true;
3280
+ static readonly tags: ReadonlyArray<string>;
2088
3281
  static ɵfac: i0.ɵɵFactoryDeclaration<SlackIconComponent, never>;
2089
3282
  static ɵcmp: i0.ɵɵComponentDeclaration<SlackIconComponent, "ea-icon-slack", never, {}, {}, never, never, true, never>;
2090
3283
  }
2091
3284
 
2092
- declare class SlashIconComponent {
3285
+ /**
3286
+ * Slack brand mark (Eagami brand-filled).
3287
+ *
3288
+ * @remarks
3289
+ * Up to v1.3 this design shipped as `SlackIconComponent` at slug
3290
+ * `ea-icon-slack`. v1.4 reassigns the canonical slug to Feather's outline
3291
+ * and moves the brand-filled mark here. Set the `brand` input to render in
3292
+ * the official brand colour.
3293
+ */
3294
+ declare class Slack2IconComponent extends IconComponentBase {
3295
+ static readonly slug = "slack-2";
3296
+ static readonly category: IconCategory;
3297
+ static readonly isBrand = true;
3298
+ static readonly tags: ReadonlyArray<string>;
3299
+ static ɵfac: i0.ɵɵFactoryDeclaration<Slack2IconComponent, never>;
3300
+ static ɵcmp: i0.ɵɵComponentDeclaration<Slack2IconComponent, "ea-icon-slack-2", never, {}, {}, never, never, true, never>;
3301
+ }
3302
+
3303
+ declare class SlashIconComponent extends IconComponentBase {
3304
+ static readonly slug = "slash";
3305
+ static readonly category: IconCategory;
3306
+ static readonly tags: ReadonlyArray<string>;
2093
3307
  static ɵfac: i0.ɵɵFactoryDeclaration<SlashIconComponent, never>;
2094
3308
  static ɵcmp: i0.ɵɵComponentDeclaration<SlashIconComponent, "ea-icon-slash", never, {}, {}, never, never, true, never>;
2095
3309
  }
2096
3310
 
2097
- declare class SlidersIconComponent {
3311
+ declare class SlidersIconComponent extends IconComponentBase {
3312
+ static readonly slug = "sliders";
3313
+ static readonly category: IconCategory;
3314
+ static readonly tags: ReadonlyArray<string>;
2098
3315
  static ɵfac: i0.ɵɵFactoryDeclaration<SlidersIconComponent, never>;
2099
3316
  static ɵcmp: i0.ɵɵComponentDeclaration<SlidersIconComponent, "ea-icon-sliders", never, {}, {}, never, never, true, never>;
2100
3317
  }
2101
3318
 
2102
- declare class SmartphoneIconComponent {
3319
+ declare class SmartphoneIconComponent extends IconComponentBase {
3320
+ static readonly slug = "smartphone";
3321
+ static readonly category: IconCategory;
3322
+ static readonly tags: ReadonlyArray<string>;
2103
3323
  static ɵfac: i0.ɵɵFactoryDeclaration<SmartphoneIconComponent, never>;
2104
3324
  static ɵcmp: i0.ɵɵComponentDeclaration<SmartphoneIconComponent, "ea-icon-smartphone", never, {}, {}, never, never, true, never>;
2105
3325
  }
2106
3326
 
2107
- declare class SmileIconComponent {
3327
+ declare class SmileIconComponent extends IconComponentBase {
3328
+ static readonly slug = "smile";
3329
+ static readonly category: IconCategory;
3330
+ static readonly tags: ReadonlyArray<string>;
2108
3331
  static ɵfac: i0.ɵɵFactoryDeclaration<SmileIconComponent, never>;
2109
3332
  static ɵcmp: i0.ɵɵComponentDeclaration<SmileIconComponent, "ea-icon-smile", never, {}, {}, never, never, true, never>;
2110
3333
  }
2111
3334
 
2112
- declare class SpeakerIconComponent {
3335
+ declare class SoccerBallIconComponent extends IconComponentBase {
3336
+ static readonly slug = "soccer-ball";
3337
+ static readonly category: IconCategory;
3338
+ static readonly tags: ReadonlyArray<string>;
3339
+ static ɵfac: i0.ɵɵFactoryDeclaration<SoccerBallIconComponent, never>;
3340
+ static ɵcmp: i0.ɵɵComponentDeclaration<SoccerBallIconComponent, "ea-icon-soccer-ball", never, {}, {}, never, never, true, never>;
3341
+ }
3342
+
3343
+ declare class SpeakerIconComponent extends IconComponentBase {
3344
+ static readonly slug = "speaker";
3345
+ static readonly category: IconCategory;
3346
+ static readonly tags: ReadonlyArray<string>;
2113
3347
  static ɵfac: i0.ɵɵFactoryDeclaration<SpeakerIconComponent, never>;
2114
3348
  static ɵcmp: i0.ɵɵComponentDeclaration<SpeakerIconComponent, "ea-icon-speaker", never, {}, {}, never, never, true, never>;
2115
3349
  }
2116
3350
 
2117
- declare class SpotifyIconComponent {
3351
+ declare class SpotifyIconComponent extends IconComponentBase {
3352
+ static readonly slug = "spotify";
3353
+ static readonly category: IconCategory;
3354
+ static readonly isBrand = true;
3355
+ static readonly tags: ReadonlyArray<string>;
2118
3356
  readonly brand: i0.InputSignal<boolean>;
2119
3357
  static ɵfac: i0.ɵɵFactoryDeclaration<SpotifyIconComponent, never>;
2120
3358
  static ɵcmp: i0.ɵɵComponentDeclaration<SpotifyIconComponent, "ea-icon-spotify", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2121
3359
  }
2122
3360
 
2123
- declare class SquareIconComponent {
3361
+ declare class SquareIconComponent extends IconComponentBase {
3362
+ static readonly slug = "square";
3363
+ static readonly category: IconCategory;
3364
+ static readonly tags: ReadonlyArray<string>;
2124
3365
  static ɵfac: i0.ɵɵFactoryDeclaration<SquareIconComponent, never>;
2125
3366
  static ɵcmp: i0.ɵɵComponentDeclaration<SquareIconComponent, "ea-icon-square", never, {}, {}, never, never, true, never>;
2126
3367
  }
2127
3368
 
2128
- declare class StarIconComponent {
3369
+ declare class StarIconComponent extends IconComponentBase {
3370
+ static readonly slug = "star";
3371
+ static readonly category: IconCategory;
3372
+ static readonly tags: ReadonlyArray<string>;
2129
3373
  static ɵfac: i0.ɵɵFactoryDeclaration<StarIconComponent, never>;
2130
3374
  static ɵcmp: i0.ɵɵComponentDeclaration<StarIconComponent, "ea-icon-star", never, {}, {}, never, never, true, never>;
2131
3375
  }
2132
3376
 
2133
- declare class StopCircleIconComponent {
3377
+ declare class StopCircleIconComponent extends IconComponentBase {
3378
+ static readonly slug = "stop-circle";
3379
+ static readonly category: IconCategory;
3380
+ static readonly tags: ReadonlyArray<string>;
2134
3381
  static ɵfac: i0.ɵɵFactoryDeclaration<StopCircleIconComponent, never>;
2135
3382
  static ɵcmp: i0.ɵɵComponentDeclaration<StopCircleIconComponent, "ea-icon-stop-circle", never, {}, {}, never, never, true, never>;
2136
3383
  }
2137
3384
 
2138
- declare class StripeIconComponent {
3385
+ declare class StripeIconComponent extends IconComponentBase {
3386
+ static readonly slug = "stripe";
3387
+ static readonly category: IconCategory;
3388
+ static readonly isBrand = true;
3389
+ static readonly tags: ReadonlyArray<string>;
2139
3390
  readonly brand: i0.InputSignal<boolean>;
2140
3391
  static ɵfac: i0.ɵɵFactoryDeclaration<StripeIconComponent, never>;
2141
3392
  static ɵcmp: i0.ɵɵComponentDeclaration<StripeIconComponent, "ea-icon-stripe", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2142
3393
  }
2143
3394
 
2144
- declare class SunIconComponent {
3395
+ declare class SunIconComponent extends IconComponentBase {
3396
+ static readonly slug = "sun";
3397
+ static readonly category: IconCategory;
3398
+ static readonly tags: ReadonlyArray<string>;
2145
3399
  static ɵfac: i0.ɵɵFactoryDeclaration<SunIconComponent, never>;
2146
3400
  static ɵcmp: i0.ɵɵComponentDeclaration<SunIconComponent, "ea-icon-sun", never, {}, {}, never, never, true, never>;
2147
3401
  }
2148
3402
 
2149
- declare class SunriseIconComponent {
3403
+ declare class SunriseIconComponent extends IconComponentBase {
3404
+ static readonly slug = "sunrise";
3405
+ static readonly category: IconCategory;
3406
+ static readonly tags: ReadonlyArray<string>;
2150
3407
  static ɵfac: i0.ɵɵFactoryDeclaration<SunriseIconComponent, never>;
2151
3408
  static ɵcmp: i0.ɵɵComponentDeclaration<SunriseIconComponent, "ea-icon-sunrise", never, {}, {}, never, never, true, never>;
2152
3409
  }
2153
3410
 
2154
- declare class SunsetIconComponent {
3411
+ declare class SunsetIconComponent extends IconComponentBase {
3412
+ static readonly slug = "sunset";
3413
+ static readonly category: IconCategory;
3414
+ static readonly tags: ReadonlyArray<string>;
2155
3415
  static ɵfac: i0.ɵɵFactoryDeclaration<SunsetIconComponent, never>;
2156
3416
  static ɵcmp: i0.ɵɵComponentDeclaration<SunsetIconComponent, "ea-icon-sunset", never, {}, {}, never, never, true, never>;
2157
3417
  }
2158
3418
 
2159
- declare class TabletIconComponent {
3419
+ declare class TableIconComponent extends IconComponentBase {
3420
+ static readonly slug = "table";
3421
+ static readonly category: IconCategory;
3422
+ static readonly tags: ReadonlyArray<string>;
3423
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableIconComponent, never>;
3424
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableIconComponent, "ea-icon-table", never, {}, {}, never, never, true, never>;
3425
+ }
3426
+
3427
+ declare class TabletIconComponent extends IconComponentBase {
3428
+ static readonly slug = "tablet";
3429
+ static readonly category: IconCategory;
3430
+ static readonly tags: ReadonlyArray<string>;
2160
3431
  static ɵfac: i0.ɵɵFactoryDeclaration<TabletIconComponent, never>;
2161
3432
  static ɵcmp: i0.ɵɵComponentDeclaration<TabletIconComponent, "ea-icon-tablet", never, {}, {}, never, never, true, never>;
2162
3433
  }
2163
3434
 
2164
- declare class TagIconComponent {
3435
+ declare class TagIconComponent extends IconComponentBase {
3436
+ static readonly slug = "tag";
3437
+ static readonly category: IconCategory;
3438
+ static readonly tags: ReadonlyArray<string>;
2165
3439
  static ɵfac: i0.ɵɵFactoryDeclaration<TagIconComponent, never>;
2166
3440
  static ɵcmp: i0.ɵɵComponentDeclaration<TagIconComponent, "ea-icon-tag", never, {}, {}, never, never, true, never>;
2167
3441
  }
2168
3442
 
2169
- declare class TargetIconComponent {
3443
+ declare class TargetIconComponent extends IconComponentBase {
3444
+ static readonly slug = "target";
3445
+ static readonly category: IconCategory;
3446
+ static readonly tags: ReadonlyArray<string>;
2170
3447
  static ɵfac: i0.ɵɵFactoryDeclaration<TargetIconComponent, never>;
2171
3448
  static ɵcmp: i0.ɵɵComponentDeclaration<TargetIconComponent, "ea-icon-target", never, {}, {}, never, never, true, never>;
2172
3449
  }
2173
3450
 
2174
- declare class TerminalIconComponent {
3451
+ declare class TerminalIconComponent extends IconComponentBase {
3452
+ static readonly slug = "terminal";
3453
+ static readonly category: IconCategory;
3454
+ static readonly tags: ReadonlyArray<string>;
2175
3455
  static ɵfac: i0.ɵɵFactoryDeclaration<TerminalIconComponent, never>;
2176
3456
  static ɵcmp: i0.ɵɵComponentDeclaration<TerminalIconComponent, "ea-icon-terminal", never, {}, {}, never, never, true, never>;
2177
3457
  }
2178
3458
 
2179
- declare class ThermometerIconComponent {
3459
+ declare class ThermometerIconComponent extends IconComponentBase {
3460
+ static readonly slug = "thermometer";
3461
+ static readonly category: IconCategory;
3462
+ static readonly tags: ReadonlyArray<string>;
2180
3463
  static ɵfac: i0.ɵɵFactoryDeclaration<ThermometerIconComponent, never>;
2181
3464
  static ɵcmp: i0.ɵɵComponentDeclaration<ThermometerIconComponent, "ea-icon-thermometer", never, {}, {}, never, never, true, never>;
2182
3465
  }
2183
3466
 
2184
- declare class ThumbsDownIconComponent {
3467
+ declare class ThumbsDownIconComponent extends IconComponentBase {
3468
+ static readonly slug = "thumbs-down";
3469
+ static readonly category: IconCategory;
3470
+ static readonly tags: ReadonlyArray<string>;
2185
3471
  static ɵfac: i0.ɵɵFactoryDeclaration<ThumbsDownIconComponent, never>;
2186
3472
  static ɵcmp: i0.ɵɵComponentDeclaration<ThumbsDownIconComponent, "ea-icon-thumbs-down", never, {}, {}, never, never, true, never>;
2187
3473
  }
2188
3474
 
2189
- declare class ThumbsUpIconComponent {
3475
+ declare class ThumbsUpIconComponent extends IconComponentBase {
3476
+ static readonly slug = "thumbs-up";
3477
+ static readonly category: IconCategory;
3478
+ static readonly tags: ReadonlyArray<string>;
2190
3479
  static ɵfac: i0.ɵɵFactoryDeclaration<ThumbsUpIconComponent, never>;
2191
3480
  static ɵcmp: i0.ɵɵComponentDeclaration<ThumbsUpIconComponent, "ea-icon-thumbs-up", never, {}, {}, never, never, true, never>;
2192
3481
  }
2193
3482
 
2194
- declare class ToggleLeftIconComponent {
3483
+ declare class ToggleLeftIconComponent extends IconComponentBase {
3484
+ static readonly slug = "toggle-left";
3485
+ static readonly category: IconCategory;
3486
+ static readonly tags: ReadonlyArray<string>;
2195
3487
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleLeftIconComponent, never>;
2196
3488
  static ɵcmp: i0.ɵɵComponentDeclaration<ToggleLeftIconComponent, "ea-icon-toggle-left", never, {}, {}, never, never, true, never>;
2197
3489
  }
2198
3490
 
2199
- declare class ToggleRightIconComponent {
3491
+ declare class ToggleRightIconComponent extends IconComponentBase {
3492
+ static readonly slug = "toggle-right";
3493
+ static readonly category: IconCategory;
3494
+ static readonly tags: ReadonlyArray<string>;
2200
3495
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleRightIconComponent, never>;
2201
3496
  static ɵcmp: i0.ɵɵComponentDeclaration<ToggleRightIconComponent, "ea-icon-toggle-right", never, {}, {}, never, never, true, never>;
2202
3497
  }
2203
3498
 
2204
- declare class ToolIconComponent {
3499
+ declare class ToolIconComponent extends IconComponentBase {
3500
+ static readonly slug = "tool";
3501
+ static readonly category: IconCategory;
3502
+ static readonly tags: ReadonlyArray<string>;
2205
3503
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolIconComponent, never>;
2206
3504
  static ɵcmp: i0.ɵɵComponentDeclaration<ToolIconComponent, "ea-icon-tool", never, {}, {}, never, never, true, never>;
2207
3505
  }
2208
3506
 
2209
- declare class TrashIconComponent {
3507
+ declare class TrashIconComponent extends IconComponentBase {
3508
+ static readonly slug = "trash";
3509
+ static readonly category: IconCategory;
3510
+ static readonly tags: ReadonlyArray<string>;
2210
3511
  static ɵfac: i0.ɵɵFactoryDeclaration<TrashIconComponent, never>;
2211
3512
  static ɵcmp: i0.ɵɵComponentDeclaration<TrashIconComponent, "ea-icon-trash", never, {}, {}, never, never, true, never>;
2212
3513
  }
2213
3514
 
2214
- declare class Trash2IconComponent {
3515
+ declare class Trash2IconComponent extends IconComponentBase {
3516
+ static readonly slug = "trash-2";
3517
+ static readonly category: IconCategory;
3518
+ static readonly tags: ReadonlyArray<string>;
2215
3519
  static ɵfac: i0.ɵɵFactoryDeclaration<Trash2IconComponent, never>;
2216
3520
  static ɵcmp: i0.ɵɵComponentDeclaration<Trash2IconComponent, "ea-icon-trash-2", never, {}, {}, never, never, true, never>;
2217
3521
  }
2218
3522
 
2219
- declare class TrendingDownIconComponent {
3523
+ declare class TrelloIconComponent extends IconComponentBase {
3524
+ static readonly slug = "trello";
3525
+ static readonly category: IconCategory;
3526
+ static readonly tags: ReadonlyArray<string>;
3527
+ static ɵfac: i0.ɵɵFactoryDeclaration<TrelloIconComponent, never>;
3528
+ static ɵcmp: i0.ɵɵComponentDeclaration<TrelloIconComponent, "ea-icon-trello", never, {}, {}, never, never, true, never>;
3529
+ }
3530
+
3531
+ declare class TrendingDownIconComponent extends IconComponentBase {
3532
+ static readonly slug = "trending-down";
3533
+ static readonly category: IconCategory;
3534
+ static readonly tags: ReadonlyArray<string>;
2220
3535
  static ɵfac: i0.ɵɵFactoryDeclaration<TrendingDownIconComponent, never>;
2221
3536
  static ɵcmp: i0.ɵɵComponentDeclaration<TrendingDownIconComponent, "ea-icon-trending-down", never, {}, {}, never, never, true, never>;
2222
3537
  }
2223
3538
 
2224
- declare class TrendingUpIconComponent {
3539
+ declare class TrendingUpIconComponent extends IconComponentBase {
3540
+ static readonly slug = "trending-up";
3541
+ static readonly category: IconCategory;
3542
+ static readonly tags: ReadonlyArray<string>;
2225
3543
  static ɵfac: i0.ɵɵFactoryDeclaration<TrendingUpIconComponent, never>;
2226
3544
  static ɵcmp: i0.ɵɵComponentDeclaration<TrendingUpIconComponent, "ea-icon-trending-up", never, {}, {}, never, never, true, never>;
2227
3545
  }
2228
3546
 
2229
- declare class TriangleIconComponent {
3547
+ declare class TriangleIconComponent extends IconComponentBase {
3548
+ static readonly slug = "triangle";
3549
+ static readonly category: IconCategory;
3550
+ static readonly tags: ReadonlyArray<string>;
2230
3551
  static ɵfac: i0.ɵɵFactoryDeclaration<TriangleIconComponent, never>;
2231
3552
  static ɵcmp: i0.ɵɵComponentDeclaration<TriangleIconComponent, "ea-icon-triangle", never, {}, {}, never, never, true, never>;
2232
3553
  }
2233
3554
 
2234
- declare class TruckIconComponent {
3555
+ declare class TrophyIconComponent extends IconComponentBase {
3556
+ static readonly slug = "trophy";
3557
+ static readonly category: IconCategory;
3558
+ static readonly tags: ReadonlyArray<string>;
3559
+ static ɵfac: i0.ɵɵFactoryDeclaration<TrophyIconComponent, never>;
3560
+ static ɵcmp: i0.ɵɵComponentDeclaration<TrophyIconComponent, "ea-icon-trophy", never, {}, {}, never, never, true, never>;
3561
+ }
3562
+
3563
+ declare class TruckIconComponent extends IconComponentBase {
3564
+ static readonly slug = "truck";
3565
+ static readonly category: IconCategory;
3566
+ static readonly tags: ReadonlyArray<string>;
2235
3567
  static ɵfac: i0.ɵɵFactoryDeclaration<TruckIconComponent, never>;
2236
3568
  static ɵcmp: i0.ɵɵComponentDeclaration<TruckIconComponent, "ea-icon-truck", never, {}, {}, never, never, true, never>;
2237
3569
  }
2238
3570
 
2239
- declare class TvIconComponent {
3571
+ declare class TvIconComponent extends IconComponentBase {
3572
+ static readonly slug = "tv";
3573
+ static readonly category: IconCategory;
3574
+ static readonly tags: ReadonlyArray<string>;
2240
3575
  static ɵfac: i0.ɵɵFactoryDeclaration<TvIconComponent, never>;
2241
3576
  static ɵcmp: i0.ɵɵComponentDeclaration<TvIconComponent, "ea-icon-tv", never, {}, {}, never, never, true, never>;
2242
3577
  }
2243
3578
 
2244
- declare class TwitchIconComponent {
2245
- readonly brand: i0.InputSignal<boolean>;
3579
+ /**
3580
+ * Twitch icon (Feather outline).
3581
+ *
3582
+ * @remarks
3583
+ * Prior to v1.4 this slug rendered Eagami's brand-filled Twitch mark. v1.4
3584
+ * aligns the canonical slug with Feather Icons, so `TwitchIconComponent` now
3585
+ * renders Feather's outline. The brand-filled mark that previously shipped
3586
+ * here has moved to `<ea-icon-twitch-2>` / `Twitch2IconComponent`.
3587
+ */
3588
+ declare class TwitchIconComponent extends IconComponentBase {
3589
+ static readonly slug = "twitch";
3590
+ static readonly category: IconCategory;
3591
+ static readonly isBrand = true;
3592
+ static readonly tags: ReadonlyArray<string>;
2246
3593
  static ɵfac: i0.ɵɵFactoryDeclaration<TwitchIconComponent, never>;
2247
- static ɵcmp: i0.ɵɵComponentDeclaration<TwitchIconComponent, "ea-icon-twitch", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3594
+ static ɵcmp: i0.ɵɵComponentDeclaration<TwitchIconComponent, "ea-icon-twitch", never, {}, {}, never, never, true, never>;
3595
+ }
3596
+
3597
+ /**
3598
+ * Twitch brand mark (Eagami brand-filled).
3599
+ *
3600
+ * @remarks
3601
+ * Up to v1.3 this design shipped as `TwitchIconComponent` at slug
3602
+ * `ea-icon-twitch`. v1.4 reassigns the canonical slug to Feather's outline
3603
+ * and moves the brand-filled mark here. Set the `brand` input to render in
3604
+ * the official brand colour.
3605
+ */
3606
+ declare class Twitch2IconComponent extends IconComponentBase {
3607
+ static readonly slug = "twitch-2";
3608
+ static readonly category: IconCategory;
3609
+ static readonly isBrand = true;
3610
+ static readonly tags: ReadonlyArray<string>;
3611
+ readonly brand: i0.InputSignal<boolean>;
3612
+ static ɵfac: i0.ɵɵFactoryDeclaration<Twitch2IconComponent, never>;
3613
+ static ɵcmp: i0.ɵɵComponentDeclaration<Twitch2IconComponent, "ea-icon-twitch-2", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3614
+ }
3615
+
3616
+ declare class TwitterIconComponent extends IconComponentBase {
3617
+ static readonly slug = "twitter";
3618
+ static readonly category: IconCategory;
3619
+ static readonly tags: ReadonlyArray<string>;
3620
+ static ɵfac: i0.ɵɵFactoryDeclaration<TwitterIconComponent, never>;
3621
+ static ɵcmp: i0.ɵɵComponentDeclaration<TwitterIconComponent, "ea-icon-twitter", never, {}, {}, never, never, true, never>;
2248
3622
  }
2249
3623
 
2250
- declare class TypeIconComponent {
3624
+ declare class TypeIconComponent extends IconComponentBase {
3625
+ static readonly slug = "type";
3626
+ static readonly category: IconCategory;
3627
+ static readonly tags: ReadonlyArray<string>;
2251
3628
  static ɵfac: i0.ɵɵFactoryDeclaration<TypeIconComponent, never>;
2252
3629
  static ɵcmp: i0.ɵɵComponentDeclaration<TypeIconComponent, "ea-icon-type", never, {}, {}, never, never, true, never>;
2253
3630
  }
2254
3631
 
2255
- declare class UmbrellaIconComponent {
3632
+ declare class UmbrellaIconComponent extends IconComponentBase {
3633
+ static readonly slug = "umbrella";
3634
+ static readonly category: IconCategory;
3635
+ static readonly tags: ReadonlyArray<string>;
2256
3636
  static ɵfac: i0.ɵɵFactoryDeclaration<UmbrellaIconComponent, never>;
2257
3637
  static ɵcmp: i0.ɵɵComponentDeclaration<UmbrellaIconComponent, "ea-icon-umbrella", never, {}, {}, never, never, true, never>;
2258
3638
  }
2259
3639
 
2260
- declare class UnderlineIconComponent {
3640
+ declare class UnderlineIconComponent extends IconComponentBase {
3641
+ static readonly slug = "underline";
3642
+ static readonly category: IconCategory;
3643
+ static readonly tags: ReadonlyArray<string>;
2261
3644
  static ɵfac: i0.ɵɵFactoryDeclaration<UnderlineIconComponent, never>;
2262
3645
  static ɵcmp: i0.ɵɵComponentDeclaration<UnderlineIconComponent, "ea-icon-underline", never, {}, {}, never, never, true, never>;
2263
3646
  }
2264
3647
 
2265
- declare class UnlockIconComponent {
3648
+ declare class UnlockIconComponent extends IconComponentBase {
3649
+ static readonly slug = "unlock";
3650
+ static readonly category: IconCategory;
3651
+ static readonly tags: ReadonlyArray<string>;
2266
3652
  static ɵfac: i0.ɵɵFactoryDeclaration<UnlockIconComponent, never>;
2267
3653
  static ɵcmp: i0.ɵɵComponentDeclaration<UnlockIconComponent, "ea-icon-unlock", never, {}, {}, never, never, true, never>;
2268
3654
  }
2269
3655
 
2270
- declare class UploadIconComponent {
3656
+ declare class UploadIconComponent extends IconComponentBase {
3657
+ static readonly slug = "upload";
3658
+ static readonly category: IconCategory;
3659
+ static readonly tags: ReadonlyArray<string>;
2271
3660
  static ɵfac: i0.ɵɵFactoryDeclaration<UploadIconComponent, never>;
2272
3661
  static ɵcmp: i0.ɵɵComponentDeclaration<UploadIconComponent, "ea-icon-upload", never, {}, {}, never, never, true, never>;
2273
3662
  }
2274
3663
 
2275
- declare class UploadCloudIconComponent {
3664
+ declare class UploadCloudIconComponent extends IconComponentBase {
3665
+ static readonly slug = "upload-cloud";
3666
+ static readonly category: IconCategory;
3667
+ static readonly tags: ReadonlyArray<string>;
2276
3668
  static ɵfac: i0.ɵɵFactoryDeclaration<UploadCloudIconComponent, never>;
2277
3669
  static ɵcmp: i0.ɵɵComponentDeclaration<UploadCloudIconComponent, "ea-icon-upload-cloud", never, {}, {}, never, never, true, never>;
2278
3670
  }
2279
3671
 
2280
- declare class UserIconComponent {
3672
+ declare class UserIconComponent extends IconComponentBase {
3673
+ static readonly slug = "user";
3674
+ static readonly category: IconCategory;
3675
+ static readonly tags: ReadonlyArray<string>;
2281
3676
  static ɵfac: i0.ɵɵFactoryDeclaration<UserIconComponent, never>;
2282
3677
  static ɵcmp: i0.ɵɵComponentDeclaration<UserIconComponent, "ea-icon-user", never, {}, {}, never, never, true, never>;
2283
3678
  }
2284
3679
 
2285
- declare class UserCheckIconComponent {
3680
+ declare class UserCheckIconComponent extends IconComponentBase {
3681
+ static readonly slug = "user-check";
3682
+ static readonly category: IconCategory;
3683
+ static readonly tags: ReadonlyArray<string>;
2286
3684
  static ɵfac: i0.ɵɵFactoryDeclaration<UserCheckIconComponent, never>;
2287
3685
  static ɵcmp: i0.ɵɵComponentDeclaration<UserCheckIconComponent, "ea-icon-user-check", never, {}, {}, never, never, true, never>;
2288
3686
  }
2289
3687
 
2290
- declare class UserMinusIconComponent {
3688
+ declare class UserMinusIconComponent extends IconComponentBase {
3689
+ static readonly slug = "user-minus";
3690
+ static readonly category: IconCategory;
3691
+ static readonly tags: ReadonlyArray<string>;
2291
3692
  static ɵfac: i0.ɵɵFactoryDeclaration<UserMinusIconComponent, never>;
2292
3693
  static ɵcmp: i0.ɵɵComponentDeclaration<UserMinusIconComponent, "ea-icon-user-minus", never, {}, {}, never, never, true, never>;
2293
3694
  }
2294
3695
 
2295
- declare class UserPlusIconComponent {
3696
+ declare class UserPlusIconComponent extends IconComponentBase {
3697
+ static readonly slug = "user-plus";
3698
+ static readonly category: IconCategory;
3699
+ static readonly tags: ReadonlyArray<string>;
2296
3700
  static ɵfac: i0.ɵɵFactoryDeclaration<UserPlusIconComponent, never>;
2297
3701
  static ɵcmp: i0.ɵɵComponentDeclaration<UserPlusIconComponent, "ea-icon-user-plus", never, {}, {}, never, never, true, never>;
2298
3702
  }
2299
3703
 
2300
- declare class UserXIconComponent {
3704
+ declare class UserXIconComponent extends IconComponentBase {
3705
+ static readonly slug = "user-x";
3706
+ static readonly category: IconCategory;
3707
+ static readonly tags: ReadonlyArray<string>;
2301
3708
  static ɵfac: i0.ɵɵFactoryDeclaration<UserXIconComponent, never>;
2302
3709
  static ɵcmp: i0.ɵɵComponentDeclaration<UserXIconComponent, "ea-icon-user-x", never, {}, {}, never, never, true, never>;
2303
3710
  }
2304
3711
 
2305
- declare class UsersIconComponent {
3712
+ declare class UsersIconComponent extends IconComponentBase {
3713
+ static readonly slug = "users";
3714
+ static readonly category: IconCategory;
3715
+ static readonly tags: ReadonlyArray<string>;
2306
3716
  static ɵfac: i0.ɵɵFactoryDeclaration<UsersIconComponent, never>;
2307
3717
  static ɵcmp: i0.ɵɵComponentDeclaration<UsersIconComponent, "ea-icon-users", never, {}, {}, never, never, true, never>;
2308
3718
  }
2309
3719
 
2310
- declare class VercelIconComponent {
3720
+ declare class VercelIconComponent extends IconComponentBase {
3721
+ static readonly slug = "vercel";
3722
+ static readonly category: IconCategory;
3723
+ static readonly isBrand = true;
3724
+ static readonly tags: ReadonlyArray<string>;
2311
3725
  readonly brand: i0.InputSignal<boolean>;
2312
3726
  static ɵfac: i0.ɵɵFactoryDeclaration<VercelIconComponent, never>;
2313
3727
  static ɵcmp: i0.ɵɵComponentDeclaration<VercelIconComponent, "ea-icon-vercel", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2314
3728
  }
2315
3729
 
2316
- declare class VideoIconComponent {
3730
+ declare class VideoIconComponent extends IconComponentBase {
3731
+ static readonly slug = "video";
3732
+ static readonly category: IconCategory;
3733
+ static readonly tags: ReadonlyArray<string>;
2317
3734
  static ɵfac: i0.ɵɵFactoryDeclaration<VideoIconComponent, never>;
2318
3735
  static ɵcmp: i0.ɵɵComponentDeclaration<VideoIconComponent, "ea-icon-video", never, {}, {}, never, never, true, never>;
2319
3736
  }
2320
3737
 
2321
- declare class VideoOffIconComponent {
3738
+ declare class VideoOffIconComponent extends IconComponentBase {
3739
+ static readonly slug = "video-off";
3740
+ static readonly category: IconCategory;
3741
+ static readonly tags: ReadonlyArray<string>;
2322
3742
  static ɵfac: i0.ɵɵFactoryDeclaration<VideoOffIconComponent, never>;
2323
3743
  static ɵcmp: i0.ɵɵComponentDeclaration<VideoOffIconComponent, "ea-icon-video-off", never, {}, {}, never, never, true, never>;
2324
3744
  }
2325
3745
 
2326
- declare class VoicemailIconComponent {
3746
+ declare class VoicemailIconComponent extends IconComponentBase {
3747
+ static readonly slug = "voicemail";
3748
+ static readonly category: IconCategory;
3749
+ static readonly tags: ReadonlyArray<string>;
2327
3750
  static ɵfac: i0.ɵɵFactoryDeclaration<VoicemailIconComponent, never>;
2328
3751
  static ɵcmp: i0.ɵɵComponentDeclaration<VoicemailIconComponent, "ea-icon-voicemail", never, {}, {}, never, never, true, never>;
2329
3752
  }
2330
3753
 
2331
- declare class VolumeIconComponent {
3754
+ declare class VolumeIconComponent extends IconComponentBase {
3755
+ static readonly slug = "volume";
3756
+ static readonly category: IconCategory;
3757
+ static readonly tags: ReadonlyArray<string>;
2332
3758
  static ɵfac: i0.ɵɵFactoryDeclaration<VolumeIconComponent, never>;
2333
3759
  static ɵcmp: i0.ɵɵComponentDeclaration<VolumeIconComponent, "ea-icon-volume", never, {}, {}, never, never, true, never>;
2334
3760
  }
2335
3761
 
2336
- declare class Volume1IconComponent {
3762
+ declare class Volume1IconComponent extends IconComponentBase {
3763
+ static readonly slug = "volume-1";
3764
+ static readonly category: IconCategory;
3765
+ static readonly tags: ReadonlyArray<string>;
2337
3766
  static ɵfac: i0.ɵɵFactoryDeclaration<Volume1IconComponent, never>;
2338
3767
  static ɵcmp: i0.ɵɵComponentDeclaration<Volume1IconComponent, "ea-icon-volume-1", never, {}, {}, never, never, true, never>;
2339
3768
  }
2340
3769
 
2341
- declare class Volume2IconComponent {
3770
+ declare class Volume2IconComponent extends IconComponentBase {
3771
+ static readonly slug = "volume-2";
3772
+ static readonly category: IconCategory;
3773
+ static readonly tags: ReadonlyArray<string>;
2342
3774
  static ɵfac: i0.ɵɵFactoryDeclaration<Volume2IconComponent, never>;
2343
3775
  static ɵcmp: i0.ɵɵComponentDeclaration<Volume2IconComponent, "ea-icon-volume-2", never, {}, {}, never, never, true, never>;
2344
3776
  }
2345
3777
 
2346
- declare class VolumeXIconComponent {
3778
+ declare class VolumeXIconComponent extends IconComponentBase {
3779
+ static readonly slug = "volume-x";
3780
+ static readonly category: IconCategory;
3781
+ static readonly tags: ReadonlyArray<string>;
2347
3782
  static ɵfac: i0.ɵɵFactoryDeclaration<VolumeXIconComponent, never>;
2348
3783
  static ɵcmp: i0.ɵɵComponentDeclaration<VolumeXIconComponent, "ea-icon-volume-x", never, {}, {}, never, never, true, never>;
2349
3784
  }
2350
3785
 
2351
- declare class WatchIconComponent {
3786
+ declare class WatchIconComponent extends IconComponentBase {
3787
+ static readonly slug = "watch";
3788
+ static readonly category: IconCategory;
3789
+ static readonly tags: ReadonlyArray<string>;
2352
3790
  static ɵfac: i0.ɵɵFactoryDeclaration<WatchIconComponent, never>;
2353
3791
  static ɵcmp: i0.ɵɵComponentDeclaration<WatchIconComponent, "ea-icon-watch", never, {}, {}, never, never, true, never>;
2354
3792
  }
2355
3793
 
2356
- declare class WifiIconComponent {
3794
+ declare class WifiIconComponent extends IconComponentBase {
3795
+ static readonly slug = "wifi";
3796
+ static readonly category: IconCategory;
3797
+ static readonly tags: ReadonlyArray<string>;
2357
3798
  static ɵfac: i0.ɵɵFactoryDeclaration<WifiIconComponent, never>;
2358
3799
  static ɵcmp: i0.ɵɵComponentDeclaration<WifiIconComponent, "ea-icon-wifi", never, {}, {}, never, never, true, never>;
2359
3800
  }
2360
3801
 
2361
- declare class WifiOffIconComponent {
3802
+ declare class WifiOffIconComponent extends IconComponentBase {
3803
+ static readonly slug = "wifi-off";
3804
+ static readonly category: IconCategory;
3805
+ static readonly tags: ReadonlyArray<string>;
2362
3806
  static ɵfac: i0.ɵɵFactoryDeclaration<WifiOffIconComponent, never>;
2363
3807
  static ɵcmp: i0.ɵɵComponentDeclaration<WifiOffIconComponent, "ea-icon-wifi-off", never, {}, {}, never, never, true, never>;
2364
3808
  }
2365
3809
 
2366
- declare class WindIconComponent {
3810
+ declare class WindIconComponent extends IconComponentBase {
3811
+ static readonly slug = "wind";
3812
+ static readonly category: IconCategory;
3813
+ static readonly tags: ReadonlyArray<string>;
2367
3814
  static ɵfac: i0.ɵɵFactoryDeclaration<WindIconComponent, never>;
2368
3815
  static ɵcmp: i0.ɵɵComponentDeclaration<WindIconComponent, "ea-icon-wind", never, {}, {}, never, never, true, never>;
2369
3816
  }
2370
3817
 
2371
- declare class XIconComponent {
3818
+ declare class XIconComponent extends IconComponentBase {
3819
+ static readonly slug = "x";
3820
+ static readonly category: IconCategory;
3821
+ static readonly tags: ReadonlyArray<string>;
2372
3822
  static ɵfac: i0.ɵɵFactoryDeclaration<XIconComponent, never>;
2373
3823
  static ɵcmp: i0.ɵɵComponentDeclaration<XIconComponent, "ea-icon-x", never, {}, {}, never, never, true, never>;
2374
3824
  }
2375
3825
 
2376
- declare class XCircleIconComponent {
3826
+ declare class XCircleIconComponent extends IconComponentBase {
3827
+ static readonly slug = "x-circle";
3828
+ static readonly category: IconCategory;
3829
+ static readonly tags: ReadonlyArray<string>;
2377
3830
  static ɵfac: i0.ɵɵFactoryDeclaration<XCircleIconComponent, never>;
2378
3831
  static ɵcmp: i0.ɵɵComponentDeclaration<XCircleIconComponent, "ea-icon-x-circle", never, {}, {}, never, never, true, never>;
2379
3832
  }
2380
3833
 
2381
- declare class XOctagonIconComponent {
3834
+ declare class XOctagonIconComponent extends IconComponentBase {
3835
+ static readonly slug = "x-octagon";
3836
+ static readonly category: IconCategory;
3837
+ static readonly tags: ReadonlyArray<string>;
2382
3838
  static ɵfac: i0.ɵɵFactoryDeclaration<XOctagonIconComponent, never>;
2383
3839
  static ɵcmp: i0.ɵɵComponentDeclaration<XOctagonIconComponent, "ea-icon-x-octagon", never, {}, {}, never, never, true, never>;
2384
3840
  }
2385
3841
 
2386
- declare class XSquareIconComponent {
3842
+ declare class XSquareIconComponent extends IconComponentBase {
3843
+ static readonly slug = "x-square";
3844
+ static readonly category: IconCategory;
3845
+ static readonly tags: ReadonlyArray<string>;
2387
3846
  static ɵfac: i0.ɵɵFactoryDeclaration<XSquareIconComponent, never>;
2388
3847
  static ɵcmp: i0.ɵɵComponentDeclaration<XSquareIconComponent, "ea-icon-x-square", never, {}, {}, never, never, true, never>;
2389
3848
  }
2390
3849
 
2391
- declare class XTwitterIconComponent {
3850
+ declare class XTwitterIconComponent extends IconComponentBase {
3851
+ static readonly slug = "x-twitter";
3852
+ static readonly category: IconCategory;
3853
+ static readonly isBrand = true;
3854
+ static readonly tags: ReadonlyArray<string>;
2392
3855
  readonly brand: i0.InputSignal<boolean>;
2393
3856
  static ɵfac: i0.ɵɵFactoryDeclaration<XTwitterIconComponent, never>;
2394
3857
  static ɵcmp: i0.ɵɵComponentDeclaration<XTwitterIconComponent, "ea-icon-x-twitter", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2395
3858
  }
2396
3859
 
2397
- declare class YoutubeIconComponent {
2398
- readonly brand: i0.InputSignal<boolean>;
3860
+ /**
3861
+ * YouTube icon (Feather outline).
3862
+ *
3863
+ * @remarks
3864
+ * Prior to v1.4 this slug rendered Eagami's brand-filled YouTube mark. v1.4
3865
+ * aligns the canonical slug with Feather Icons, so `YoutubeIconComponent` now
3866
+ * renders Feather's outline. The brand-filled mark that previously shipped
3867
+ * here has moved to `<ea-icon-youtube-2>` / `Youtube2IconComponent`.
3868
+ */
3869
+ declare class YoutubeIconComponent extends IconComponentBase {
3870
+ static readonly slug = "youtube";
3871
+ static readonly category: IconCategory;
3872
+ static readonly isBrand = true;
3873
+ static readonly tags: ReadonlyArray<string>;
2399
3874
  static ɵfac: i0.ɵɵFactoryDeclaration<YoutubeIconComponent, never>;
2400
- static ɵcmp: i0.ɵɵComponentDeclaration<YoutubeIconComponent, "ea-icon-youtube", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3875
+ static ɵcmp: i0.ɵɵComponentDeclaration<YoutubeIconComponent, "ea-icon-youtube", never, {}, {}, never, never, true, never>;
3876
+ }
3877
+
3878
+ /**
3879
+ * YouTube brand mark (Eagami brand-filled).
3880
+ *
3881
+ * @remarks
3882
+ * Up to v1.3 this design shipped as `YoutubeIconComponent` at slug
3883
+ * `ea-icon-youtube`. v1.4 reassigns the canonical slug to Feather's outline
3884
+ * and moves the brand-filled mark here. Set the `brand` input to render in
3885
+ * the official brand colour.
3886
+ */
3887
+ declare class Youtube2IconComponent extends IconComponentBase {
3888
+ static readonly slug = "youtube-2";
3889
+ static readonly category: IconCategory;
3890
+ static readonly isBrand = true;
3891
+ static readonly tags: ReadonlyArray<string>;
3892
+ readonly brand: i0.InputSignal<boolean>;
3893
+ static ɵfac: i0.ɵɵFactoryDeclaration<Youtube2IconComponent, never>;
3894
+ static ɵcmp: i0.ɵɵComponentDeclaration<Youtube2IconComponent, "ea-icon-youtube-2", never, { "brand": { "alias": "brand"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2401
3895
  }
2402
3896
 
2403
- declare class ZapIconComponent {
3897
+ declare class ZapIconComponent extends IconComponentBase {
3898
+ static readonly slug = "zap";
3899
+ static readonly category: IconCategory;
3900
+ static readonly tags: ReadonlyArray<string>;
2404
3901
  static ɵfac: i0.ɵɵFactoryDeclaration<ZapIconComponent, never>;
2405
3902
  static ɵcmp: i0.ɵɵComponentDeclaration<ZapIconComponent, "ea-icon-zap", never, {}, {}, never, never, true, never>;
2406
3903
  }
2407
3904
 
2408
- declare class ZapOffIconComponent {
3905
+ declare class ZapOffIconComponent extends IconComponentBase {
3906
+ static readonly slug = "zap-off";
3907
+ static readonly category: IconCategory;
3908
+ static readonly tags: ReadonlyArray<string>;
2409
3909
  static ɵfac: i0.ɵɵFactoryDeclaration<ZapOffIconComponent, never>;
2410
3910
  static ɵcmp: i0.ɵɵComponentDeclaration<ZapOffIconComponent, "ea-icon-zap-off", never, {}, {}, never, never, true, never>;
2411
3911
  }
2412
3912
 
2413
- declare class ZoomInIconComponent {
3913
+ declare class ZoomInIconComponent extends IconComponentBase {
3914
+ static readonly slug = "zoom-in";
3915
+ static readonly category: IconCategory;
3916
+ static readonly tags: ReadonlyArray<string>;
2414
3917
  static ɵfac: i0.ɵɵFactoryDeclaration<ZoomInIconComponent, never>;
2415
3918
  static ɵcmp: i0.ɵɵComponentDeclaration<ZoomInIconComponent, "ea-icon-zoom-in", never, {}, {}, never, never, true, never>;
2416
3919
  }
2417
3920
 
2418
- declare class ZoomOutIconComponent {
3921
+ declare class ZoomOutIconComponent extends IconComponentBase {
3922
+ static readonly slug = "zoom-out";
3923
+ static readonly category: IconCategory;
3924
+ static readonly tags: ReadonlyArray<string>;
2419
3925
  static ɵfac: i0.ɵɵFactoryDeclaration<ZoomOutIconComponent, never>;
2420
3926
  static ɵcmp: i0.ɵɵComponentDeclaration<ZoomOutIconComponent, "ea-icon-zoom-out", never, {}, {}, never, never, true, never>;
2421
3927
  }
@@ -3115,5 +4621,5 @@ declare class TooltipDirective implements OnDestroy {
3115
4621
  static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[eaTooltip]", never, { "eaTooltip": { "alias": "eaTooltip"; "required": true; "isSignal": true; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3116
4622
  }
3117
4623
 
3118
- export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, AppleIconComponent, ArchiveIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftIconComponent, ArrowRightIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkIconComponent, BoxIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CardComponent, CheckCircleIconComponent, CheckIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsUpDownIconComponent, ChromeIconComponent, ClipboardIconComponent, ClockIconComponent, CloudIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, ColumnsIconComponent, CommandIconComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_MESSAGES, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FigmaIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FilmIconComponent, FilterIconComponent, FlagIconComponent, FolderIconComponent, FrownIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HomeIconComponent, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, ItalicIconComponent, KeyIconComponent, KubernetesIconComponent, LayersIconComponent, LayoutIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, LinkedinIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MehIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MessageCircleIconComponent, MessageSquareIconComponent, MicIconComponent, MicOffIconComponent, MicrosoftIconComponent, Minimize2IconComponent, MinimizeIconComponent, MinusCircleIconComponent, MinusIconComponent, MinusSquareIconComponent, MongodbIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, MoreVerticalIconComponent, MousePointerIconComponent, MoveIconComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NotionIconComponent, NpmIconComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PencilIconComponent, PercentIconComponent, PhoneIconComponent, PieChartIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RedditIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TargetIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, Trash2IconComponent, TrashIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TruckIconComponent, TvIconComponent, TwitchIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WatchIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, el, en, esES, frFR, frenchSpacing, pl, provideEagamiUi };
3119
- export type { AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DialogSize, DividerOrientation, DrawerPosition, DrawerSize, DropdownSize, EagamiI18nConfig, EagamiLocale, EagamiMessages, EagamiMessagesOverride, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, InputSize, InputType, MenuItemVariant, MenuPlacement, PaginatorAlign, PaginatorState, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, Toast, ToastOptions, ToastVariant, TooltipPosition };
4624
+ export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, AppleIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkIconComponent, BottleIconComponent, BoxIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, ColumnsIconComponent, CommandIconComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideCircleIconComponent, DivideIconComponent, DivideSquareIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DribbbleIconComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_MESSAGES, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, Figma2IconComponent, FigmaIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FilmIconComponent, FilterIconComponent, FlagIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FramerIconComponent, FrownIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KubernetesIconComponent, LampIconComponent, LayersIconComponent, LayoutIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailIconComponent, MapIconComponent, MapPinIconComponent, MastercardIconComponent, Maximize2IconComponent, MaximizeIconComponent, MehIconComponent, MenuComponent, MenuIconComponent, MenuItemComponent, MenuTriggerDirective, MessageCircleIconComponent, MessageSquareIconComponent, MicIconComponent, MicOffIconComponent, MicrosoftIconComponent, Minimize2IconComponent, MinimizeIconComponent, MinusCircleIconComponent, MinusIconComponent, MinusSquareIconComponent, MongodbIconComponent, MonitorIconComponent, MoonIconComponent, MoreHorizontalIconComponent, MoreVerticalIconComponent, MousePointerIconComponent, MoveIconComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NotionIconComponent, NpmIconComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PencilIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SoccerBallIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TargetIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, Trash2IconComponent, TrashIconComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WatchIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, el, en, esES, frFR, frenchSpacing, iconDisplayName, pl, provideEagamiUi };
4625
+ export type { AlertVariant, AutocompleteSize, AvatarEditorCropEvent, AvatarEditorCropState, AvatarEditorShape, AvatarShape, AvatarSize, BadgeSize, BadgeVariant, BreadcrumbClickEvent, BreadcrumbItem, BreadcrumbsSeparator, ButtonSize, ButtonType, ButtonVariant, CardHeaderAlign, CardPadding, CardVariant, CheckboxSize, CodeInputSize, DataTableColumn, DataTableDensity, DataTableSortDirection, DataTableSortState, DatePickerFormat, DatePickerSize, DatePickerValue, DatePickerWeekStart, DialogSize, DividerOrientation, DrawerPosition, DrawerSize, DropdownSize, EagamiI18nConfig, EagamiLocale, EagamiMessages, EagamiMessagesOverride, EagamiWordmarkLayout, EagamiWordmarkVariant, EmptyStateHeadingLevel, EmptyStateSize, IconCategory, IconComponentType, IconMeta, InputSize, InputType, MenuItemVariant, MenuPlacement, PaginatorAlign, PaginatorState, ProgressBarSize, ProgressBarVariant, RadioOrientation, RadioSize, SegmentedSize, SelectOption, SkeletonVariant, SliderSize, SpinnerSize, SwitchSize, TabsSize, TabsVariant, TagSize, TagVariant, TextareaResize, TextareaSize, Toast, ToastOptions, ToastVariant, TooltipPosition };