@eagami/ui 4.2.0 → 4.3.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.
@@ -6496,9 +6496,13 @@ class DataTableComponent {
6496
6496
  noDataText = input(undefined, ...(ngDevMode ? [{ debugName: "noDataText" }] : /* istanbul ignore next */ []));
6497
6497
  /** Enables grid keyboard navigation: `role="grid"`, roving tabindex, and arrow-key cell movement. */
6498
6498
  navigable = input(false, ...(ngDevMode ? [{ debugName: "navigable" }] : /* istanbul ignore next */ []));
6499
+ /** Marks body rows as clickable: shows a pointer cursor and emits `rowActivate` on click or Enter/Space. Independent of `hoverable` and `navigable`. */
6500
+ clickable = input(false, ...(ngDevMode ? [{ debugName: "clickable" }] : /* istanbul ignore next */ []));
6499
6501
  sort = model({ column: '', direction: null }, ...(ngDevMode ? [{ debugName: "sort" }] : /* istanbul ignore next */ []));
6500
6502
  /** Fires whenever the sort column or direction changes via header click. */
6501
6503
  sorted = output();
6504
+ /** Fires with the row's data when a body row is activated by click or Enter/Space while `clickable` is set. */
6505
+ rowActivate = output();
6502
6506
  noDataTemplate = contentChild('noData', ...(ngDevMode ? [{ debugName: "noDataTemplate" }] : /* istanbul ignore next */ []));
6503
6507
  /** Empty-state text, falling back to the active locale's translation. */
6504
6508
  resolvedNoDataText = computed(() => this.noDataText() ?? this.i18n.messages().dataTable.noData, ...(ngDevMode ? [{ debugName: "resolvedNoDataText" }] : /* istanbul ignore next */ []));
@@ -6509,6 +6513,7 @@ class DataTableComponent {
6509
6513
  'ea-data-table--hoverable': this.hoverable(),
6510
6514
  'ea-data-table--bordered': this.bordered(),
6511
6515
  'ea-data-table--navigable': this.navigable(),
6516
+ 'ea-data-table--clickable': this.clickable(),
6512
6517
  }), ...(ngDevMode ? [{ debugName: "hostClasses" }] : /* istanbul ignore next */ []));
6513
6518
  constructor() {
6514
6519
  // Keep the active cell in range as columns or row count change (sort, paging,
@@ -6599,6 +6604,20 @@ class DataTableComponent {
6599
6604
  const active = this.activeCell();
6600
6605
  return active.row === row && active.col === colIndex ? 0 : -1;
6601
6606
  }
6607
+ // Body rows are keyboard-focusable for activation only in clickable mode, and
6608
+ // only when grid navigation (which owns cell-level focus) is off.
6609
+ rowTabindex() {
6610
+ return this.clickable() && !this.navigable() ? 0 : null;
6611
+ }
6612
+ // Click passes no event; Enter/Space pass one so default scroll/re-trigger is
6613
+ // suppressed. In navigable mode the keydown bubbles up from the focused cell.
6614
+ onRowActivate(row, event) {
6615
+ if (!this.clickable()) {
6616
+ return;
6617
+ }
6618
+ event?.preventDefault();
6619
+ this.rowActivate.emit(row);
6620
+ }
6602
6621
  // Syncs roving focus when a cell is focused by mouse or keyboard tab
6603
6622
  onCellFocus(row, col) {
6604
6623
  if (!this.navigable()) {
@@ -6667,7 +6686,7 @@ class DataTableComponent {
6667
6686
  ?.focus();
6668
6687
  }
6669
6688
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: DataTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6670
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.16", type: DataTableComponent, isStandalone: true, selector: "ea-data-table", inputs: { columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: true, transformFunction: null }, data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired: true, transformFunction: null }, trackBy: { classPropertyName: "trackBy", publicName: "trackBy", isSignal: true, isRequired: false, transformFunction: null }, density: { classPropertyName: "density", publicName: "density", isSignal: true, isRequired: false, transformFunction: null }, stickyHeader: { classPropertyName: "stickyHeader", publicName: "stickyHeader", isSignal: true, isRequired: false, transformFunction: null }, striped: { classPropertyName: "striped", publicName: "striped", isSignal: true, isRequired: false, transformFunction: null }, hoverable: { classPropertyName: "hoverable", publicName: "hoverable", isSignal: true, isRequired: false, transformFunction: null }, bordered: { classPropertyName: "bordered", publicName: "bordered", isSignal: true, isRequired: false, transformFunction: null }, noDataText: { classPropertyName: "noDataText", publicName: "noDataText", isSignal: true, isRequired: false, transformFunction: null }, navigable: { classPropertyName: "navigable", publicName: "navigable", isSignal: true, isRequired: false, transformFunction: null }, sort: { classPropertyName: "sort", publicName: "sort", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { sort: "sortChange", sorted: "sorted" }, queries: [{ propertyName: "noDataTemplate", first: true, predicate: ["noData"], descendants: true, isSignal: true }], ngImport: i0, template: "<div\n class=\"ea-data-table\"\n [ngClass]=\"hostClasses()\">\n <div class=\"ea-data-table__scroll\">\n <table\n class=\"ea-data-table__table\"\n [attr.role]=\"navigable() ? 'grid' : null\"\n (keydown)=\"onGridKeydown($event)\">\n <thead class=\"ea-data-table__head\">\n <tr\n class=\"ea-data-table__row ea-data-table__row--header\"\n [attr.role]=\"navigable() ? 'row' : null\">\n @for (col of columns(); track col.key; let colIndex = $index) {\n <th\n scope=\"col\"\n class=\"ea-data-table__cell ea-data-table__cell--header\"\n [attr.role]=\"navigable() ? 'columnheader' : null\"\n [attr.data-ea-cell]=\"navigable() ? '0-' + colIndex : null\"\n [class.ea-data-table__cell--sortable]=\"col.sortable\"\n [class.ea-data-table__cell--sorted]=\"\n sort().column === col.key && sort().direction\n \"\n [class.ea-data-table__cell--align-center]=\"col.align === 'center'\"\n [class.ea-data-table__cell--align-right]=\"col.align === 'right'\"\n [style.width]=\"col.width ?? null\"\n [attr.aria-sort]=\"\n sort().column === col.key && sort().direction === 'asc'\n ? 'ascending'\n : sort().column === col.key && sort().direction === 'desc'\n ? 'descending'\n : col.sortable\n ? 'none'\n : null\n \"\n (click)=\"onHeaderClick(col)\"\n (keydown.enter)=\"onHeaderClick(col)\"\n (keydown.space)=\"$event.preventDefault(); onHeaderClick(col)\"\n (focus)=\"onCellFocus(0, colIndex)\"\n [attr.tabindex]=\"headerTabindex(col, colIndex)\">\n @if (col.headerTemplate) {\n <ng-container\n [ngTemplateOutlet]=\"col.headerTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: col }\" />\n } @else {\n <span class=\"ea-data-table__header-text\">{{ col.label }}</span>\n }\n @if (col.sortable) {\n <span class=\"ea-data-table__sort-icon\">\n @if (sort().column === col.key && sort().direction === 'asc') {\n <ea-icon-arrow-up />\n } @else if (sort().column === col.key && sort().direction === 'desc') {\n <ea-icon-arrow-down />\n } @else {\n <ea-icon-chevrons-up-down />\n }\n </span>\n }\n </th>\n }\n </tr>\n </thead>\n <tbody class=\"ea-data-table__body\">\n @if (sortedData().length === 0) {\n <tr\n class=\"ea-data-table__row ea-data-table__row--empty\"\n [attr.role]=\"navigable() ? 'row' : null\">\n <td\n class=\"ea-data-table__cell ea-data-table__cell--empty\"\n [attr.role]=\"navigable() ? 'gridcell' : null\"\n [attr.colspan]=\"columns().length\">\n @if (noDataTemplate()) {\n <ng-container [ngTemplateOutlet]=\"noDataTemplate()!\" />\n } @else {\n {{ resolvedNoDataText() }}\n }\n </td>\n </tr>\n } @else {\n @for (\n row of sortedData();\n track trackByFn($index, row);\n let rowIndex = $index\n ) {\n <tr\n class=\"ea-data-table__row\"\n [attr.role]=\"navigable() ? 'row' : null\">\n @for (col of columns(); track col.key; let colIndex = $index) {\n <td\n class=\"ea-data-table__cell\"\n [class.ea-data-table__cell--align-center]=\"col.align === 'center'\"\n [class.ea-data-table__cell--align-right]=\"col.align === 'right'\"\n [style.width]=\"col.width ?? null\"\n [attr.role]=\"navigable() ? 'gridcell' : null\"\n [attr.data-ea-cell]=\"navigable() ? rowIndex + 1 + '-' + colIndex : null\"\n [attr.tabindex]=\"bodyCellTabindex(rowIndex + 1, colIndex)\"\n (focus)=\"onCellFocus(rowIndex + 1, colIndex)\">\n @if (col.cellTemplate) {\n <ng-container\n [ngTemplateOutlet]=\"col.cellTemplate\"\n [ngTemplateOutletContext]=\"{\n $implicit: row,\n value: getCellValue(row, col.key),\n }\" />\n } @else if (col.format) {\n {{ col.format(getCellValue(row, col.key)) }}\n } @else {\n {{ getCellValue(row, col.key) }}\n }\n </td>\n }\n </tr>\n }\n }\n </tbody>\n </table>\n </div>\n <ng-content select=\"ea-paginator\" />\n</div>\n", styles: [".ea-data-table{overflow:hidden;width:100%;border:var(--border-width-thin) solid var(--color-border-subtle);border-radius:var(--radius-lg);background-color:var(--ea-data-table-background-color, var(--color-bg-base))}.ea-data-table__scroll{overflow-x:auto}.ea-data-table__table{width:100%;border-spacing:0;border-collapse:collapse;font-family:var(--font-family-sans);font-size:var(--font-size-sm);color:var(--color-text-primary);table-layout:auto}.ea-data-table__head{background-color:var(--color-bg-stripe)}.ea-data-table__cell--header{position:relative;font-weight:var(--font-weight-medium);font-size:var(--text-label-sm-size);line-height:var(--text-label-sm-lh);letter-spacing:var(--letter-spacing-wide);text-transform:uppercase;text-align:left;white-space:nowrap;color:var(--color-text-secondary);border-bottom:var(--border-width-thin) solid var(--color-border-subtle);-webkit-user-select:none;user-select:none}.ea-data-table__cell--sortable{cursor:pointer;transition:var(--transition-colors)}.ea-data-table__cell--sortable:hover{color:var(--color-text-primary);background-color:var(--color-state-hover)}.ea-data-table__cell--sortable:focus-visible{outline:none;box-shadow:var(--shadow-focus-ring)}.ea-data-table__cell--sorted{color:var(--color-brand-text)}.ea-data-table__header-text{display:inline;vertical-align:middle}.ea-data-table__sort-icon{display:inline-flex;vertical-align:middle;width:1em;height:1em;margin-left:var(--space-1);opacity:.5;transition:var(--transition-opacity)}.ea-data-table__cell--sortable:hover .ea-data-table__sort-icon,.ea-data-table__cell--sorted .ea-data-table__sort-icon{opacity:1}.ea-data-table__row{border-bottom:var(--border-width-thin) solid var(--ea-data-table-row-border-color, var(--color-border-subtle));transition:var(--transition-colors)}.ea-data-table__row:last-child{border-bottom:none}.ea-data-table__cell{text-align:left;vertical-align:middle}.ea-data-table__cell--align-center{text-align:center}.ea-data-table__cell--align-right{text-align:right}.ea-data-table__cell--empty{text-align:center;color:var(--color-text-tertiary);font-style:italic}.ea-data-table--compact .ea-data-table__cell{padding:var(--space-1-5) var(--space-3)}.ea-data-table--comfortable .ea-data-table__cell{padding:var(--space-2-5) var(--space-4)}.ea-data-table--spacious .ea-data-table__cell{padding:var(--space-4) var(--space-6)}.ea-data-table--sticky,.ea-data-table--sticky .ea-data-table__scroll{max-height:inherit;height:inherit}.ea-data-table--sticky .ea-data-table__table{display:flex;flex-direction:column;min-width:32rem;max-height:inherit;height:inherit}.ea-data-table--sticky .ea-data-table__head{display:block;flex-shrink:0}.ea-data-table--sticky .ea-data-table__head .ea-data-table__row--header{display:table;width:100%;table-layout:fixed}.ea-data-table--sticky .ea-data-table__body{display:block;overflow-y:auto;flex:1 1 auto;min-height:0}.ea-data-table--sticky .ea-data-table__body .ea-data-table__row{display:table;width:100%;table-layout:fixed}.ea-data-table--striped .ea-data-table__body .ea-data-table__row:nth-child(2n){background-color:var(--ea-data-table-row-stripe-background-color, var(--color-bg-stripe-subtle))}.ea-data-table--hoverable .ea-data-table__body .ea-data-table__row:not(.ea-data-table__row--empty):hover{background-color:var(--ea-data-table-row-hover-background-color, var(--color-state-hover))}.ea-data-table--bordered .ea-data-table__cell{border-right:var(--border-width-thin) solid var(--color-border-subtle)}.ea-data-table--bordered .ea-data-table__cell:last-child{border-right:none}.ea-data-table--navigable .ea-data-table__cell:focus-visible{outline:var(--border-width-medium) solid var(--color-border-focus);outline-offset:calc(-1 * var(--border-width-medium));box-shadow:none}\n"], dependencies: [{ kind: "component", type: ArrowDownIconComponent, selector: "ea-icon-arrow-down" }, { kind: "component", type: ArrowUpIconComponent, selector: "ea-icon-arrow-up" }, { kind: "component", type: ChevronsUpDownIconComponent, selector: "ea-icon-chevrons-up-down" }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
6689
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.16", type: DataTableComponent, isStandalone: true, selector: "ea-data-table", inputs: { columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: true, transformFunction: null }, data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired: true, transformFunction: null }, trackBy: { classPropertyName: "trackBy", publicName: "trackBy", isSignal: true, isRequired: false, transformFunction: null }, density: { classPropertyName: "density", publicName: "density", isSignal: true, isRequired: false, transformFunction: null }, stickyHeader: { classPropertyName: "stickyHeader", publicName: "stickyHeader", isSignal: true, isRequired: false, transformFunction: null }, striped: { classPropertyName: "striped", publicName: "striped", isSignal: true, isRequired: false, transformFunction: null }, hoverable: { classPropertyName: "hoverable", publicName: "hoverable", isSignal: true, isRequired: false, transformFunction: null }, bordered: { classPropertyName: "bordered", publicName: "bordered", isSignal: true, isRequired: false, transformFunction: null }, noDataText: { classPropertyName: "noDataText", publicName: "noDataText", isSignal: true, isRequired: false, transformFunction: null }, navigable: { classPropertyName: "navigable", publicName: "navigable", isSignal: true, isRequired: false, transformFunction: null }, clickable: { classPropertyName: "clickable", publicName: "clickable", isSignal: true, isRequired: false, transformFunction: null }, sort: { classPropertyName: "sort", publicName: "sort", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { sort: "sortChange", sorted: "sorted", rowActivate: "rowActivate" }, queries: [{ propertyName: "noDataTemplate", first: true, predicate: ["noData"], descendants: true, isSignal: true }], ngImport: i0, template: "<div\n class=\"ea-data-table\"\n [ngClass]=\"hostClasses()\">\n <div class=\"ea-data-table__scroll\">\n <table\n class=\"ea-data-table__table\"\n [attr.role]=\"navigable() ? 'grid' : null\"\n (keydown)=\"onGridKeydown($event)\">\n <thead class=\"ea-data-table__head\">\n <tr\n class=\"ea-data-table__row ea-data-table__row--header\"\n [attr.role]=\"navigable() ? 'row' : null\">\n @for (col of columns(); track col.key; let colIndex = $index) {\n <th\n scope=\"col\"\n class=\"ea-data-table__cell ea-data-table__cell--header\"\n [attr.role]=\"navigable() ? 'columnheader' : null\"\n [attr.data-ea-cell]=\"navigable() ? '0-' + colIndex : null\"\n [class.ea-data-table__cell--sortable]=\"col.sortable\"\n [class.ea-data-table__cell--sorted]=\"\n sort().column === col.key && sort().direction\n \"\n [class.ea-data-table__cell--align-center]=\"col.align === 'center'\"\n [class.ea-data-table__cell--align-right]=\"col.align === 'right'\"\n [style.width]=\"col.width ?? null\"\n [attr.aria-sort]=\"\n sort().column === col.key && sort().direction === 'asc'\n ? 'ascending'\n : sort().column === col.key && sort().direction === 'desc'\n ? 'descending'\n : col.sortable\n ? 'none'\n : null\n \"\n (click)=\"onHeaderClick(col)\"\n (keydown.enter)=\"onHeaderClick(col)\"\n (keydown.space)=\"$event.preventDefault(); onHeaderClick(col)\"\n (focus)=\"onCellFocus(0, colIndex)\"\n [attr.tabindex]=\"headerTabindex(col, colIndex)\">\n @if (col.headerTemplate) {\n <ng-container\n [ngTemplateOutlet]=\"col.headerTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: col }\" />\n } @else {\n <span class=\"ea-data-table__header-text\">{{ col.label }}</span>\n }\n @if (col.sortable) {\n <span class=\"ea-data-table__sort-icon\">\n @if (sort().column === col.key && sort().direction === 'asc') {\n <ea-icon-arrow-up />\n } @else if (sort().column === col.key && sort().direction === 'desc') {\n <ea-icon-arrow-down />\n } @else {\n <ea-icon-chevrons-up-down />\n }\n </span>\n }\n </th>\n }\n </tr>\n </thead>\n <tbody class=\"ea-data-table__body\">\n @if (sortedData().length === 0) {\n <tr\n class=\"ea-data-table__row ea-data-table__row--empty\"\n [attr.role]=\"navigable() ? 'row' : null\">\n <td\n class=\"ea-data-table__cell ea-data-table__cell--empty\"\n [attr.role]=\"navigable() ? 'gridcell' : null\"\n [attr.colspan]=\"columns().length\">\n @if (noDataTemplate()) {\n <ng-container [ngTemplateOutlet]=\"noDataTemplate()!\" />\n } @else {\n {{ resolvedNoDataText() }}\n }\n </td>\n </tr>\n } @else {\n @for (\n row of sortedData();\n track trackByFn($index, row);\n let rowIndex = $index\n ) {\n <tr\n class=\"ea-data-table__row\"\n [attr.role]=\"navigable() ? 'row' : null\"\n [attr.tabindex]=\"rowTabindex()\"\n (click)=\"onRowActivate(row)\"\n (keydown.enter)=\"onRowActivate(row, $event)\"\n (keydown.space)=\"onRowActivate(row, $event)\">\n @for (col of columns(); track col.key; let colIndex = $index) {\n <td\n class=\"ea-data-table__cell\"\n [class.ea-data-table__cell--align-center]=\"col.align === 'center'\"\n [class.ea-data-table__cell--align-right]=\"col.align === 'right'\"\n [style.width]=\"col.width ?? null\"\n [attr.role]=\"navigable() ? 'gridcell' : null\"\n [attr.data-ea-cell]=\"navigable() ? rowIndex + 1 + '-' + colIndex : null\"\n [attr.tabindex]=\"bodyCellTabindex(rowIndex + 1, colIndex)\"\n (focus)=\"onCellFocus(rowIndex + 1, colIndex)\">\n @if (col.cellTemplate) {\n <ng-container\n [ngTemplateOutlet]=\"col.cellTemplate\"\n [ngTemplateOutletContext]=\"{\n $implicit: row,\n value: getCellValue(row, col.key),\n }\" />\n } @else if (col.format) {\n {{ col.format(getCellValue(row, col.key)) }}\n } @else {\n {{ getCellValue(row, col.key) }}\n }\n </td>\n }\n </tr>\n }\n }\n </tbody>\n </table>\n </div>\n <ng-content select=\"ea-paginator\" />\n</div>\n", styles: [".ea-data-table{overflow:hidden;width:100%;border:var(--border-width-thin) solid var(--color-border-subtle);border-radius:var(--radius-lg);background-color:var(--ea-data-table-background-color, var(--color-bg-base))}.ea-data-table__scroll{overflow-x:auto}.ea-data-table__table{width:100%;border-spacing:0;border-collapse:collapse;font-family:var(--font-family-sans);font-size:var(--font-size-sm);color:var(--color-text-primary);table-layout:auto}.ea-data-table__head{background-color:var(--color-bg-stripe)}.ea-data-table__cell--header{position:relative;font-weight:var(--font-weight-medium);font-size:var(--text-label-sm-size);line-height:var(--text-label-sm-lh);letter-spacing:var(--letter-spacing-wide);text-transform:uppercase;text-align:left;white-space:nowrap;color:var(--color-text-secondary);border-bottom:var(--border-width-thin) solid var(--color-border-subtle);-webkit-user-select:none;user-select:none}.ea-data-table__cell--sortable{cursor:pointer;transition:var(--transition-colors)}.ea-data-table__cell--sortable:hover{color:var(--color-text-primary);background-color:var(--color-state-hover)}.ea-data-table__cell--sortable:focus-visible{outline:none;box-shadow:var(--shadow-focus-ring)}.ea-data-table__cell--sorted{color:var(--color-brand-text)}.ea-data-table__header-text{display:inline;vertical-align:middle}.ea-data-table__sort-icon{display:inline-flex;vertical-align:middle;width:1em;height:1em;margin-left:var(--space-1);opacity:.5;transition:var(--transition-opacity)}.ea-data-table__cell--sortable:hover .ea-data-table__sort-icon,.ea-data-table__cell--sorted .ea-data-table__sort-icon{opacity:1}.ea-data-table__row{border-bottom:var(--border-width-thin) solid var(--ea-data-table-row-border-color, var(--color-border-subtle));transition:var(--transition-colors)}.ea-data-table__row:last-child{border-bottom:none}.ea-data-table__cell{text-align:left;vertical-align:middle}.ea-data-table__cell--align-center{text-align:center}.ea-data-table__cell--align-right{text-align:right}.ea-data-table__cell--empty{text-align:center;color:var(--color-text-tertiary);font-style:italic}.ea-data-table--compact .ea-data-table__cell{padding:var(--space-1-5) var(--space-3)}.ea-data-table--comfortable .ea-data-table__cell{padding:var(--space-2-5) var(--space-4)}.ea-data-table--spacious .ea-data-table__cell{padding:var(--space-4) var(--space-6)}.ea-data-table--sticky,.ea-data-table--sticky .ea-data-table__scroll{max-height:inherit;height:inherit}.ea-data-table--sticky .ea-data-table__table{display:flex;flex-direction:column;min-width:32rem;max-height:inherit;height:inherit}.ea-data-table--sticky .ea-data-table__head{display:block;flex-shrink:0}.ea-data-table--sticky .ea-data-table__head .ea-data-table__row--header{display:table;width:100%;table-layout:fixed}.ea-data-table--sticky .ea-data-table__body{display:block;overflow-y:auto;flex:1 1 auto;min-height:0}.ea-data-table--sticky .ea-data-table__body .ea-data-table__row{display:table;width:100%;table-layout:fixed}.ea-data-table--striped .ea-data-table__body .ea-data-table__row:nth-child(2n){background-color:var(--ea-data-table-row-stripe-background-color, var(--color-bg-stripe-subtle))}.ea-data-table--hoverable .ea-data-table__body .ea-data-table__row:not(.ea-data-table__row--empty):hover{background-color:var(--ea-data-table-row-hover-background-color, var(--color-state-hover))}.ea-data-table--clickable .ea-data-table__body .ea-data-table__row:not(.ea-data-table__row--empty){cursor:var(--ea-data-table-row-cursor, pointer)}.ea-data-table--bordered .ea-data-table__cell{border-right:var(--border-width-thin) solid var(--color-border-subtle)}.ea-data-table--bordered .ea-data-table__cell:last-child{border-right:none}.ea-data-table--navigable .ea-data-table__cell:focus-visible{outline:var(--border-width-medium) solid var(--color-border-focus);outline-offset:calc(-1 * var(--border-width-medium));box-shadow:none}\n"], dependencies: [{ kind: "component", type: ArrowDownIconComponent, selector: "ea-icon-arrow-down" }, { kind: "component", type: ArrowUpIconComponent, selector: "ea-icon-arrow-up" }, { kind: "component", type: ChevronsUpDownIconComponent, selector: "ea-icon-chevrons-up-down" }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
6671
6690
  }
6672
6691
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: DataTableComponent, decorators: [{
6673
6692
  type: Component,
@@ -6677,8 +6696,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
6677
6696
  ChevronsUpDownIconComponent,
6678
6697
  NgClass,
6679
6698
  NgTemplateOutlet,
6680
- ], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div\n class=\"ea-data-table\"\n [ngClass]=\"hostClasses()\">\n <div class=\"ea-data-table__scroll\">\n <table\n class=\"ea-data-table__table\"\n [attr.role]=\"navigable() ? 'grid' : null\"\n (keydown)=\"onGridKeydown($event)\">\n <thead class=\"ea-data-table__head\">\n <tr\n class=\"ea-data-table__row ea-data-table__row--header\"\n [attr.role]=\"navigable() ? 'row' : null\">\n @for (col of columns(); track col.key; let colIndex = $index) {\n <th\n scope=\"col\"\n class=\"ea-data-table__cell ea-data-table__cell--header\"\n [attr.role]=\"navigable() ? 'columnheader' : null\"\n [attr.data-ea-cell]=\"navigable() ? '0-' + colIndex : null\"\n [class.ea-data-table__cell--sortable]=\"col.sortable\"\n [class.ea-data-table__cell--sorted]=\"\n sort().column === col.key && sort().direction\n \"\n [class.ea-data-table__cell--align-center]=\"col.align === 'center'\"\n [class.ea-data-table__cell--align-right]=\"col.align === 'right'\"\n [style.width]=\"col.width ?? null\"\n [attr.aria-sort]=\"\n sort().column === col.key && sort().direction === 'asc'\n ? 'ascending'\n : sort().column === col.key && sort().direction === 'desc'\n ? 'descending'\n : col.sortable\n ? 'none'\n : null\n \"\n (click)=\"onHeaderClick(col)\"\n (keydown.enter)=\"onHeaderClick(col)\"\n (keydown.space)=\"$event.preventDefault(); onHeaderClick(col)\"\n (focus)=\"onCellFocus(0, colIndex)\"\n [attr.tabindex]=\"headerTabindex(col, colIndex)\">\n @if (col.headerTemplate) {\n <ng-container\n [ngTemplateOutlet]=\"col.headerTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: col }\" />\n } @else {\n <span class=\"ea-data-table__header-text\">{{ col.label }}</span>\n }\n @if (col.sortable) {\n <span class=\"ea-data-table__sort-icon\">\n @if (sort().column === col.key && sort().direction === 'asc') {\n <ea-icon-arrow-up />\n } @else if (sort().column === col.key && sort().direction === 'desc') {\n <ea-icon-arrow-down />\n } @else {\n <ea-icon-chevrons-up-down />\n }\n </span>\n }\n </th>\n }\n </tr>\n </thead>\n <tbody class=\"ea-data-table__body\">\n @if (sortedData().length === 0) {\n <tr\n class=\"ea-data-table__row ea-data-table__row--empty\"\n [attr.role]=\"navigable() ? 'row' : null\">\n <td\n class=\"ea-data-table__cell ea-data-table__cell--empty\"\n [attr.role]=\"navigable() ? 'gridcell' : null\"\n [attr.colspan]=\"columns().length\">\n @if (noDataTemplate()) {\n <ng-container [ngTemplateOutlet]=\"noDataTemplate()!\" />\n } @else {\n {{ resolvedNoDataText() }}\n }\n </td>\n </tr>\n } @else {\n @for (\n row of sortedData();\n track trackByFn($index, row);\n let rowIndex = $index\n ) {\n <tr\n class=\"ea-data-table__row\"\n [attr.role]=\"navigable() ? 'row' : null\">\n @for (col of columns(); track col.key; let colIndex = $index) {\n <td\n class=\"ea-data-table__cell\"\n [class.ea-data-table__cell--align-center]=\"col.align === 'center'\"\n [class.ea-data-table__cell--align-right]=\"col.align === 'right'\"\n [style.width]=\"col.width ?? null\"\n [attr.role]=\"navigable() ? 'gridcell' : null\"\n [attr.data-ea-cell]=\"navigable() ? rowIndex + 1 + '-' + colIndex : null\"\n [attr.tabindex]=\"bodyCellTabindex(rowIndex + 1, colIndex)\"\n (focus)=\"onCellFocus(rowIndex + 1, colIndex)\">\n @if (col.cellTemplate) {\n <ng-container\n [ngTemplateOutlet]=\"col.cellTemplate\"\n [ngTemplateOutletContext]=\"{\n $implicit: row,\n value: getCellValue(row, col.key),\n }\" />\n } @else if (col.format) {\n {{ col.format(getCellValue(row, col.key)) }}\n } @else {\n {{ getCellValue(row, col.key) }}\n }\n </td>\n }\n </tr>\n }\n }\n </tbody>\n </table>\n </div>\n <ng-content select=\"ea-paginator\" />\n</div>\n", styles: [".ea-data-table{overflow:hidden;width:100%;border:var(--border-width-thin) solid var(--color-border-subtle);border-radius:var(--radius-lg);background-color:var(--ea-data-table-background-color, var(--color-bg-base))}.ea-data-table__scroll{overflow-x:auto}.ea-data-table__table{width:100%;border-spacing:0;border-collapse:collapse;font-family:var(--font-family-sans);font-size:var(--font-size-sm);color:var(--color-text-primary);table-layout:auto}.ea-data-table__head{background-color:var(--color-bg-stripe)}.ea-data-table__cell--header{position:relative;font-weight:var(--font-weight-medium);font-size:var(--text-label-sm-size);line-height:var(--text-label-sm-lh);letter-spacing:var(--letter-spacing-wide);text-transform:uppercase;text-align:left;white-space:nowrap;color:var(--color-text-secondary);border-bottom:var(--border-width-thin) solid var(--color-border-subtle);-webkit-user-select:none;user-select:none}.ea-data-table__cell--sortable{cursor:pointer;transition:var(--transition-colors)}.ea-data-table__cell--sortable:hover{color:var(--color-text-primary);background-color:var(--color-state-hover)}.ea-data-table__cell--sortable:focus-visible{outline:none;box-shadow:var(--shadow-focus-ring)}.ea-data-table__cell--sorted{color:var(--color-brand-text)}.ea-data-table__header-text{display:inline;vertical-align:middle}.ea-data-table__sort-icon{display:inline-flex;vertical-align:middle;width:1em;height:1em;margin-left:var(--space-1);opacity:.5;transition:var(--transition-opacity)}.ea-data-table__cell--sortable:hover .ea-data-table__sort-icon,.ea-data-table__cell--sorted .ea-data-table__sort-icon{opacity:1}.ea-data-table__row{border-bottom:var(--border-width-thin) solid var(--ea-data-table-row-border-color, var(--color-border-subtle));transition:var(--transition-colors)}.ea-data-table__row:last-child{border-bottom:none}.ea-data-table__cell{text-align:left;vertical-align:middle}.ea-data-table__cell--align-center{text-align:center}.ea-data-table__cell--align-right{text-align:right}.ea-data-table__cell--empty{text-align:center;color:var(--color-text-tertiary);font-style:italic}.ea-data-table--compact .ea-data-table__cell{padding:var(--space-1-5) var(--space-3)}.ea-data-table--comfortable .ea-data-table__cell{padding:var(--space-2-5) var(--space-4)}.ea-data-table--spacious .ea-data-table__cell{padding:var(--space-4) var(--space-6)}.ea-data-table--sticky,.ea-data-table--sticky .ea-data-table__scroll{max-height:inherit;height:inherit}.ea-data-table--sticky .ea-data-table__table{display:flex;flex-direction:column;min-width:32rem;max-height:inherit;height:inherit}.ea-data-table--sticky .ea-data-table__head{display:block;flex-shrink:0}.ea-data-table--sticky .ea-data-table__head .ea-data-table__row--header{display:table;width:100%;table-layout:fixed}.ea-data-table--sticky .ea-data-table__body{display:block;overflow-y:auto;flex:1 1 auto;min-height:0}.ea-data-table--sticky .ea-data-table__body .ea-data-table__row{display:table;width:100%;table-layout:fixed}.ea-data-table--striped .ea-data-table__body .ea-data-table__row:nth-child(2n){background-color:var(--ea-data-table-row-stripe-background-color, var(--color-bg-stripe-subtle))}.ea-data-table--hoverable .ea-data-table__body .ea-data-table__row:not(.ea-data-table__row--empty):hover{background-color:var(--ea-data-table-row-hover-background-color, var(--color-state-hover))}.ea-data-table--bordered .ea-data-table__cell{border-right:var(--border-width-thin) solid var(--color-border-subtle)}.ea-data-table--bordered .ea-data-table__cell:last-child{border-right:none}.ea-data-table--navigable .ea-data-table__cell:focus-visible{outline:var(--border-width-medium) solid var(--color-border-focus);outline-offset:calc(-1 * var(--border-width-medium));box-shadow:none}\n"] }]
6681
- }], ctorParameters: () => [], propDecorators: { columns: [{ type: i0.Input, args: [{ isSignal: true, alias: "columns", required: true }] }], data: [{ type: i0.Input, args: [{ isSignal: true, alias: "data", required: true }] }], trackBy: [{ type: i0.Input, args: [{ isSignal: true, alias: "trackBy", required: false }] }], density: [{ type: i0.Input, args: [{ isSignal: true, alias: "density", required: false }] }], stickyHeader: [{ type: i0.Input, args: [{ isSignal: true, alias: "stickyHeader", required: false }] }], striped: [{ type: i0.Input, args: [{ isSignal: true, alias: "striped", required: false }] }], hoverable: [{ type: i0.Input, args: [{ isSignal: true, alias: "hoverable", required: false }] }], bordered: [{ type: i0.Input, args: [{ isSignal: true, alias: "bordered", required: false }] }], noDataText: [{ type: i0.Input, args: [{ isSignal: true, alias: "noDataText", required: false }] }], navigable: [{ type: i0.Input, args: [{ isSignal: true, alias: "navigable", required: false }] }], sort: [{ type: i0.Input, args: [{ isSignal: true, alias: "sort", required: false }] }, { type: i0.Output, args: ["sortChange"] }], sorted: [{ type: i0.Output, args: ["sorted"] }], noDataTemplate: [{ type: i0.ContentChild, args: ['noData', { isSignal: true }] }] } });
6699
+ ], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div\n class=\"ea-data-table\"\n [ngClass]=\"hostClasses()\">\n <div class=\"ea-data-table__scroll\">\n <table\n class=\"ea-data-table__table\"\n [attr.role]=\"navigable() ? 'grid' : null\"\n (keydown)=\"onGridKeydown($event)\">\n <thead class=\"ea-data-table__head\">\n <tr\n class=\"ea-data-table__row ea-data-table__row--header\"\n [attr.role]=\"navigable() ? 'row' : null\">\n @for (col of columns(); track col.key; let colIndex = $index) {\n <th\n scope=\"col\"\n class=\"ea-data-table__cell ea-data-table__cell--header\"\n [attr.role]=\"navigable() ? 'columnheader' : null\"\n [attr.data-ea-cell]=\"navigable() ? '0-' + colIndex : null\"\n [class.ea-data-table__cell--sortable]=\"col.sortable\"\n [class.ea-data-table__cell--sorted]=\"\n sort().column === col.key && sort().direction\n \"\n [class.ea-data-table__cell--align-center]=\"col.align === 'center'\"\n [class.ea-data-table__cell--align-right]=\"col.align === 'right'\"\n [style.width]=\"col.width ?? null\"\n [attr.aria-sort]=\"\n sort().column === col.key && sort().direction === 'asc'\n ? 'ascending'\n : sort().column === col.key && sort().direction === 'desc'\n ? 'descending'\n : col.sortable\n ? 'none'\n : null\n \"\n (click)=\"onHeaderClick(col)\"\n (keydown.enter)=\"onHeaderClick(col)\"\n (keydown.space)=\"$event.preventDefault(); onHeaderClick(col)\"\n (focus)=\"onCellFocus(0, colIndex)\"\n [attr.tabindex]=\"headerTabindex(col, colIndex)\">\n @if (col.headerTemplate) {\n <ng-container\n [ngTemplateOutlet]=\"col.headerTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: col }\" />\n } @else {\n <span class=\"ea-data-table__header-text\">{{ col.label }}</span>\n }\n @if (col.sortable) {\n <span class=\"ea-data-table__sort-icon\">\n @if (sort().column === col.key && sort().direction === 'asc') {\n <ea-icon-arrow-up />\n } @else if (sort().column === col.key && sort().direction === 'desc') {\n <ea-icon-arrow-down />\n } @else {\n <ea-icon-chevrons-up-down />\n }\n </span>\n }\n </th>\n }\n </tr>\n </thead>\n <tbody class=\"ea-data-table__body\">\n @if (sortedData().length === 0) {\n <tr\n class=\"ea-data-table__row ea-data-table__row--empty\"\n [attr.role]=\"navigable() ? 'row' : null\">\n <td\n class=\"ea-data-table__cell ea-data-table__cell--empty\"\n [attr.role]=\"navigable() ? 'gridcell' : null\"\n [attr.colspan]=\"columns().length\">\n @if (noDataTemplate()) {\n <ng-container [ngTemplateOutlet]=\"noDataTemplate()!\" />\n } @else {\n {{ resolvedNoDataText() }}\n }\n </td>\n </tr>\n } @else {\n @for (\n row of sortedData();\n track trackByFn($index, row);\n let rowIndex = $index\n ) {\n <tr\n class=\"ea-data-table__row\"\n [attr.role]=\"navigable() ? 'row' : null\"\n [attr.tabindex]=\"rowTabindex()\"\n (click)=\"onRowActivate(row)\"\n (keydown.enter)=\"onRowActivate(row, $event)\"\n (keydown.space)=\"onRowActivate(row, $event)\">\n @for (col of columns(); track col.key; let colIndex = $index) {\n <td\n class=\"ea-data-table__cell\"\n [class.ea-data-table__cell--align-center]=\"col.align === 'center'\"\n [class.ea-data-table__cell--align-right]=\"col.align === 'right'\"\n [style.width]=\"col.width ?? null\"\n [attr.role]=\"navigable() ? 'gridcell' : null\"\n [attr.data-ea-cell]=\"navigable() ? rowIndex + 1 + '-' + colIndex : null\"\n [attr.tabindex]=\"bodyCellTabindex(rowIndex + 1, colIndex)\"\n (focus)=\"onCellFocus(rowIndex + 1, colIndex)\">\n @if (col.cellTemplate) {\n <ng-container\n [ngTemplateOutlet]=\"col.cellTemplate\"\n [ngTemplateOutletContext]=\"{\n $implicit: row,\n value: getCellValue(row, col.key),\n }\" />\n } @else if (col.format) {\n {{ col.format(getCellValue(row, col.key)) }}\n } @else {\n {{ getCellValue(row, col.key) }}\n }\n </td>\n }\n </tr>\n }\n }\n </tbody>\n </table>\n </div>\n <ng-content select=\"ea-paginator\" />\n</div>\n", styles: [".ea-data-table{overflow:hidden;width:100%;border:var(--border-width-thin) solid var(--color-border-subtle);border-radius:var(--radius-lg);background-color:var(--ea-data-table-background-color, var(--color-bg-base))}.ea-data-table__scroll{overflow-x:auto}.ea-data-table__table{width:100%;border-spacing:0;border-collapse:collapse;font-family:var(--font-family-sans);font-size:var(--font-size-sm);color:var(--color-text-primary);table-layout:auto}.ea-data-table__head{background-color:var(--color-bg-stripe)}.ea-data-table__cell--header{position:relative;font-weight:var(--font-weight-medium);font-size:var(--text-label-sm-size);line-height:var(--text-label-sm-lh);letter-spacing:var(--letter-spacing-wide);text-transform:uppercase;text-align:left;white-space:nowrap;color:var(--color-text-secondary);border-bottom:var(--border-width-thin) solid var(--color-border-subtle);-webkit-user-select:none;user-select:none}.ea-data-table__cell--sortable{cursor:pointer;transition:var(--transition-colors)}.ea-data-table__cell--sortable:hover{color:var(--color-text-primary);background-color:var(--color-state-hover)}.ea-data-table__cell--sortable:focus-visible{outline:none;box-shadow:var(--shadow-focus-ring)}.ea-data-table__cell--sorted{color:var(--color-brand-text)}.ea-data-table__header-text{display:inline;vertical-align:middle}.ea-data-table__sort-icon{display:inline-flex;vertical-align:middle;width:1em;height:1em;margin-left:var(--space-1);opacity:.5;transition:var(--transition-opacity)}.ea-data-table__cell--sortable:hover .ea-data-table__sort-icon,.ea-data-table__cell--sorted .ea-data-table__sort-icon{opacity:1}.ea-data-table__row{border-bottom:var(--border-width-thin) solid var(--ea-data-table-row-border-color, var(--color-border-subtle));transition:var(--transition-colors)}.ea-data-table__row:last-child{border-bottom:none}.ea-data-table__cell{text-align:left;vertical-align:middle}.ea-data-table__cell--align-center{text-align:center}.ea-data-table__cell--align-right{text-align:right}.ea-data-table__cell--empty{text-align:center;color:var(--color-text-tertiary);font-style:italic}.ea-data-table--compact .ea-data-table__cell{padding:var(--space-1-5) var(--space-3)}.ea-data-table--comfortable .ea-data-table__cell{padding:var(--space-2-5) var(--space-4)}.ea-data-table--spacious .ea-data-table__cell{padding:var(--space-4) var(--space-6)}.ea-data-table--sticky,.ea-data-table--sticky .ea-data-table__scroll{max-height:inherit;height:inherit}.ea-data-table--sticky .ea-data-table__table{display:flex;flex-direction:column;min-width:32rem;max-height:inherit;height:inherit}.ea-data-table--sticky .ea-data-table__head{display:block;flex-shrink:0}.ea-data-table--sticky .ea-data-table__head .ea-data-table__row--header{display:table;width:100%;table-layout:fixed}.ea-data-table--sticky .ea-data-table__body{display:block;overflow-y:auto;flex:1 1 auto;min-height:0}.ea-data-table--sticky .ea-data-table__body .ea-data-table__row{display:table;width:100%;table-layout:fixed}.ea-data-table--striped .ea-data-table__body .ea-data-table__row:nth-child(2n){background-color:var(--ea-data-table-row-stripe-background-color, var(--color-bg-stripe-subtle))}.ea-data-table--hoverable .ea-data-table__body .ea-data-table__row:not(.ea-data-table__row--empty):hover{background-color:var(--ea-data-table-row-hover-background-color, var(--color-state-hover))}.ea-data-table--clickable .ea-data-table__body .ea-data-table__row:not(.ea-data-table__row--empty){cursor:var(--ea-data-table-row-cursor, pointer)}.ea-data-table--bordered .ea-data-table__cell{border-right:var(--border-width-thin) solid var(--color-border-subtle)}.ea-data-table--bordered .ea-data-table__cell:last-child{border-right:none}.ea-data-table--navigable .ea-data-table__cell:focus-visible{outline:var(--border-width-medium) solid var(--color-border-focus);outline-offset:calc(-1 * var(--border-width-medium));box-shadow:none}\n"] }]
6700
+ }], ctorParameters: () => [], propDecorators: { columns: [{ type: i0.Input, args: [{ isSignal: true, alias: "columns", required: true }] }], data: [{ type: i0.Input, args: [{ isSignal: true, alias: "data", required: true }] }], trackBy: [{ type: i0.Input, args: [{ isSignal: true, alias: "trackBy", required: false }] }], density: [{ type: i0.Input, args: [{ isSignal: true, alias: "density", required: false }] }], stickyHeader: [{ type: i0.Input, args: [{ isSignal: true, alias: "stickyHeader", required: false }] }], striped: [{ type: i0.Input, args: [{ isSignal: true, alias: "striped", required: false }] }], hoverable: [{ type: i0.Input, args: [{ isSignal: true, alias: "hoverable", required: false }] }], bordered: [{ type: i0.Input, args: [{ isSignal: true, alias: "bordered", required: false }] }], noDataText: [{ type: i0.Input, args: [{ isSignal: true, alias: "noDataText", required: false }] }], navigable: [{ type: i0.Input, args: [{ isSignal: true, alias: "navigable", required: false }] }], clickable: [{ type: i0.Input, args: [{ isSignal: true, alias: "clickable", required: false }] }], sort: [{ type: i0.Input, args: [{ isSignal: true, alias: "sort", required: false }] }, { type: i0.Output, args: ["sortChange"] }], sorted: [{ type: i0.Output, args: ["sorted"] }], rowActivate: [{ type: i0.Output, args: ["rowActivate"] }], noDataTemplate: [{ type: i0.ContentChild, args: ['noData', { isSignal: true }] }] } });
6682
6701
 
6683
6702
  /**
6684
6703
  * Verification code entry made up of one input per digit. Auto-advances on
@@ -13466,8 +13485,12 @@ const DISPLAY_NAME_OVERRIDES = {
13466
13485
  mongodb: 'MongoDB',
13467
13486
  npm: 'npm',
13468
13487
  paypal: 'PayPal',
13488
+ 'qr-code': 'QR Code',
13469
13489
  rss: 'RSS',
13490
+ tailwind: 'Tailwind CSS',
13491
+ tiktok: 'TikTok',
13470
13492
  tv: 'TV',
13493
+ whatsapp: 'WhatsApp',
13471
13494
  'x-twitter': 'X (Twitter)',
13472
13495
  youtube: 'YouTube',
13473
13496
  'youtube-2': 'YouTube 2',
@@ -14125,6 +14148,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
14125
14148
  }]
14126
14149
  }] });
14127
14150
 
14151
+ class AnthropicIconComponent extends IconComponentBase {
14152
+ static slug = 'anthropic';
14153
+ static category = 'eagami';
14154
+ static isBrand = true;
14155
+ static tags = ['anthropic', 'claude', 'ai', 'llm'];
14156
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
14157
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: AnthropicIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
14158
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: AnthropicIconComponent, isStandalone: true, selector: "ea-icon-anthropic", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#D97757' : null" } }, usesInheritance: true, ngImport: i0, template: `
14159
+ <svg
14160
+ viewBox="0 0 24 24"
14161
+ fill="currentColor"
14162
+ aria-hidden="true"
14163
+ width="100%"
14164
+ height="100%">
14165
+ <path
14166
+ d="M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z" />
14167
+ </svg>
14168
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
14169
+ }
14170
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: AnthropicIconComponent, decorators: [{
14171
+ type: Component,
14172
+ args: [{
14173
+ selector: 'ea-icon-anthropic',
14174
+ changeDetection: ChangeDetectionStrategy.OnPush,
14175
+ host: { '[style.color]': "brand() ? '#D97757' : null" },
14176
+ template: `
14177
+ <svg
14178
+ viewBox="0 0 24 24"
14179
+ fill="currentColor"
14180
+ aria-hidden="true"
14181
+ width="100%"
14182
+ height="100%">
14183
+ <path
14184
+ d="M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z" />
14185
+ </svg>
14186
+ `,
14187
+ }]
14188
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
14189
+
14128
14190
  class ApertureIconComponent extends IconComponentBase {
14129
14191
  static slug = 'aperture';
14130
14192
  static category = 'feather';
@@ -15088,6 +15150,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
15088
15150
  }]
15089
15151
  }] });
15090
15152
 
15153
+ class BadgeCheckIconComponent extends IconComponentBase {
15154
+ static slug = 'badge-check';
15155
+ static category = 'eagami';
15156
+ static tags = [
15157
+ 'badge-check',
15158
+ 'verified',
15159
+ 'check',
15160
+ 'badge',
15161
+ 'approved',
15162
+ 'vérifié',
15163
+ 'verificado',
15164
+ 'επαληθευμένο',
15165
+ 'zweryfikowano',
15166
+ ];
15167
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BadgeCheckIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
15168
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: BadgeCheckIconComponent, isStandalone: true, selector: "ea-icon-badge-check", usesInheritance: true, ngImport: i0, template: `
15169
+ <svg
15170
+ viewBox="0 0 24 24"
15171
+ fill="none"
15172
+ stroke="currentColor"
15173
+ [attr.stroke-width]="strokeWidth()"
15174
+ stroke-linecap="round"
15175
+ stroke-linejoin="round"
15176
+ aria-hidden="true"
15177
+ width="100%"
15178
+ height="100%">
15179
+ <path
15180
+ d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" />
15181
+ <path d="m9 12 2 2 4-4" />
15182
+ </svg>
15183
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
15184
+ }
15185
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BadgeCheckIconComponent, decorators: [{
15186
+ type: Component,
15187
+ args: [{
15188
+ selector: 'ea-icon-badge-check',
15189
+ changeDetection: ChangeDetectionStrategy.OnPush,
15190
+ template: `
15191
+ <svg
15192
+ viewBox="0 0 24 24"
15193
+ fill="none"
15194
+ stroke="currentColor"
15195
+ [attr.stroke-width]="strokeWidth()"
15196
+ stroke-linecap="round"
15197
+ stroke-linejoin="round"
15198
+ aria-hidden="true"
15199
+ width="100%"
15200
+ height="100%">
15201
+ <path
15202
+ d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z" />
15203
+ <path d="m9 12 2 2 4-4" />
15204
+ </svg>
15205
+ `,
15206
+ }]
15207
+ }] });
15208
+
15091
15209
  class BarChart2IconComponent extends IconComponentBase {
15092
15210
  static slug = 'bar-chart-2';
15093
15211
  static category = 'feather';
@@ -15533,6 +15651,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
15533
15651
  }]
15534
15652
  }] });
15535
15653
 
15654
+ class BitcoinIconComponent extends IconComponentBase {
15655
+ static slug = 'bitcoin';
15656
+ static category = 'eagami';
15657
+ static tags = [
15658
+ 'bitcoin',
15659
+ 'crypto',
15660
+ 'cryptocurrency',
15661
+ 'btc',
15662
+ 'currency',
15663
+ 'κρυπτονόμισμα',
15664
+ 'kryptowaluta',
15665
+ ];
15666
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BitcoinIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
15667
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: BitcoinIconComponent, isStandalone: true, selector: "ea-icon-bitcoin", usesInheritance: true, ngImport: i0, template: `
15668
+ <svg
15669
+ viewBox="0 0 24 24"
15670
+ fill="none"
15671
+ stroke="currentColor"
15672
+ [attr.stroke-width]="strokeWidth()"
15673
+ stroke-linecap="round"
15674
+ stroke-linejoin="round"
15675
+ aria-hidden="true"
15676
+ width="100%"
15677
+ height="100%">
15678
+ <path
15679
+ d="M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727" />
15680
+ </svg>
15681
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
15682
+ }
15683
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BitcoinIconComponent, decorators: [{
15684
+ type: Component,
15685
+ args: [{
15686
+ selector: 'ea-icon-bitcoin',
15687
+ changeDetection: ChangeDetectionStrategy.OnPush,
15688
+ template: `
15689
+ <svg
15690
+ viewBox="0 0 24 24"
15691
+ fill="none"
15692
+ stroke="currentColor"
15693
+ [attr.stroke-width]="strokeWidth()"
15694
+ stroke-linecap="round"
15695
+ stroke-linejoin="round"
15696
+ aria-hidden="true"
15697
+ width="100%"
15698
+ height="100%">
15699
+ <path
15700
+ d="M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727" />
15701
+ </svg>
15702
+ `,
15703
+ }]
15704
+ }] });
15705
+
15536
15706
  class BluetoothIconComponent extends IconComponentBase {
15537
15707
  static slug = 'bluetooth';
15538
15708
  static category = 'feather';
@@ -15756,6 +15926,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
15756
15926
  }]
15757
15927
  }] });
15758
15928
 
15929
+ class BookmarkCheckIconComponent extends IconComponentBase {
15930
+ static slug = 'bookmark-check';
15931
+ static category = 'eagami';
15932
+ static tags = [
15933
+ 'bookmark-check',
15934
+ 'bookmark',
15935
+ 'check',
15936
+ 'saved',
15937
+ 'favorite',
15938
+ 'signet',
15939
+ 'marcador',
15940
+ 'σελιδοδείκτης',
15941
+ 'zakładka',
15942
+ ];
15943
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BookmarkCheckIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
15944
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: BookmarkCheckIconComponent, isStandalone: true, selector: "ea-icon-bookmark-check", usesInheritance: true, ngImport: i0, template: `
15945
+ <svg
15946
+ viewBox="0 0 24 24"
15947
+ fill="none"
15948
+ stroke="currentColor"
15949
+ [attr.stroke-width]="strokeWidth()"
15950
+ stroke-linecap="round"
15951
+ stroke-linejoin="round"
15952
+ aria-hidden="true"
15953
+ width="100%"
15954
+ height="100%">
15955
+ <path
15956
+ d="M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z" />
15957
+ <path d="m9 10 2 2 4-4" />
15958
+ </svg>
15959
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
15960
+ }
15961
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BookmarkCheckIconComponent, decorators: [{
15962
+ type: Component,
15963
+ args: [{
15964
+ selector: 'ea-icon-bookmark-check',
15965
+ changeDetection: ChangeDetectionStrategy.OnPush,
15966
+ template: `
15967
+ <svg
15968
+ viewBox="0 0 24 24"
15969
+ fill="none"
15970
+ stroke="currentColor"
15971
+ [attr.stroke-width]="strokeWidth()"
15972
+ stroke-linecap="round"
15973
+ stroke-linejoin="round"
15974
+ aria-hidden="true"
15975
+ width="100%"
15976
+ height="100%">
15977
+ <path
15978
+ d="M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z" />
15979
+ <path d="m9 10 2 2 4-4" />
15980
+ </svg>
15981
+ `,
15982
+ }]
15983
+ }] });
15984
+
15759
15985
  class BookmarkIconComponent extends IconComponentBase {
15760
15986
  static slug = 'bookmark';
15761
15987
  static category = 'feather';
@@ -15812,6 +16038,76 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
15812
16038
  }]
15813
16039
  }] });
15814
16040
 
16041
+ class BotIconComponent extends IconComponentBase {
16042
+ static slug = 'bot';
16043
+ static category = 'eagami';
16044
+ static tags = [
16045
+ 'bot',
16046
+ 'robot',
16047
+ 'ai',
16048
+ 'assistant',
16049
+ 'chatbot',
16050
+ 'ρομπότ',
16051
+ 'robot',
16052
+ ];
16053
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BotIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
16054
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: BotIconComponent, isStandalone: true, selector: "ea-icon-bot", usesInheritance: true, ngImport: i0, template: `
16055
+ <svg
16056
+ viewBox="0 0 24 24"
16057
+ fill="none"
16058
+ stroke="currentColor"
16059
+ [attr.stroke-width]="strokeWidth()"
16060
+ stroke-linecap="round"
16061
+ stroke-linejoin="round"
16062
+ aria-hidden="true"
16063
+ width="100%"
16064
+ height="100%">
16065
+ <path d="M12 8V4H8" />
16066
+ <rect
16067
+ width="16"
16068
+ height="12"
16069
+ x="4"
16070
+ y="8"
16071
+ rx="2" />
16072
+ <path d="M2 14h2" />
16073
+ <path d="M20 14h2" />
16074
+ <path d="M15 13v2" />
16075
+ <path d="M9 13v2" />
16076
+ </svg>
16077
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
16078
+ }
16079
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BotIconComponent, decorators: [{
16080
+ type: Component,
16081
+ args: [{
16082
+ selector: 'ea-icon-bot',
16083
+ changeDetection: ChangeDetectionStrategy.OnPush,
16084
+ template: `
16085
+ <svg
16086
+ viewBox="0 0 24 24"
16087
+ fill="none"
16088
+ stroke="currentColor"
16089
+ [attr.stroke-width]="strokeWidth()"
16090
+ stroke-linecap="round"
16091
+ stroke-linejoin="round"
16092
+ aria-hidden="true"
16093
+ width="100%"
16094
+ height="100%">
16095
+ <path d="M12 8V4H8" />
16096
+ <rect
16097
+ width="16"
16098
+ height="12"
16099
+ x="4"
16100
+ y="8"
16101
+ rx="2" />
16102
+ <path d="M2 14h2" />
16103
+ <path d="M20 14h2" />
16104
+ <path d="M15 13v2" />
16105
+ <path d="M9 13v2" />
16106
+ </svg>
16107
+ `,
16108
+ }]
16109
+ }] });
16110
+
15815
16111
  class BottleIconComponent extends IconComponentBase {
15816
16112
  static slug = 'bottle';
15817
16113
  static category = 'eagami';
@@ -15947,6 +16243,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
15947
16243
  }]
15948
16244
  }] });
15949
16245
 
16246
+ class BrainIconComponent extends IconComponentBase {
16247
+ static slug = 'brain';
16248
+ static category = 'eagami';
16249
+ static tags = [
16250
+ 'brain',
16251
+ 'mind',
16252
+ 'intelligence',
16253
+ 'think',
16254
+ 'ai',
16255
+ 'cerveau',
16256
+ 'cerebro',
16257
+ 'εγκέφαλος',
16258
+ 'mózg',
16259
+ ];
16260
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BrainIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
16261
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: BrainIconComponent, isStandalone: true, selector: "ea-icon-brain", usesInheritance: true, ngImport: i0, template: `
16262
+ <svg
16263
+ viewBox="0 0 24 24"
16264
+ fill="none"
16265
+ stroke="currentColor"
16266
+ [attr.stroke-width]="strokeWidth()"
16267
+ stroke-linecap="round"
16268
+ stroke-linejoin="round"
16269
+ aria-hidden="true"
16270
+ width="100%"
16271
+ height="100%">
16272
+ <path d="M12 18V5" />
16273
+ <path d="M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4" />
16274
+ <path d="M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5" />
16275
+ <path d="M17.997 5.125a4 4 0 0 1 2.526 5.77" />
16276
+ <path d="M18 18a4 4 0 0 0 2-7.464" />
16277
+ <path d="M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517" />
16278
+ <path d="M6 18a4 4 0 0 1-2-7.464" />
16279
+ <path d="M6.003 5.125a4 4 0 0 0-2.526 5.77" />
16280
+ </svg>
16281
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
16282
+ }
16283
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BrainIconComponent, decorators: [{
16284
+ type: Component,
16285
+ args: [{
16286
+ selector: 'ea-icon-brain',
16287
+ changeDetection: ChangeDetectionStrategy.OnPush,
16288
+ template: `
16289
+ <svg
16290
+ viewBox="0 0 24 24"
16291
+ fill="none"
16292
+ stroke="currentColor"
16293
+ [attr.stroke-width]="strokeWidth()"
16294
+ stroke-linecap="round"
16295
+ stroke-linejoin="round"
16296
+ aria-hidden="true"
16297
+ width="100%"
16298
+ height="100%">
16299
+ <path d="M12 18V5" />
16300
+ <path d="M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4" />
16301
+ <path d="M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5" />
16302
+ <path d="M17.997 5.125a4 4 0 0 1 2.526 5.77" />
16303
+ <path d="M18 18a4 4 0 0 0 2-7.464" />
16304
+ <path d="M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517" />
16305
+ <path d="M6 18a4 4 0 0 1-2-7.464" />
16306
+ <path d="M6.003 5.125a4 4 0 0 0-2.526 5.77" />
16307
+ </svg>
16308
+ `,
16309
+ }]
16310
+ }] });
16311
+
15950
16312
  class BriefcaseIconComponent extends IconComponentBase {
15951
16313
  static slug = 'briefcase';
15952
16314
  static category = 'feather';
@@ -16017,28 +16379,98 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
16017
16379
  }]
16018
16380
  }] });
16019
16381
 
16020
- class CameraOffIconComponent extends IconComponentBase {
16021
- static slug = 'camera-off';
16022
- static category = 'feather';
16382
+ class CalendarCheckIconComponent extends IconComponentBase {
16383
+ static slug = 'calendar-check';
16384
+ static category = 'eagami';
16023
16385
  static tags = [
16024
- 'camera-off',
16025
- 'camera',
16026
- 'off',
16027
- 'disabled',
16028
- 'photo',
16029
- 'mute',
16030
- 'appareil photo',
16031
- 'désactivé',
16032
- 'cámara',
16033
- 'apagado',
16034
- 'κάμερα',
16035
- 'απενεργοποιημένη',
16036
- 'aparat',
16037
- 'wyłączony',
16038
- ];
16039
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: CameraOffIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
16040
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: CameraOffIconComponent, isStandalone: true, selector: "ea-icon-camera-off", usesInheritance: true, ngImport: i0, template: `
16041
- <svg
16386
+ 'calendar-check',
16387
+ 'calendar',
16388
+ 'check',
16389
+ 'event',
16390
+ 'scheduled',
16391
+ 'calendrier',
16392
+ 'calendario',
16393
+ 'ημερολόγιο',
16394
+ 'kalendarz',
16395
+ ];
16396
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: CalendarCheckIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
16397
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: CalendarCheckIconComponent, isStandalone: true, selector: "ea-icon-calendar-check", usesInheritance: true, ngImport: i0, template: `
16398
+ <svg
16399
+ viewBox="0 0 24 24"
16400
+ fill="none"
16401
+ stroke="currentColor"
16402
+ [attr.stroke-width]="strokeWidth()"
16403
+ stroke-linecap="round"
16404
+ stroke-linejoin="round"
16405
+ aria-hidden="true"
16406
+ width="100%"
16407
+ height="100%">
16408
+ <path d="M8 2v4" />
16409
+ <path d="M16 2v4" />
16410
+ <rect
16411
+ width="18"
16412
+ height="18"
16413
+ x="3"
16414
+ y="4"
16415
+ rx="2" />
16416
+ <path d="M3 10h18" />
16417
+ <path d="m9 16 2 2 4-4" />
16418
+ </svg>
16419
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
16420
+ }
16421
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: CalendarCheckIconComponent, decorators: [{
16422
+ type: Component,
16423
+ args: [{
16424
+ selector: 'ea-icon-calendar-check',
16425
+ changeDetection: ChangeDetectionStrategy.OnPush,
16426
+ template: `
16427
+ <svg
16428
+ viewBox="0 0 24 24"
16429
+ fill="none"
16430
+ stroke="currentColor"
16431
+ [attr.stroke-width]="strokeWidth()"
16432
+ stroke-linecap="round"
16433
+ stroke-linejoin="round"
16434
+ aria-hidden="true"
16435
+ width="100%"
16436
+ height="100%">
16437
+ <path d="M8 2v4" />
16438
+ <path d="M16 2v4" />
16439
+ <rect
16440
+ width="18"
16441
+ height="18"
16442
+ x="3"
16443
+ y="4"
16444
+ rx="2" />
16445
+ <path d="M3 10h18" />
16446
+ <path d="m9 16 2 2 4-4" />
16447
+ </svg>
16448
+ `,
16449
+ }]
16450
+ }] });
16451
+
16452
+ class CameraOffIconComponent extends IconComponentBase {
16453
+ static slug = 'camera-off';
16454
+ static category = 'feather';
16455
+ static tags = [
16456
+ 'camera-off',
16457
+ 'camera',
16458
+ 'off',
16459
+ 'disabled',
16460
+ 'photo',
16461
+ 'mute',
16462
+ 'appareil photo',
16463
+ 'désactivé',
16464
+ 'cámara',
16465
+ 'apagado',
16466
+ 'κάμερα',
16467
+ 'απενεργοποιημένη',
16468
+ 'aparat',
16469
+ 'wyłączony',
16470
+ ];
16471
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: CameraOffIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
16472
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: CameraOffIconComponent, isStandalone: true, selector: "ea-icon-camera-off", usesInheritance: true, ngImport: i0, template: `
16473
+ <svg
16042
16474
  viewBox="0 0 24 24"
16043
16475
  fill="none"
16044
16476
  stroke="currentColor"
@@ -16537,6 +16969,76 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
16537
16969
  }]
16538
16970
  }] });
16539
16971
 
16972
+ class ClipboardCheckIconComponent extends IconComponentBase {
16973
+ static slug = 'clipboard-check';
16974
+ static category = 'eagami';
16975
+ static tags = [
16976
+ 'clipboard-check',
16977
+ 'clipboard',
16978
+ 'check',
16979
+ 'done',
16980
+ 'task',
16981
+ 'presse-papiers',
16982
+ 'portapapeles',
16983
+ 'πρόχειρο',
16984
+ 'schowek',
16985
+ ];
16986
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ClipboardCheckIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
16987
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: ClipboardCheckIconComponent, isStandalone: true, selector: "ea-icon-clipboard-check", usesInheritance: true, ngImport: i0, template: `
16988
+ <svg
16989
+ viewBox="0 0 24 24"
16990
+ fill="none"
16991
+ stroke="currentColor"
16992
+ [attr.stroke-width]="strokeWidth()"
16993
+ stroke-linecap="round"
16994
+ stroke-linejoin="round"
16995
+ aria-hidden="true"
16996
+ width="100%"
16997
+ height="100%">
16998
+ <rect
16999
+ width="8"
17000
+ height="4"
17001
+ x="8"
17002
+ y="2"
17003
+ rx="1"
17004
+ ry="1" />
17005
+ <path
17006
+ d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" />
17007
+ <path d="m9 14 2 2 4-4" />
17008
+ </svg>
17009
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
17010
+ }
17011
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ClipboardCheckIconComponent, decorators: [{
17012
+ type: Component,
17013
+ args: [{
17014
+ selector: 'ea-icon-clipboard-check',
17015
+ changeDetection: ChangeDetectionStrategy.OnPush,
17016
+ template: `
17017
+ <svg
17018
+ viewBox="0 0 24 24"
17019
+ fill="none"
17020
+ stroke="currentColor"
17021
+ [attr.stroke-width]="strokeWidth()"
17022
+ stroke-linecap="round"
17023
+ stroke-linejoin="round"
17024
+ aria-hidden="true"
17025
+ width="100%"
17026
+ height="100%">
17027
+ <rect
17028
+ width="8"
17029
+ height="4"
17030
+ x="8"
17031
+ y="2"
17032
+ rx="1"
17033
+ ry="1" />
17034
+ <path
17035
+ d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" />
17036
+ <path d="m9 14 2 2 4-4" />
17037
+ </svg>
17038
+ `,
17039
+ }]
17040
+ }] });
17041
+
16540
17042
  class ClipboardIconComponent extends IconComponentBase {
16541
17043
  static slug = 'clipboard';
16542
17044
  static category = 'feather';
@@ -17446,6 +17948,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
17446
17948
  }]
17447
17949
  }] });
17448
17950
 
17951
+ class CoinsIconComponent extends IconComponentBase {
17952
+ static slug = 'coins';
17953
+ static category = 'eagami';
17954
+ static tags = [
17955
+ 'coins',
17956
+ 'money',
17957
+ 'currency',
17958
+ 'cash',
17959
+ 'finance',
17960
+ 'pièces',
17961
+ 'monedas',
17962
+ 'νομίσματα',
17963
+ 'monety',
17964
+ ];
17965
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: CoinsIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
17966
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: CoinsIconComponent, isStandalone: true, selector: "ea-icon-coins", usesInheritance: true, ngImport: i0, template: `
17967
+ <svg
17968
+ viewBox="0 0 24 24"
17969
+ fill="none"
17970
+ stroke="currentColor"
17971
+ [attr.stroke-width]="strokeWidth()"
17972
+ stroke-linecap="round"
17973
+ stroke-linejoin="round"
17974
+ aria-hidden="true"
17975
+ width="100%"
17976
+ height="100%">
17977
+ <path d="M13.744 17.736a6 6 0 1 1-7.48-7.48" />
17978
+ <path d="M15 6h1v4" />
17979
+ <path d="m6.134 14.768.866-.5 2 3.464" />
17980
+ <circle
17981
+ cx="16"
17982
+ cy="8"
17983
+ r="6" />
17984
+ </svg>
17985
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
17986
+ }
17987
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: CoinsIconComponent, decorators: [{
17988
+ type: Component,
17989
+ args: [{
17990
+ selector: 'ea-icon-coins',
17991
+ changeDetection: ChangeDetectionStrategy.OnPush,
17992
+ template: `
17993
+ <svg
17994
+ viewBox="0 0 24 24"
17995
+ fill="none"
17996
+ stroke="currentColor"
17997
+ [attr.stroke-width]="strokeWidth()"
17998
+ stroke-linecap="round"
17999
+ stroke-linejoin="round"
18000
+ aria-hidden="true"
18001
+ width="100%"
18002
+ height="100%">
18003
+ <path d="M13.744 17.736a6 6 0 1 1-7.48-7.48" />
18004
+ <path d="M15 6h1v4" />
18005
+ <path d="m6.134 14.768.866-.5 2 3.464" />
18006
+ <circle
18007
+ cx="16"
18008
+ cy="8"
18009
+ r="6" />
18010
+ </svg>
18011
+ `,
18012
+ }]
18013
+ }] });
18014
+
17449
18015
  class ColumnsIconComponent extends IconComponentBase {
17450
18016
  static slug = 'columns';
17451
18017
  static category = 'feather';
@@ -20223,6 +20789,64 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
20223
20789
  }]
20224
20790
  }] });
20225
20791
 
20792
+ class FilterXIconComponent extends IconComponentBase {
20793
+ static slug = 'filter-x';
20794
+ static category = 'eagami';
20795
+ static tags = [
20796
+ 'filter-x',
20797
+ 'filter',
20798
+ 'clear',
20799
+ 'remove',
20800
+ 'funnel',
20801
+ 'filtre',
20802
+ 'filtro',
20803
+ 'φίλτρο',
20804
+ 'filtr',
20805
+ ];
20806
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FilterXIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
20807
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: FilterXIconComponent, isStandalone: true, selector: "ea-icon-filter-x", usesInheritance: true, ngImport: i0, template: `
20808
+ <svg
20809
+ viewBox="0 0 24 24"
20810
+ fill="none"
20811
+ stroke="currentColor"
20812
+ [attr.stroke-width]="strokeWidth()"
20813
+ stroke-linecap="round"
20814
+ stroke-linejoin="round"
20815
+ aria-hidden="true"
20816
+ width="100%"
20817
+ height="100%">
20818
+ <path
20819
+ d="M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473" />
20820
+ <path d="m16.5 3.5 5 5" />
20821
+ <path d="m21.5 3.5-5 5" />
20822
+ </svg>
20823
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
20824
+ }
20825
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FilterXIconComponent, decorators: [{
20826
+ type: Component,
20827
+ args: [{
20828
+ selector: 'ea-icon-filter-x',
20829
+ changeDetection: ChangeDetectionStrategy.OnPush,
20830
+ template: `
20831
+ <svg
20832
+ viewBox="0 0 24 24"
20833
+ fill="none"
20834
+ stroke="currentColor"
20835
+ [attr.stroke-width]="strokeWidth()"
20836
+ stroke-linecap="round"
20837
+ stroke-linejoin="round"
20838
+ aria-hidden="true"
20839
+ width="100%"
20840
+ height="100%">
20841
+ <path
20842
+ d="M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473" />
20843
+ <path d="m16.5 3.5 5 5" />
20844
+ <path d="m21.5 3.5-5 5" />
20845
+ </svg>
20846
+ `,
20847
+ }]
20848
+ }] });
20849
+
20226
20850
  class FilterIconComponent extends IconComponentBase {
20227
20851
  static slug = 'filter';
20228
20852
  static category = 'feather';
@@ -20278,23 +20902,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
20278
20902
  }]
20279
20903
  }] });
20280
20904
 
20281
- class FlagIconComponent extends IconComponentBase {
20282
- static slug = 'flag';
20283
- static category = 'feather';
20905
+ class FingerprintIconComponent extends IconComponentBase {
20906
+ static slug = 'fingerprint';
20907
+ static category = 'eagami';
20284
20908
  static tags = [
20285
- 'flag',
20286
- 'mark',
20287
- 'report',
20288
- 'country',
20289
- 'banner',
20290
- 'drapeau',
20291
- 'bandera',
20292
- 'σημαία',
20293
- 'flaga',
20294
- 'oznacz',
20909
+ 'fingerprint',
20910
+ 'biometric',
20911
+ 'identity',
20912
+ 'security',
20913
+ 'touch',
20914
+ 'empreinte',
20915
+ 'huella',
20916
+ 'δακτυλικό',
20917
+ 'odcisk',
20295
20918
  ];
20296
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FlagIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
20297
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: FlagIconComponent, isStandalone: true, selector: "ea-icon-flag", usesInheritance: true, ngImport: i0, template: `
20919
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FingerprintIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
20920
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: FingerprintIconComponent, isStandalone: true, selector: "ea-icon-fingerprint", usesInheritance: true, ngImport: i0, template: `
20298
20921
  <svg
20299
20922
  viewBox="0 0 24 24"
20300
20923
  fill="none"
@@ -20305,19 +20928,22 @@ class FlagIconComponent extends IconComponentBase {
20305
20928
  aria-hidden="true"
20306
20929
  width="100%"
20307
20930
  height="100%">
20308
- <path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" />
20309
- <line
20310
- x1="4"
20311
- y1="22"
20312
- x2="4"
20313
- y2="15" />
20931
+ <path d="M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" />
20932
+ <path d="M14 13.12c0 2.38 0 6.38-1 8.88" />
20933
+ <path d="M17.29 21.02c.12-.6.43-2.3.5-3.02" />
20934
+ <path d="M2 12a10 10 0 0 1 18-6" />
20935
+ <path d="M2 16h.01" />
20936
+ <path d="M21.8 16c.2-2 .131-5.354 0-6" />
20937
+ <path d="M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2" />
20938
+ <path d="M8.65 22c.21-.66.45-1.32.57-2" />
20939
+ <path d="M9 6.8a6 6 0 0 1 9 5.2v2" />
20314
20940
  </svg>
20315
20941
  `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
20316
20942
  }
20317
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FlagIconComponent, decorators: [{
20943
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FingerprintIconComponent, decorators: [{
20318
20944
  type: Component,
20319
20945
  args: [{
20320
- selector: 'ea-icon-flag',
20946
+ selector: 'ea-icon-fingerprint',
20321
20947
  changeDetection: ChangeDetectionStrategy.OnPush,
20322
20948
  template: `
20323
20949
  <svg
@@ -20330,19 +20956,139 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
20330
20956
  aria-hidden="true"
20331
20957
  width="100%"
20332
20958
  height="100%">
20333
- <path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" />
20334
- <line
20335
- x1="4"
20336
- y1="22"
20337
- x2="4"
20338
- y2="15" />
20959
+ <path d="M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" />
20960
+ <path d="M14 13.12c0 2.38 0 6.38-1 8.88" />
20961
+ <path d="M17.29 21.02c.12-.6.43-2.3.5-3.02" />
20962
+ <path d="M2 12a10 10 0 0 1 18-6" />
20963
+ <path d="M2 16h.01" />
20964
+ <path d="M21.8 16c.2-2 .131-5.354 0-6" />
20965
+ <path d="M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2" />
20966
+ <path d="M8.65 22c.21-.66.45-1.32.57-2" />
20967
+ <path d="M9 6.8a6 6 0 0 1 9 5.2v2" />
20339
20968
  </svg>
20340
20969
  `,
20341
20970
  }]
20342
20971
  }] });
20343
20972
 
20344
- class FolderMinusIconComponent extends IconComponentBase {
20345
- static slug = 'folder-minus';
20973
+ class FlagIconComponent extends IconComponentBase {
20974
+ static slug = 'flag';
20975
+ static category = 'feather';
20976
+ static tags = [
20977
+ 'flag',
20978
+ 'mark',
20979
+ 'report',
20980
+ 'country',
20981
+ 'banner',
20982
+ 'drapeau',
20983
+ 'bandera',
20984
+ 'σημαία',
20985
+ 'flaga',
20986
+ 'oznacz',
20987
+ ];
20988
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FlagIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
20989
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: FlagIconComponent, isStandalone: true, selector: "ea-icon-flag", usesInheritance: true, ngImport: i0, template: `
20990
+ <svg
20991
+ viewBox="0 0 24 24"
20992
+ fill="none"
20993
+ stroke="currentColor"
20994
+ [attr.stroke-width]="strokeWidth()"
20995
+ stroke-linecap="round"
20996
+ stroke-linejoin="round"
20997
+ aria-hidden="true"
20998
+ width="100%"
20999
+ height="100%">
21000
+ <path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" />
21001
+ <line
21002
+ x1="4"
21003
+ y1="22"
21004
+ x2="4"
21005
+ y2="15" />
21006
+ </svg>
21007
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
21008
+ }
21009
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FlagIconComponent, decorators: [{
21010
+ type: Component,
21011
+ args: [{
21012
+ selector: 'ea-icon-flag',
21013
+ changeDetection: ChangeDetectionStrategy.OnPush,
21014
+ template: `
21015
+ <svg
21016
+ viewBox="0 0 24 24"
21017
+ fill="none"
21018
+ stroke="currentColor"
21019
+ [attr.stroke-width]="strokeWidth()"
21020
+ stroke-linecap="round"
21021
+ stroke-linejoin="round"
21022
+ aria-hidden="true"
21023
+ width="100%"
21024
+ height="100%">
21025
+ <path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z" />
21026
+ <line
21027
+ x1="4"
21028
+ y1="22"
21029
+ x2="4"
21030
+ y2="15" />
21031
+ </svg>
21032
+ `,
21033
+ }]
21034
+ }] });
21035
+
21036
+ class FlameIconComponent extends IconComponentBase {
21037
+ static slug = 'flame';
21038
+ static category = 'eagami';
21039
+ static tags = [
21040
+ 'flame',
21041
+ 'fire',
21042
+ 'hot',
21043
+ 'burn',
21044
+ 'heat',
21045
+ 'flamme',
21046
+ 'llama',
21047
+ 'φλόγα',
21048
+ 'płomień',
21049
+ ];
21050
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FlameIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
21051
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: FlameIconComponent, isStandalone: true, selector: "ea-icon-flame", usesInheritance: true, ngImport: i0, template: `
21052
+ <svg
21053
+ viewBox="0 0 24 24"
21054
+ fill="none"
21055
+ stroke="currentColor"
21056
+ [attr.stroke-width]="strokeWidth()"
21057
+ stroke-linecap="round"
21058
+ stroke-linejoin="round"
21059
+ aria-hidden="true"
21060
+ width="100%"
21061
+ height="100%">
21062
+ <path
21063
+ d="M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4" />
21064
+ </svg>
21065
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
21066
+ }
21067
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FlameIconComponent, decorators: [{
21068
+ type: Component,
21069
+ args: [{
21070
+ selector: 'ea-icon-flame',
21071
+ changeDetection: ChangeDetectionStrategy.OnPush,
21072
+ template: `
21073
+ <svg
21074
+ viewBox="0 0 24 24"
21075
+ fill="none"
21076
+ stroke="currentColor"
21077
+ [attr.stroke-width]="strokeWidth()"
21078
+ stroke-linecap="round"
21079
+ stroke-linejoin="round"
21080
+ aria-hidden="true"
21081
+ width="100%"
21082
+ height="100%">
21083
+ <path
21084
+ d="M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4" />
21085
+ </svg>
21086
+ `,
21087
+ }]
21088
+ }] });
21089
+
21090
+ class FolderMinusIconComponent extends IconComponentBase {
21091
+ static slug = 'folder-minus';
20346
21092
  static category = 'feather';
20347
21093
  static tags = [
20348
21094
  'folder-minus',
@@ -20680,6 +21426,99 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
20680
21426
  }]
20681
21427
  }] });
20682
21428
 
21429
+ class GaugeIconComponent extends IconComponentBase {
21430
+ static slug = 'gauge';
21431
+ static category = 'eagami';
21432
+ static tags = [
21433
+ 'gauge',
21434
+ 'speedometer',
21435
+ 'dashboard',
21436
+ 'meter',
21437
+ 'performance',
21438
+ 'jauge',
21439
+ 'medidor',
21440
+ 'μετρητής',
21441
+ 'wskaźnik',
21442
+ ];
21443
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: GaugeIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
21444
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: GaugeIconComponent, isStandalone: true, selector: "ea-icon-gauge", usesInheritance: true, ngImport: i0, template: `
21445
+ <svg
21446
+ viewBox="0 0 24 24"
21447
+ fill="none"
21448
+ stroke="currentColor"
21449
+ [attr.stroke-width]="strokeWidth()"
21450
+ stroke-linecap="round"
21451
+ stroke-linejoin="round"
21452
+ aria-hidden="true"
21453
+ width="100%"
21454
+ height="100%">
21455
+ <path d="m12 14 4-4" />
21456
+ <path d="M3.34 19a10 10 0 1 1 17.32 0" />
21457
+ </svg>
21458
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
21459
+ }
21460
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: GaugeIconComponent, decorators: [{
21461
+ type: Component,
21462
+ args: [{
21463
+ selector: 'ea-icon-gauge',
21464
+ changeDetection: ChangeDetectionStrategy.OnPush,
21465
+ template: `
21466
+ <svg
21467
+ viewBox="0 0 24 24"
21468
+ fill="none"
21469
+ stroke="currentColor"
21470
+ [attr.stroke-width]="strokeWidth()"
21471
+ stroke-linecap="round"
21472
+ stroke-linejoin="round"
21473
+ aria-hidden="true"
21474
+ width="100%"
21475
+ height="100%">
21476
+ <path d="m12 14 4-4" />
21477
+ <path d="M3.34 19a10 10 0 1 1 17.32 0" />
21478
+ </svg>
21479
+ `,
21480
+ }]
21481
+ }] });
21482
+
21483
+ class GeminiIconComponent extends IconComponentBase {
21484
+ static slug = 'gemini';
21485
+ static category = 'eagami';
21486
+ static isBrand = true;
21487
+ static tags = ['gemini', 'google', 'ai', 'llm'];
21488
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
21489
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: GeminiIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
21490
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: GeminiIconComponent, isStandalone: true, selector: "ea-icon-gemini", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#8E75B2' : null" } }, usesInheritance: true, ngImport: i0, template: `
21491
+ <svg
21492
+ viewBox="0 0 24 24"
21493
+ fill="currentColor"
21494
+ aria-hidden="true"
21495
+ width="100%"
21496
+ height="100%">
21497
+ <path
21498
+ d="M11.04 19.32Q12 21.51 12 24q0-2.49.93-4.68.96-2.19 2.58-3.81t3.81-2.55Q21.51 12 24 12q-2.49 0-4.68-.93a12.3 12.3 0 0 1-3.81-2.58 12.3 12.3 0 0 1-2.58-3.81Q12 2.49 12 0q0 2.49-.96 4.68-.93 2.19-2.55 3.81a12.3 12.3 0 0 1-3.81 2.58Q2.49 12 0 12q2.49 0 4.68.96 2.19.93 3.81 2.55t2.55 3.81" />
21499
+ </svg>
21500
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
21501
+ }
21502
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: GeminiIconComponent, decorators: [{
21503
+ type: Component,
21504
+ args: [{
21505
+ selector: 'ea-icon-gemini',
21506
+ changeDetection: ChangeDetectionStrategy.OnPush,
21507
+ host: { '[style.color]': "brand() ? '#8E75B2' : null" },
21508
+ template: `
21509
+ <svg
21510
+ viewBox="0 0 24 24"
21511
+ fill="currentColor"
21512
+ aria-hidden="true"
21513
+ width="100%"
21514
+ height="100%">
21515
+ <path
21516
+ d="M11.04 19.32Q12 21.51 12 24q0-2.49.93-4.68.96-2.19 2.58-3.81t3.81-2.55Q21.51 12 24 12q-2.49 0-4.68-.93a12.3 12.3 0 0 1-3.81-2.58 12.3 12.3 0 0 1-2.58-3.81Q12 2.49 12 0q0 2.49-.96 4.68-.93 2.19-2.55 3.81a12.3 12.3 0 0 1-3.81 2.58Q2.49 12 0 12q2.49 0 4.68.96 2.19.93 3.81 2.55t2.55 3.81" />
21517
+ </svg>
21518
+ `,
21519
+ }]
21520
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
21521
+
20683
21522
  class GiftIconComponent extends IconComponentBase {
20684
21523
  static slug = 'gift';
20685
21524
  static category = 'feather';
@@ -22657,6 +23496,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
22657
23496
  }]
22658
23497
  }] });
22659
23498
 
23499
+ class LeafIconComponent extends IconComponentBase {
23500
+ static slug = 'leaf';
23501
+ static category = 'eagami';
23502
+ static tags = [
23503
+ 'leaf',
23504
+ 'nature',
23505
+ 'eco',
23506
+ 'plant',
23507
+ 'organic',
23508
+ 'feuille',
23509
+ 'hoja',
23510
+ 'φύλλο',
23511
+ 'liść',
23512
+ ];
23513
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: LeafIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
23514
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: LeafIconComponent, isStandalone: true, selector: "ea-icon-leaf", usesInheritance: true, ngImport: i0, template: `
23515
+ <svg
23516
+ viewBox="0 0 24 24"
23517
+ fill="none"
23518
+ stroke="currentColor"
23519
+ [attr.stroke-width]="strokeWidth()"
23520
+ stroke-linecap="round"
23521
+ stroke-linejoin="round"
23522
+ aria-hidden="true"
23523
+ width="100%"
23524
+ height="100%">
23525
+ <path
23526
+ d="M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z" />
23527
+ <path d="M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12" />
23528
+ </svg>
23529
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
23530
+ }
23531
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: LeafIconComponent, decorators: [{
23532
+ type: Component,
23533
+ args: [{
23534
+ selector: 'ea-icon-leaf',
23535
+ changeDetection: ChangeDetectionStrategy.OnPush,
23536
+ template: `
23537
+ <svg
23538
+ viewBox="0 0 24 24"
23539
+ fill="none"
23540
+ stroke="currentColor"
23541
+ [attr.stroke-width]="strokeWidth()"
23542
+ stroke-linecap="round"
23543
+ stroke-linejoin="round"
23544
+ aria-hidden="true"
23545
+ width="100%"
23546
+ height="100%">
23547
+ <path
23548
+ d="M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z" />
23549
+ <path d="M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12" />
23550
+ </svg>
23551
+ `,
23552
+ }]
23553
+ }] });
23554
+
22660
23555
  class LifeBuoyIconComponent extends IconComponentBase {
22661
23556
  static slug = 'life-buoy';
22662
23557
  static category = 'feather';
@@ -23033,6 +23928,66 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
23033
23928
  }]
23034
23929
  }] });
23035
23930
 
23931
+ class ListChecksIconComponent extends IconComponentBase {
23932
+ static slug = 'list-checks';
23933
+ static category = 'eagami';
23934
+ static tags = [
23935
+ 'list-checks',
23936
+ 'checklist',
23937
+ 'tasks',
23938
+ 'todo',
23939
+ 'done',
23940
+ 'liste',
23941
+ 'lista',
23942
+ 'λίστα',
23943
+ 'lista',
23944
+ ];
23945
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ListChecksIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
23946
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: ListChecksIconComponent, isStandalone: true, selector: "ea-icon-list-checks", usesInheritance: true, ngImport: i0, template: `
23947
+ <svg
23948
+ viewBox="0 0 24 24"
23949
+ fill="none"
23950
+ stroke="currentColor"
23951
+ [attr.stroke-width]="strokeWidth()"
23952
+ stroke-linecap="round"
23953
+ stroke-linejoin="round"
23954
+ aria-hidden="true"
23955
+ width="100%"
23956
+ height="100%">
23957
+ <path d="M13 5h8" />
23958
+ <path d="M13 12h8" />
23959
+ <path d="M13 19h8" />
23960
+ <path d="m3 17 2 2 4-4" />
23961
+ <path d="m3 7 2 2 4-4" />
23962
+ </svg>
23963
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
23964
+ }
23965
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ListChecksIconComponent, decorators: [{
23966
+ type: Component,
23967
+ args: [{
23968
+ selector: 'ea-icon-list-checks',
23969
+ changeDetection: ChangeDetectionStrategy.OnPush,
23970
+ template: `
23971
+ <svg
23972
+ viewBox="0 0 24 24"
23973
+ fill="none"
23974
+ stroke="currentColor"
23975
+ [attr.stroke-width]="strokeWidth()"
23976
+ stroke-linecap="round"
23977
+ stroke-linejoin="round"
23978
+ aria-hidden="true"
23979
+ width="100%"
23980
+ height="100%">
23981
+ <path d="M13 5h8" />
23982
+ <path d="M13 12h8" />
23983
+ <path d="M13 19h8" />
23984
+ <path d="m3 17 2 2 4-4" />
23985
+ <path d="m3 7 2 2 4-4" />
23986
+ </svg>
23987
+ `,
23988
+ }]
23989
+ }] });
23990
+
23036
23991
  class ListIconComponent extends IconComponentBase {
23037
23992
  static slug = 'list';
23038
23993
  static category = 'feather';
@@ -27028,11 +27983,114 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
27028
27983
  }]
27029
27984
  }] });
27030
27985
 
27031
- class RadioIconComponent extends IconComponentBase {
27032
- static slug = 'radio';
27033
- static category = 'feather';
27986
+ class QrCodeIconComponent extends IconComponentBase {
27987
+ static slug = 'qr-code';
27988
+ static category = 'eagami';
27034
27989
  static tags = [
27035
- 'radio',
27990
+ 'qr-code',
27991
+ 'qr',
27992
+ 'code',
27993
+ 'scan',
27994
+ 'barcode',
27995
+ 'código',
27996
+ 'κωδικός',
27997
+ 'kod',
27998
+ ];
27999
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: QrCodeIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
28000
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: QrCodeIconComponent, isStandalone: true, selector: "ea-icon-qr-code", usesInheritance: true, ngImport: i0, template: `
28001
+ <svg
28002
+ viewBox="0 0 24 24"
28003
+ fill="none"
28004
+ stroke="currentColor"
28005
+ [attr.stroke-width]="strokeWidth()"
28006
+ stroke-linecap="round"
28007
+ stroke-linejoin="round"
28008
+ aria-hidden="true"
28009
+ width="100%"
28010
+ height="100%">
28011
+ <rect
28012
+ width="5"
28013
+ height="5"
28014
+ x="3"
28015
+ y="3"
28016
+ rx="1" />
28017
+ <rect
28018
+ width="5"
28019
+ height="5"
28020
+ x="16"
28021
+ y="3"
28022
+ rx="1" />
28023
+ <rect
28024
+ width="5"
28025
+ height="5"
28026
+ x="3"
28027
+ y="16"
28028
+ rx="1" />
28029
+ <path d="M21 16h-3a2 2 0 0 0-2 2v3" />
28030
+ <path d="M21 21v.01" />
28031
+ <path d="M12 7v3a2 2 0 0 1-2 2H7" />
28032
+ <path d="M3 12h.01" />
28033
+ <path d="M12 3h.01" />
28034
+ <path d="M12 16v.01" />
28035
+ <path d="M16 12h1" />
28036
+ <path d="M21 12v.01" />
28037
+ <path d="M12 21v-1" />
28038
+ </svg>
28039
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
28040
+ }
28041
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: QrCodeIconComponent, decorators: [{
28042
+ type: Component,
28043
+ args: [{
28044
+ selector: 'ea-icon-qr-code',
28045
+ changeDetection: ChangeDetectionStrategy.OnPush,
28046
+ template: `
28047
+ <svg
28048
+ viewBox="0 0 24 24"
28049
+ fill="none"
28050
+ stroke="currentColor"
28051
+ [attr.stroke-width]="strokeWidth()"
28052
+ stroke-linecap="round"
28053
+ stroke-linejoin="round"
28054
+ aria-hidden="true"
28055
+ width="100%"
28056
+ height="100%">
28057
+ <rect
28058
+ width="5"
28059
+ height="5"
28060
+ x="3"
28061
+ y="3"
28062
+ rx="1" />
28063
+ <rect
28064
+ width="5"
28065
+ height="5"
28066
+ x="16"
28067
+ y="3"
28068
+ rx="1" />
28069
+ <rect
28070
+ width="5"
28071
+ height="5"
28072
+ x="3"
28073
+ y="16"
28074
+ rx="1" />
28075
+ <path d="M21 16h-3a2 2 0 0 0-2 2v3" />
28076
+ <path d="M21 21v.01" />
28077
+ <path d="M12 7v3a2 2 0 0 1-2 2H7" />
28078
+ <path d="M3 12h.01" />
28079
+ <path d="M12 3h.01" />
28080
+ <path d="M12 16v.01" />
28081
+ <path d="M16 12h1" />
28082
+ <path d="M21 12v.01" />
28083
+ <path d="M12 21v-1" />
28084
+ </svg>
28085
+ `,
28086
+ }]
28087
+ }] });
28088
+
28089
+ class RadioIconComponent extends IconComponentBase {
28090
+ static slug = 'radio';
28091
+ static category = 'feather';
28092
+ static tags = [
28093
+ 'radio',
27036
28094
  'broadcast',
27037
28095
  'wireless',
27038
28096
  'signal',
@@ -27092,6 +28150,109 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
27092
28150
  }]
27093
28151
  }] });
27094
28152
 
28153
+ class ReactIconComponent extends IconComponentBase {
28154
+ static slug = 'react';
28155
+ static category = 'eagami';
28156
+ static isBrand = true;
28157
+ static tags = [
28158
+ 'react',
28159
+ 'reactjs',
28160
+ 'javascript',
28161
+ 'framework',
28162
+ 'library',
28163
+ 'frontend',
28164
+ ];
28165
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
28166
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ReactIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
28167
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: ReactIconComponent, isStandalone: true, selector: "ea-icon-react", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#61DAFB' : null" } }, usesInheritance: true, ngImport: i0, template: `
28168
+ <svg
28169
+ viewBox="0 0 24 24"
28170
+ fill="currentColor"
28171
+ aria-hidden="true"
28172
+ width="100%"
28173
+ height="100%">
28174
+ <path
28175
+ d="M14.23 12.004a2.236 2.236 0 0 1-2.235 2.236 2.236 2.236 0 0 1-2.236-2.236 2.236 2.236 0 0 1 2.235-2.236 2.236 2.236 0 0 1 2.236 2.236zm2.648-10.69c-1.346 0-3.107.96-4.888 2.622-1.78-1.653-3.542-2.602-4.887-2.602-.41 0-.783.093-1.106.278-1.375.793-1.683 3.264-.973 6.365C1.98 8.917 0 10.42 0 12.004c0 1.59 1.99 3.097 5.043 4.03-.704 3.113-.39 5.588.988 6.38.32.187.69.275 1.102.275 1.345 0 3.107-.96 4.888-2.624 1.78 1.654 3.542 2.603 4.887 2.603.41 0 .783-.09 1.106-.275 1.374-.792 1.683-3.263.973-6.365C22.02 15.096 24 13.59 24 12.004c0-1.59-1.99-3.097-5.043-4.032.704-3.11.39-5.587-.988-6.38-.318-.184-.688-.277-1.092-.278zm-.005 1.09v.006c.225 0 .406.044.558.127.666.382.955 1.835.73 3.704-.054.46-.142.945-.25 1.44-.96-.236-2.006-.417-3.107-.534-.66-.905-1.345-1.727-2.035-2.447 1.592-1.48 3.087-2.292 4.105-2.295zm-9.77.02c1.012 0 2.514.808 4.11 2.28-.686.72-1.37 1.537-2.02 2.442-1.107.117-2.154.298-3.113.538-.112-.49-.195-.964-.254-1.42-.23-1.868.054-3.32.714-3.707.19-.09.4-.127.563-.132zm4.882 3.05c.455.468.91.992 1.36 1.564-.44-.02-.89-.034-1.345-.034-.46 0-.915.01-1.36.034.44-.572.895-1.096 1.345-1.565zM12 8.1c.74 0 1.477.034 2.202.093.406.582.802 1.203 1.183 1.86.372.64.71 1.29 1.018 1.946-.308.655-.646 1.31-1.013 1.95-.38.66-.773 1.288-1.18 1.87-.728.063-1.466.098-2.21.098-.74 0-1.477-.035-2.202-.093-.406-.582-.802-1.204-1.183-1.86-.372-.64-.71-1.29-1.018-1.946.303-.657.646-1.313 1.013-1.954.38-.66.773-1.286 1.18-1.868.728-.064 1.466-.098 2.21-.098zm-3.635.254c-.24.377-.48.763-.704 1.16-.225.39-.435.782-.635 1.174-.265-.656-.49-1.31-.676-1.947.64-.15 1.315-.283 2.015-.386zm7.26 0c.695.103 1.365.23 2.006.387-.18.632-.405 1.282-.66 1.933-.2-.39-.41-.783-.64-1.174-.225-.392-.465-.774-.705-1.146zm3.063.675c.484.15.944.317 1.375.498 1.732.74 2.852 1.708 2.852 2.476-.005.768-1.125 1.74-2.857 2.475-.42.18-.88.342-1.355.493-.28-.958-.646-1.956-1.1-2.98.45-1.017.81-2.01 1.085-2.964zm-13.395.004c.278.96.645 1.957 1.1 2.98-.45 1.017-.812 2.01-1.086 2.964-.484-.15-.944-.318-1.37-.5-1.732-.737-2.852-1.706-2.852-2.474 0-.768 1.12-1.742 2.852-2.476.42-.18.88-.342 1.356-.494zm11.678 4.28c.265.657.49 1.312.676 1.948-.64.157-1.316.29-2.016.39.24-.375.48-.762.705-1.158.225-.39.435-.788.636-1.18zm-9.945.02c.2.392.41.783.64 1.175.23.39.465.772.705 1.143-.695-.102-1.365-.23-2.006-.386.18-.63.406-1.282.66-1.933zM17.92 16.32c.112.493.2.968.254 1.423.23 1.868-.054 3.32-.714 3.708-.147.09-.338.128-.563.128-1.012 0-2.514-.807-4.11-2.28.686-.72 1.37-1.536 2.02-2.44 1.107-.118 2.154-.3 3.113-.54zm-11.83.01c.96.234 2.006.415 3.107.532.66.905 1.345 1.727 2.035 2.446-1.595 1.483-3.092 2.295-4.11 2.295-.22-.005-.406-.05-.553-.132-.666-.38-.955-1.834-.73-3.703.054-.46.142-.944.25-1.438zm4.56.64c.44.02.89.034 1.345.034.46 0 .915-.01 1.36-.034-.44.572-.895 1.095-1.345 1.565-.455-.47-.91-.993-1.36-1.565z" />
28176
+ </svg>
28177
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
28178
+ }
28179
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ReactIconComponent, decorators: [{
28180
+ type: Component,
28181
+ args: [{
28182
+ selector: 'ea-icon-react',
28183
+ changeDetection: ChangeDetectionStrategy.OnPush,
28184
+ host: { '[style.color]': "brand() ? '#61DAFB' : null" },
28185
+ template: `
28186
+ <svg
28187
+ viewBox="0 0 24 24"
28188
+ fill="currentColor"
28189
+ aria-hidden="true"
28190
+ width="100%"
28191
+ height="100%">
28192
+ <path
28193
+ d="M14.23 12.004a2.236 2.236 0 0 1-2.235 2.236 2.236 2.236 0 0 1-2.236-2.236 2.236 2.236 0 0 1 2.235-2.236 2.236 2.236 0 0 1 2.236 2.236zm2.648-10.69c-1.346 0-3.107.96-4.888 2.622-1.78-1.653-3.542-2.602-4.887-2.602-.41 0-.783.093-1.106.278-1.375.793-1.683 3.264-.973 6.365C1.98 8.917 0 10.42 0 12.004c0 1.59 1.99 3.097 5.043 4.03-.704 3.113-.39 5.588.988 6.38.32.187.69.275 1.102.275 1.345 0 3.107-.96 4.888-2.624 1.78 1.654 3.542 2.603 4.887 2.603.41 0 .783-.09 1.106-.275 1.374-.792 1.683-3.263.973-6.365C22.02 15.096 24 13.59 24 12.004c0-1.59-1.99-3.097-5.043-4.032.704-3.11.39-5.587-.988-6.38-.318-.184-.688-.277-1.092-.278zm-.005 1.09v.006c.225 0 .406.044.558.127.666.382.955 1.835.73 3.704-.054.46-.142.945-.25 1.44-.96-.236-2.006-.417-3.107-.534-.66-.905-1.345-1.727-2.035-2.447 1.592-1.48 3.087-2.292 4.105-2.295zm-9.77.02c1.012 0 2.514.808 4.11 2.28-.686.72-1.37 1.537-2.02 2.442-1.107.117-2.154.298-3.113.538-.112-.49-.195-.964-.254-1.42-.23-1.868.054-3.32.714-3.707.19-.09.4-.127.563-.132zm4.882 3.05c.455.468.91.992 1.36 1.564-.44-.02-.89-.034-1.345-.034-.46 0-.915.01-1.36.034.44-.572.895-1.096 1.345-1.565zM12 8.1c.74 0 1.477.034 2.202.093.406.582.802 1.203 1.183 1.86.372.64.71 1.29 1.018 1.946-.308.655-.646 1.31-1.013 1.95-.38.66-.773 1.288-1.18 1.87-.728.063-1.466.098-2.21.098-.74 0-1.477-.035-2.202-.093-.406-.582-.802-1.204-1.183-1.86-.372-.64-.71-1.29-1.018-1.946.303-.657.646-1.313 1.013-1.954.38-.66.773-1.286 1.18-1.868.728-.064 1.466-.098 2.21-.098zm-3.635.254c-.24.377-.48.763-.704 1.16-.225.39-.435.782-.635 1.174-.265-.656-.49-1.31-.676-1.947.64-.15 1.315-.283 2.015-.386zm7.26 0c.695.103 1.365.23 2.006.387-.18.632-.405 1.282-.66 1.933-.2-.39-.41-.783-.64-1.174-.225-.392-.465-.774-.705-1.146zm3.063.675c.484.15.944.317 1.375.498 1.732.74 2.852 1.708 2.852 2.476-.005.768-1.125 1.74-2.857 2.475-.42.18-.88.342-1.355.493-.28-.958-.646-1.956-1.1-2.98.45-1.017.81-2.01 1.085-2.964zm-13.395.004c.278.96.645 1.957 1.1 2.98-.45 1.017-.812 2.01-1.086 2.964-.484-.15-.944-.318-1.37-.5-1.732-.737-2.852-1.706-2.852-2.474 0-.768 1.12-1.742 2.852-2.476.42-.18.88-.342 1.356-.494zm11.678 4.28c.265.657.49 1.312.676 1.948-.64.157-1.316.29-2.016.39.24-.375.48-.762.705-1.158.225-.39.435-.788.636-1.18zm-9.945.02c.2.392.41.783.64 1.175.23.39.465.772.705 1.143-.695-.102-1.365-.23-2.006-.386.18-.63.406-1.282.66-1.933zM17.92 16.32c.112.493.2.968.254 1.423.23 1.868-.054 3.32-.714 3.708-.147.09-.338.128-.563.128-1.012 0-2.514-.807-4.11-2.28.686-.72 1.37-1.536 2.02-2.44 1.107-.118 2.154-.3 3.113-.54zm-11.83.01c.96.234 2.006.415 3.107.532.66.905 1.345 1.727 2.035 2.446-1.595 1.483-3.092 2.295-4.11 2.295-.22-.005-.406-.05-.553-.132-.666-.38-.955-1.834-.73-3.703.054-.46.142-.944.25-1.438zm4.56.64c.44.02.89.034 1.345.034.46 0 .915-.01 1.36-.034-.44.572-.895 1.095-1.345 1.565-.455-.47-.91-.993-1.36-1.565z" />
28194
+ </svg>
28195
+ `,
28196
+ }]
28197
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
28198
+
28199
+ class ReceiptIconComponent extends IconComponentBase {
28200
+ static slug = 'receipt';
28201
+ static category = 'eagami';
28202
+ static tags = [
28203
+ 'receipt',
28204
+ 'invoice',
28205
+ 'bill',
28206
+ 'payment',
28207
+ 'reçu',
28208
+ 'recibo',
28209
+ 'απόδειξη',
28210
+ 'paragon',
28211
+ ];
28212
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ReceiptIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
28213
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: ReceiptIconComponent, isStandalone: true, selector: "ea-icon-receipt", usesInheritance: true, ngImport: i0, template: `
28214
+ <svg
28215
+ viewBox="0 0 24 24"
28216
+ fill="none"
28217
+ stroke="currentColor"
28218
+ [attr.stroke-width]="strokeWidth()"
28219
+ stroke-linecap="round"
28220
+ stroke-linejoin="round"
28221
+ aria-hidden="true"
28222
+ width="100%"
28223
+ height="100%">
28224
+ <path d="M12 17V7" />
28225
+ <path d="M16 8h-6a2 2 0 0 0 0 4h4a2 2 0 0 1 0 4H8" />
28226
+ <path
28227
+ d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z" />
28228
+ </svg>
28229
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
28230
+ }
28231
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ReceiptIconComponent, decorators: [{
28232
+ type: Component,
28233
+ args: [{
28234
+ selector: 'ea-icon-receipt',
28235
+ changeDetection: ChangeDetectionStrategy.OnPush,
28236
+ template: `
28237
+ <svg
28238
+ viewBox="0 0 24 24"
28239
+ fill="none"
28240
+ stroke="currentColor"
28241
+ [attr.stroke-width]="strokeWidth()"
28242
+ stroke-linecap="round"
28243
+ stroke-linejoin="round"
28244
+ aria-hidden="true"
28245
+ width="100%"
28246
+ height="100%">
28247
+ <path d="M12 17V7" />
28248
+ <path d="M16 8h-6a2 2 0 0 0 0 4h4a2 2 0 0 1 0 4H8" />
28249
+ <path
28250
+ d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z" />
28251
+ </svg>
28252
+ `,
28253
+ }]
28254
+ }] });
28255
+
27095
28256
  class RectangleHorizontalIconComponent extends IconComponentBase {
27096
28257
  static slug = 'rectangle-horizontal';
27097
28258
  static category = 'eagami';
@@ -27269,6 +28430,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
27269
28430
  }]
27270
28431
  }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
27271
28432
 
28433
+ class RedoIconComponent extends IconComponentBase {
28434
+ static slug = 'redo';
28435
+ static category = 'eagami';
28436
+ static tags = [
28437
+ 'redo',
28438
+ 'forward',
28439
+ 'repeat',
28440
+ 'history',
28441
+ 'rétablir',
28442
+ 'rehacer',
28443
+ 'επανάληψη',
28444
+ 'ponów',
28445
+ ];
28446
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: RedoIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
28447
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: RedoIconComponent, isStandalone: true, selector: "ea-icon-redo", usesInheritance: true, ngImport: i0, template: `
28448
+ <svg
28449
+ viewBox="0 0 24 24"
28450
+ fill="none"
28451
+ stroke="currentColor"
28452
+ [attr.stroke-width]="strokeWidth()"
28453
+ stroke-linecap="round"
28454
+ stroke-linejoin="round"
28455
+ aria-hidden="true"
28456
+ width="100%"
28457
+ height="100%">
28458
+ <path d="M21 7v6h-6" />
28459
+ <path d="M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" />
28460
+ </svg>
28461
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
28462
+ }
28463
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: RedoIconComponent, decorators: [{
28464
+ type: Component,
28465
+ args: [{
28466
+ selector: 'ea-icon-redo',
28467
+ changeDetection: ChangeDetectionStrategy.OnPush,
28468
+ template: `
28469
+ <svg
28470
+ viewBox="0 0 24 24"
28471
+ fill="none"
28472
+ stroke="currentColor"
28473
+ [attr.stroke-width]="strokeWidth()"
28474
+ stroke-linecap="round"
28475
+ stroke-linejoin="round"
28476
+ aria-hidden="true"
28477
+ width="100%"
28478
+ height="100%">
28479
+ <path d="M21 7v6h-6" />
28480
+ <path d="M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" />
28481
+ </svg>
28482
+ `,
28483
+ }]
28484
+ }] });
28485
+
27272
28486
  class RefreshCcwIconComponent extends IconComponentBase {
27273
28487
  static slug = 'refresh-ccw';
27274
28488
  static category = 'feather';
@@ -27570,6 +28784,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
27570
28784
  }]
27571
28785
  }] });
27572
28786
 
28787
+ class RocketIconComponent extends IconComponentBase {
28788
+ static slug = 'rocket';
28789
+ static category = 'eagami';
28790
+ static tags = [
28791
+ 'rocket',
28792
+ 'launch',
28793
+ 'startup',
28794
+ 'space',
28795
+ 'boost',
28796
+ 'fusée',
28797
+ 'cohete',
28798
+ 'πύραυλος',
28799
+ 'rakieta',
28800
+ ];
28801
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: RocketIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
28802
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: RocketIconComponent, isStandalone: true, selector: "ea-icon-rocket", usesInheritance: true, ngImport: i0, template: `
28803
+ <svg
28804
+ viewBox="0 0 24 24"
28805
+ fill="none"
28806
+ stroke="currentColor"
28807
+ [attr.stroke-width]="strokeWidth()"
28808
+ stroke-linecap="round"
28809
+ stroke-linejoin="round"
28810
+ aria-hidden="true"
28811
+ width="100%"
28812
+ height="100%">
28813
+ <path d="M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5" />
28814
+ <path
28815
+ d="M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09" />
28816
+ <path
28817
+ d="M9 12a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.4 22.4 0 0 1-4 2z" />
28818
+ <path d="M9 12H4s.55-3.03 2-4c1.62-1.08 5 .05 5 .05" />
28819
+ </svg>
28820
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
28821
+ }
28822
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: RocketIconComponent, decorators: [{
28823
+ type: Component,
28824
+ args: [{
28825
+ selector: 'ea-icon-rocket',
28826
+ changeDetection: ChangeDetectionStrategy.OnPush,
28827
+ template: `
28828
+ <svg
28829
+ viewBox="0 0 24 24"
28830
+ fill="none"
28831
+ stroke="currentColor"
28832
+ [attr.stroke-width]="strokeWidth()"
28833
+ stroke-linecap="round"
28834
+ stroke-linejoin="round"
28835
+ aria-hidden="true"
28836
+ width="100%"
28837
+ height="100%">
28838
+ <path d="M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5" />
28839
+ <path
28840
+ d="M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09" />
28841
+ <path
28842
+ d="M9 12a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.4 22.4 0 0 1-4 2z" />
28843
+ <path d="M9 12H4s.55-3.03 2-4c1.62-1.08 5 .05 5 .05" />
28844
+ </svg>
28845
+ `,
28846
+ }]
28847
+ }] });
28848
+
27573
28849
  class RotateCwIconComponent extends IconComponentBase {
27574
28850
  static slug = 'rotate-cw';
27575
28851
  static category = 'feather';
@@ -27747,6 +29023,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
27747
29023
  }]
27748
29024
  }] });
27749
29025
 
29026
+ class ScanIconComponent extends IconComponentBase {
29027
+ static slug = 'scan';
29028
+ static category = 'eagami';
29029
+ static tags = [
29030
+ 'scan',
29031
+ 'scanner',
29032
+ 'frame',
29033
+ 'focus',
29034
+ 'escanear',
29035
+ 'σάρωση',
29036
+ 'skanowanie',
29037
+ ];
29038
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ScanIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
29039
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: ScanIconComponent, isStandalone: true, selector: "ea-icon-scan", usesInheritance: true, ngImport: i0, template: `
29040
+ <svg
29041
+ viewBox="0 0 24 24"
29042
+ fill="none"
29043
+ stroke="currentColor"
29044
+ [attr.stroke-width]="strokeWidth()"
29045
+ stroke-linecap="round"
29046
+ stroke-linejoin="round"
29047
+ aria-hidden="true"
29048
+ width="100%"
29049
+ height="100%">
29050
+ <path d="M3 7V5a2 2 0 0 1 2-2h2" />
29051
+ <path d="M17 3h2a2 2 0 0 1 2 2v2" />
29052
+ <path d="M21 17v2a2 2 0 0 1-2 2h-2" />
29053
+ <path d="M7 21H5a2 2 0 0 1-2-2v-2" />
29054
+ </svg>
29055
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
29056
+ }
29057
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ScanIconComponent, decorators: [{
29058
+ type: Component,
29059
+ args: [{
29060
+ selector: 'ea-icon-scan',
29061
+ changeDetection: ChangeDetectionStrategy.OnPush,
29062
+ template: `
29063
+ <svg
29064
+ viewBox="0 0 24 24"
29065
+ fill="none"
29066
+ stroke="currentColor"
29067
+ [attr.stroke-width]="strokeWidth()"
29068
+ stroke-linecap="round"
29069
+ stroke-linejoin="round"
29070
+ aria-hidden="true"
29071
+ width="100%"
29072
+ height="100%">
29073
+ <path d="M3 7V5a2 2 0 0 1 2-2h2" />
29074
+ <path d="M17 3h2a2 2 0 0 1 2 2v2" />
29075
+ <path d="M21 17v2a2 2 0 0 1-2 2h-2" />
29076
+ <path d="M7 21H5a2 2 0 0 1-2-2v-2" />
29077
+ </svg>
29078
+ `,
29079
+ }]
29080
+ }] });
29081
+
27750
29082
  class ScissorsIconComponent extends IconComponentBase {
27751
29083
  static slug = 'scissors';
27752
29084
  static category = 'feather';
@@ -29352,6 +30684,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
29352
30684
  }]
29353
30685
  }] });
29354
30686
 
30687
+ class SnowflakeIconComponent extends IconComponentBase {
30688
+ static slug = 'snowflake';
30689
+ static category = 'eagami';
30690
+ static tags = [
30691
+ 'snowflake',
30692
+ 'snow',
30693
+ 'winter',
30694
+ 'cold',
30695
+ 'frost',
30696
+ 'flocon',
30697
+ 'copo',
30698
+ 'νιφάδα',
30699
+ 'płatek',
30700
+ ];
30701
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: SnowflakeIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
30702
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: SnowflakeIconComponent, isStandalone: true, selector: "ea-icon-snowflake", usesInheritance: true, ngImport: i0, template: `
30703
+ <svg
30704
+ viewBox="0 0 24 24"
30705
+ fill="none"
30706
+ stroke="currentColor"
30707
+ [attr.stroke-width]="strokeWidth()"
30708
+ stroke-linecap="round"
30709
+ stroke-linejoin="round"
30710
+ aria-hidden="true"
30711
+ width="100%"
30712
+ height="100%">
30713
+ <path d="m10 20-1.25-2.5L6 18" />
30714
+ <path d="M10 4 8.75 6.5 6 6" />
30715
+ <path d="m14 20 1.25-2.5L18 18" />
30716
+ <path d="m14 4 1.25 2.5L18 6" />
30717
+ <path d="m17 21-3-6h-4" />
30718
+ <path d="m17 3-3 6 1.5 3" />
30719
+ <path d="M2 12h6.5L10 9" />
30720
+ <path d="m20 10-1.5 2 1.5 2" />
30721
+ <path d="M22 12h-6.5L14 15" />
30722
+ <path d="m4 10 1.5 2L4 14" />
30723
+ <path d="m7 21 3-6-1.5-3" />
30724
+ <path d="m7 3 3 6h4" />
30725
+ </svg>
30726
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
30727
+ }
30728
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: SnowflakeIconComponent, decorators: [{
30729
+ type: Component,
30730
+ args: [{
30731
+ selector: 'ea-icon-snowflake',
30732
+ changeDetection: ChangeDetectionStrategy.OnPush,
30733
+ template: `
30734
+ <svg
30735
+ viewBox="0 0 24 24"
30736
+ fill="none"
30737
+ stroke="currentColor"
30738
+ [attr.stroke-width]="strokeWidth()"
30739
+ stroke-linecap="round"
30740
+ stroke-linejoin="round"
30741
+ aria-hidden="true"
30742
+ width="100%"
30743
+ height="100%">
30744
+ <path d="m10 20-1.25-2.5L6 18" />
30745
+ <path d="M10 4 8.75 6.5 6 6" />
30746
+ <path d="m14 20 1.25-2.5L18 18" />
30747
+ <path d="m14 4 1.25 2.5L18 6" />
30748
+ <path d="m17 21-3-6h-4" />
30749
+ <path d="m17 3-3 6 1.5 3" />
30750
+ <path d="M2 12h6.5L10 9" />
30751
+ <path d="m20 10-1.5 2 1.5 2" />
30752
+ <path d="M22 12h-6.5L14 15" />
30753
+ <path d="m4 10 1.5 2L4 14" />
30754
+ <path d="m7 21 3-6-1.5-3" />
30755
+ <path d="m7 3 3 6h4" />
30756
+ </svg>
30757
+ `,
30758
+ }]
30759
+ }] });
30760
+
29355
30761
  class SoccerBallIconComponent extends IconComponentBase {
29356
30762
  static slug = 'soccer-ball';
29357
30763
  static category = 'eagami';
@@ -29461,6 +30867,73 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
29461
30867
  }]
29462
30868
  }] });
29463
30869
 
30870
+ class SparklesIconComponent extends IconComponentBase {
30871
+ static slug = 'sparkles';
30872
+ static category = 'eagami';
30873
+ static tags = [
30874
+ 'sparkles',
30875
+ 'sparkle',
30876
+ 'shine',
30877
+ 'magic',
30878
+ 'ai',
30879
+ 'glitter',
30880
+ 'étincelles',
30881
+ 'destellos',
30882
+ 'λάμψη',
30883
+ 'iskry',
30884
+ ];
30885
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: SparklesIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
30886
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: SparklesIconComponent, isStandalone: true, selector: "ea-icon-sparkles", usesInheritance: true, ngImport: i0, template: `
30887
+ <svg
30888
+ viewBox="0 0 24 24"
30889
+ fill="none"
30890
+ stroke="currentColor"
30891
+ [attr.stroke-width]="strokeWidth()"
30892
+ stroke-linecap="round"
30893
+ stroke-linejoin="round"
30894
+ aria-hidden="true"
30895
+ width="100%"
30896
+ height="100%">
30897
+ <path
30898
+ d="M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z" />
30899
+ <path d="M20 2v4" />
30900
+ <path d="M22 4h-4" />
30901
+ <circle
30902
+ cx="4"
30903
+ cy="20"
30904
+ r="2" />
30905
+ </svg>
30906
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
30907
+ }
30908
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: SparklesIconComponent, decorators: [{
30909
+ type: Component,
30910
+ args: [{
30911
+ selector: 'ea-icon-sparkles',
30912
+ changeDetection: ChangeDetectionStrategy.OnPush,
30913
+ template: `
30914
+ <svg
30915
+ viewBox="0 0 24 24"
30916
+ fill="none"
30917
+ stroke="currentColor"
30918
+ [attr.stroke-width]="strokeWidth()"
30919
+ stroke-linecap="round"
30920
+ stroke-linejoin="round"
30921
+ aria-hidden="true"
30922
+ width="100%"
30923
+ height="100%">
30924
+ <path
30925
+ d="M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z" />
30926
+ <path d="M20 2v4" />
30927
+ <path d="M22 4h-4" />
30928
+ <circle
30929
+ cx="4"
30930
+ cy="20"
30931
+ r="2" />
30932
+ </svg>
30933
+ `,
30934
+ }]
30935
+ }] });
30936
+
29464
30937
  class SpeakerIconComponent extends IconComponentBase {
29465
30938
  static slug = 'speaker';
29466
30939
  static category = 'feather';
@@ -30338,16 +31811,61 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
30338
31811
  width="100%"
30339
31812
  height="100%">
30340
31813
  <path
30341
- d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" />
30342
- <line
30343
- x1="7"
30344
- y1="7"
30345
- x2="7.01"
30346
- y2="7" />
31814
+ d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" />
31815
+ <line
31816
+ x1="7"
31817
+ y1="7"
31818
+ x2="7.01"
31819
+ y2="7" />
31820
+ </svg>
31821
+ `,
31822
+ }]
31823
+ }] });
31824
+
31825
+ class TailwindIconComponent extends IconComponentBase {
31826
+ static slug = 'tailwind';
31827
+ static category = 'eagami';
31828
+ static isBrand = true;
31829
+ static tags = [
31830
+ 'tailwind',
31831
+ 'tailwindcss',
31832
+ 'css',
31833
+ 'framework',
31834
+ 'styling',
31835
+ ];
31836
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
31837
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: TailwindIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
31838
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: TailwindIconComponent, isStandalone: true, selector: "ea-icon-tailwind", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#06B6D4' : null" } }, usesInheritance: true, ngImport: i0, template: `
31839
+ <svg
31840
+ viewBox="0 0 24 24"
31841
+ fill="currentColor"
31842
+ aria-hidden="true"
31843
+ width="100%"
31844
+ height="100%">
31845
+ <path
31846
+ d="M12.001,4.8c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 C13.666,10.618,15.027,12,18.001,12c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C16.337,6.182,14.976,4.8,12.001,4.8z M6.001,12c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 c1.177,1.194,2.538,2.576,5.512,2.576c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C10.337,13.382,8.976,12,6.001,12z" />
31847
+ </svg>
31848
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
31849
+ }
31850
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: TailwindIconComponent, decorators: [{
31851
+ type: Component,
31852
+ args: [{
31853
+ selector: 'ea-icon-tailwind',
31854
+ changeDetection: ChangeDetectionStrategy.OnPush,
31855
+ host: { '[style.color]': "brand() ? '#06B6D4' : null" },
31856
+ template: `
31857
+ <svg
31858
+ viewBox="0 0 24 24"
31859
+ fill="currentColor"
31860
+ aria-hidden="true"
31861
+ width="100%"
31862
+ height="100%">
31863
+ <path
31864
+ d="M12.001,4.8c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 C13.666,10.618,15.027,12,18.001,12c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C16.337,6.182,14.976,4.8,12.001,4.8z M6.001,12c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 c1.177,1.194,2.538,2.576,5.512,2.576c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C10.337,13.382,8.976,12,6.001,12z" />
30347
31865
  </svg>
30348
31866
  `,
30349
31867
  }]
30350
- }] });
31868
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
30351
31869
 
30352
31870
  class TargetIconComponent extends IconComponentBase {
30353
31871
  static slug = 'target';
@@ -30427,6 +31945,50 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
30427
31945
  }]
30428
31946
  }] });
30429
31947
 
31948
+ class TelegramIconComponent extends IconComponentBase {
31949
+ static slug = 'telegram';
31950
+ static category = 'eagami';
31951
+ static isBrand = true;
31952
+ static tags = [
31953
+ 'telegram',
31954
+ 'chat',
31955
+ 'messaging',
31956
+ 'social',
31957
+ ];
31958
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
31959
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: TelegramIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
31960
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: TelegramIconComponent, isStandalone: true, selector: "ea-icon-telegram", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#26A5E4' : null" } }, usesInheritance: true, ngImport: i0, template: `
31961
+ <svg
31962
+ viewBox="0 0 24 24"
31963
+ fill="currentColor"
31964
+ aria-hidden="true"
31965
+ width="100%"
31966
+ height="100%">
31967
+ <path
31968
+ d="M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z" />
31969
+ </svg>
31970
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
31971
+ }
31972
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: TelegramIconComponent, decorators: [{
31973
+ type: Component,
31974
+ args: [{
31975
+ selector: 'ea-icon-telegram',
31976
+ changeDetection: ChangeDetectionStrategy.OnPush,
31977
+ host: { '[style.color]': "brand() ? '#26A5E4' : null" },
31978
+ template: `
31979
+ <svg
31980
+ viewBox="0 0 24 24"
31981
+ fill="currentColor"
31982
+ aria-hidden="true"
31983
+ width="100%"
31984
+ height="100%">
31985
+ <path
31986
+ d="M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z" />
31987
+ </svg>
31988
+ `,
31989
+ }]
31990
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
31991
+
30430
31992
  class TerminalIconComponent extends IconComponentBase {
30431
31993
  static slug = 'terminal';
30432
31994
  static category = 'feather';
@@ -30548,6 +32110,50 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
30548
32110
  }]
30549
32111
  }] });
30550
32112
 
32113
+ class ThreadsIconComponent extends IconComponentBase {
32114
+ static slug = 'threads';
32115
+ static category = 'eagami';
32116
+ static isBrand = true;
32117
+ static tags = [
32118
+ 'threads',
32119
+ 'social',
32120
+ 'meta',
32121
+ 'instagram',
32122
+ ];
32123
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
32124
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ThreadsIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
32125
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: ThreadsIconComponent, isStandalone: true, selector: "ea-icon-threads", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#000000' : null" } }, usesInheritance: true, ngImport: i0, template: `
32126
+ <svg
32127
+ viewBox="0 0 24 24"
32128
+ fill="currentColor"
32129
+ aria-hidden="true"
32130
+ width="100%"
32131
+ height="100%">
32132
+ <path
32133
+ d="M12.186 24h-.007c-3.581-.024-6.334-1.205-8.184-3.509C2.35 18.44 1.5 15.586 1.472 12.01v-.017c.03-3.579.879-6.43 2.525-8.482C5.845 1.205 8.6.024 12.18 0h.014c2.746.02 5.043.725 6.826 2.098 1.677 1.29 2.858 3.13 3.509 5.467l-2.04.569c-1.104-3.96-3.898-5.984-8.304-6.015-2.91.022-5.11.936-6.54 2.717C4.307 6.504 3.616 8.914 3.589 12c.027 3.086.718 5.496 2.057 7.164 1.43 1.783 3.631 2.698 6.54 2.717 2.623-.02 4.358-.631 5.8-2.045 1.647-1.613 1.618-3.593 1.09-4.798-.31-.71-.873-1.3-1.634-1.75-.192 1.352-.622 2.446-1.284 3.272-.886 1.102-2.14 1.704-3.73 1.79-1.202.065-2.361-.218-3.259-.801-1.063-.689-1.685-1.74-1.752-2.964-.065-1.19.408-2.285 1.33-3.082.88-.76 2.119-1.207 3.583-1.291a13.853 13.853 0 0 1 3.02.142c-.126-.742-.375-1.332-.75-1.757-.513-.586-1.308-.883-2.359-.89h-.029c-.844 0-1.992.232-2.721 1.32L7.734 7.847c.98-1.454 2.568-2.256 4.478-2.256h.044c3.194.02 5.097 1.975 5.287 5.388.108.046.216.094.321.142 1.49.7 2.58 1.761 3.154 3.07.797 1.82.871 4.79-1.548 7.158-1.85 1.81-4.094 2.628-7.277 2.65Zm1.003-11.69c-.242 0-.487.007-.739.021-1.836.103-2.98.946-2.916 2.143.067 1.256 1.452 1.839 2.784 1.767 1.224-.065 2.818-.543 3.086-3.71a10.5 10.5 0 0 0-2.215-.221z" />
32134
+ </svg>
32135
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
32136
+ }
32137
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ThreadsIconComponent, decorators: [{
32138
+ type: Component,
32139
+ args: [{
32140
+ selector: 'ea-icon-threads',
32141
+ changeDetection: ChangeDetectionStrategy.OnPush,
32142
+ host: { '[style.color]': "brand() ? '#000000' : null" },
32143
+ template: `
32144
+ <svg
32145
+ viewBox="0 0 24 24"
32146
+ fill="currentColor"
32147
+ aria-hidden="true"
32148
+ width="100%"
32149
+ height="100%">
32150
+ <path
32151
+ d="M12.186 24h-.007c-3.581-.024-6.334-1.205-8.184-3.509C2.35 18.44 1.5 15.586 1.472 12.01v-.017c.03-3.579.879-6.43 2.525-8.482C5.845 1.205 8.6.024 12.18 0h.014c2.746.02 5.043.725 6.826 2.098 1.677 1.29 2.858 3.13 3.509 5.467l-2.04.569c-1.104-3.96-3.898-5.984-8.304-6.015-2.91.022-5.11.936-6.54 2.717C4.307 6.504 3.616 8.914 3.589 12c.027 3.086.718 5.496 2.057 7.164 1.43 1.783 3.631 2.698 6.54 2.717 2.623-.02 4.358-.631 5.8-2.045 1.647-1.613 1.618-3.593 1.09-4.798-.31-.71-.873-1.3-1.634-1.75-.192 1.352-.622 2.446-1.284 3.272-.886 1.102-2.14 1.704-3.73 1.79-1.202.065-2.361-.218-3.259-.801-1.063-.689-1.685-1.74-1.752-2.964-.065-1.19.408-2.285 1.33-3.082.88-.76 2.119-1.207 3.583-1.291a13.853 13.853 0 0 1 3.02.142c-.126-.742-.375-1.332-.75-1.757-.513-.586-1.308-.883-2.359-.89h-.029c-.844 0-1.992.232-2.721 1.32L7.734 7.847c.98-1.454 2.568-2.256 4.478-2.256h.044c3.194.02 5.097 1.975 5.287 5.388.108.046.216.094.321.142 1.49.7 2.58 1.761 3.154 3.07.797 1.82.871 4.79-1.548 7.158-1.85 1.81-4.094 2.628-7.277 2.65Zm1.003-11.69c-.242 0-.487.007-.739.021-1.836.103-2.98.946-2.916 2.143.067 1.256 1.452 1.839 2.784 1.767 1.224-.065 2.818-.543 3.086-3.71a10.5 10.5 0 0 0-2.215-.221z" />
32152
+ </svg>
32153
+ `,
32154
+ }]
32155
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
32156
+
30551
32157
  class ThumbsDownIconComponent extends IconComponentBase {
30552
32158
  static slug = 'thumbs-down';
30553
32159
  static category = 'feather';
@@ -30669,6 +32275,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
30669
32275
  }]
30670
32276
  }] });
30671
32277
 
32278
+ class TiktokIconComponent extends IconComponentBase {
32279
+ static slug = 'tiktok';
32280
+ static category = 'eagami';
32281
+ static isBrand = true;
32282
+ static tags = ['tiktok', 'social', 'video', 'music'];
32283
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
32284
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: TiktokIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
32285
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: TiktokIconComponent, isStandalone: true, selector: "ea-icon-tiktok", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#000000' : null" } }, usesInheritance: true, ngImport: i0, template: `
32286
+ <svg
32287
+ viewBox="0 0 24 24"
32288
+ fill="currentColor"
32289
+ aria-hidden="true"
32290
+ width="100%"
32291
+ height="100%">
32292
+ <path
32293
+ d="M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z" />
32294
+ </svg>
32295
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
32296
+ }
32297
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: TiktokIconComponent, decorators: [{
32298
+ type: Component,
32299
+ args: [{
32300
+ selector: 'ea-icon-tiktok',
32301
+ changeDetection: ChangeDetectionStrategy.OnPush,
32302
+ host: { '[style.color]': "brand() ? '#000000' : null" },
32303
+ template: `
32304
+ <svg
32305
+ viewBox="0 0 24 24"
32306
+ fill="currentColor"
32307
+ aria-hidden="true"
32308
+ width="100%"
32309
+ height="100%">
32310
+ <path
32311
+ d="M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z" />
32312
+ </svg>
32313
+ `,
32314
+ }]
32315
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
32316
+
30672
32317
  class ToggleLeftIconComponent extends IconComponentBase {
30673
32318
  static slug = 'toggle-left';
30674
32319
  static category = 'feather';
@@ -31796,6 +33441,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
31796
33441
  }]
31797
33442
  }] });
31798
33443
 
33444
+ class UndoIconComponent extends IconComponentBase {
33445
+ static slug = 'undo';
33446
+ static category = 'eagami';
33447
+ static tags = [
33448
+ 'undo',
33449
+ 'back',
33450
+ 'revert',
33451
+ 'history',
33452
+ 'annuler',
33453
+ 'deshacer',
33454
+ 'αναίρεση',
33455
+ 'cofnij',
33456
+ ];
33457
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: UndoIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
33458
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: UndoIconComponent, isStandalone: true, selector: "ea-icon-undo", usesInheritance: true, ngImport: i0, template: `
33459
+ <svg
33460
+ viewBox="0 0 24 24"
33461
+ fill="none"
33462
+ stroke="currentColor"
33463
+ [attr.stroke-width]="strokeWidth()"
33464
+ stroke-linecap="round"
33465
+ stroke-linejoin="round"
33466
+ aria-hidden="true"
33467
+ width="100%"
33468
+ height="100%">
33469
+ <path d="M3 7v6h6" />
33470
+ <path d="M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" />
33471
+ </svg>
33472
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
33473
+ }
33474
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: UndoIconComponent, decorators: [{
33475
+ type: Component,
33476
+ args: [{
33477
+ selector: 'ea-icon-undo',
33478
+ changeDetection: ChangeDetectionStrategy.OnPush,
33479
+ template: `
33480
+ <svg
33481
+ viewBox="0 0 24 24"
33482
+ fill="none"
33483
+ stroke="currentColor"
33484
+ [attr.stroke-width]="strokeWidth()"
33485
+ stroke-linecap="round"
33486
+ stroke-linejoin="round"
33487
+ aria-hidden="true"
33488
+ width="100%"
33489
+ height="100%">
33490
+ <path d="M3 7v6h6" />
33491
+ <path d="M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" />
33492
+ </svg>
33493
+ `,
33494
+ }]
33495
+ }] });
33496
+
31799
33497
  class UnlockIconComponent extends IconComponentBase {
31800
33498
  static slug = 'unlock';
31801
33499
  static category = 'feather';
@@ -32750,6 +34448,130 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
32750
34448
  }]
32751
34449
  }] });
32752
34450
 
34451
+ class WalletIconComponent extends IconComponentBase {
34452
+ static slug = 'wallet';
34453
+ static category = 'eagami';
34454
+ static tags = [
34455
+ 'wallet',
34456
+ 'money',
34457
+ 'payment',
34458
+ 'cash',
34459
+ 'finance',
34460
+ 'portefeuille',
34461
+ 'cartera',
34462
+ 'πορτοφόλι',
34463
+ 'portfel',
34464
+ ];
34465
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: WalletIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
34466
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: WalletIconComponent, isStandalone: true, selector: "ea-icon-wallet", usesInheritance: true, ngImport: i0, template: `
34467
+ <svg
34468
+ viewBox="0 0 24 24"
34469
+ fill="none"
34470
+ stroke="currentColor"
34471
+ [attr.stroke-width]="strokeWidth()"
34472
+ stroke-linecap="round"
34473
+ stroke-linejoin="round"
34474
+ aria-hidden="true"
34475
+ width="100%"
34476
+ height="100%">
34477
+ <path
34478
+ d="M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1" />
34479
+ <path d="M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4" />
34480
+ </svg>
34481
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
34482
+ }
34483
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: WalletIconComponent, decorators: [{
34484
+ type: Component,
34485
+ args: [{
34486
+ selector: 'ea-icon-wallet',
34487
+ changeDetection: ChangeDetectionStrategy.OnPush,
34488
+ template: `
34489
+ <svg
34490
+ viewBox="0 0 24 24"
34491
+ fill="none"
34492
+ stroke="currentColor"
34493
+ [attr.stroke-width]="strokeWidth()"
34494
+ stroke-linecap="round"
34495
+ stroke-linejoin="round"
34496
+ aria-hidden="true"
34497
+ width="100%"
34498
+ height="100%">
34499
+ <path
34500
+ d="M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1" />
34501
+ <path d="M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4" />
34502
+ </svg>
34503
+ `,
34504
+ }]
34505
+ }] });
34506
+
34507
+ class WandIconComponent extends IconComponentBase {
34508
+ static slug = 'wand';
34509
+ static category = 'eagami';
34510
+ static tags = [
34511
+ 'wand',
34512
+ 'magic',
34513
+ 'wizard',
34514
+ 'spell',
34515
+ 'baguette',
34516
+ 'varita',
34517
+ 'magia',
34518
+ 'ραβδί',
34519
+ 'różdżka',
34520
+ ];
34521
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: WandIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
34522
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: WandIconComponent, isStandalone: true, selector: "ea-icon-wand", usesInheritance: true, ngImport: i0, template: `
34523
+ <svg
34524
+ viewBox="0 0 24 24"
34525
+ fill="none"
34526
+ stroke="currentColor"
34527
+ [attr.stroke-width]="strokeWidth()"
34528
+ stroke-linecap="round"
34529
+ stroke-linejoin="round"
34530
+ aria-hidden="true"
34531
+ width="100%"
34532
+ height="100%">
34533
+ <path d="M15 4V2" />
34534
+ <path d="M15 16v-2" />
34535
+ <path d="M8 9h2" />
34536
+ <path d="M20 9h2" />
34537
+ <path d="M17.8 11.8 19 13" />
34538
+ <path d="M15 9h.01" />
34539
+ <path d="M17.8 6.2 19 5" />
34540
+ <path d="m3 21 9-9" />
34541
+ <path d="M12.2 6.2 11 5" />
34542
+ </svg>
34543
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
34544
+ }
34545
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: WandIconComponent, decorators: [{
34546
+ type: Component,
34547
+ args: [{
34548
+ selector: 'ea-icon-wand',
34549
+ changeDetection: ChangeDetectionStrategy.OnPush,
34550
+ template: `
34551
+ <svg
34552
+ viewBox="0 0 24 24"
34553
+ fill="none"
34554
+ stroke="currentColor"
34555
+ [attr.stroke-width]="strokeWidth()"
34556
+ stroke-linecap="round"
34557
+ stroke-linejoin="round"
34558
+ aria-hidden="true"
34559
+ width="100%"
34560
+ height="100%">
34561
+ <path d="M15 4V2" />
34562
+ <path d="M15 16v-2" />
34563
+ <path d="M8 9h2" />
34564
+ <path d="M20 9h2" />
34565
+ <path d="M17.8 11.8 19 13" />
34566
+ <path d="M15 9h.01" />
34567
+ <path d="M17.8 6.2 19 5" />
34568
+ <path d="m3 21 9-9" />
34569
+ <path d="M12.2 6.2 11 5" />
34570
+ </svg>
34571
+ `,
34572
+ }]
34573
+ }] });
34574
+
32753
34575
  class WatchIconComponent extends IconComponentBase {
32754
34576
  static slug = 'watch';
32755
34577
  static category = 'feather';
@@ -32816,6 +34638,50 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
32816
34638
  }]
32817
34639
  }] });
32818
34640
 
34641
+ class WhatsappIconComponent extends IconComponentBase {
34642
+ static slug = 'whatsapp';
34643
+ static category = 'eagami';
34644
+ static isBrand = true;
34645
+ static tags = [
34646
+ 'whatsapp',
34647
+ 'chat',
34648
+ 'messaging',
34649
+ 'social',
34650
+ ];
34651
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
34652
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: WhatsappIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
34653
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: WhatsappIconComponent, isStandalone: true, selector: "ea-icon-whatsapp", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#25D366' : null" } }, usesInheritance: true, ngImport: i0, template: `
34654
+ <svg
34655
+ viewBox="0 0 24 24"
34656
+ fill="currentColor"
34657
+ aria-hidden="true"
34658
+ width="100%"
34659
+ height="100%">
34660
+ <path
34661
+ d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z" />
34662
+ </svg>
34663
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
34664
+ }
34665
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: WhatsappIconComponent, decorators: [{
34666
+ type: Component,
34667
+ args: [{
34668
+ selector: 'ea-icon-whatsapp',
34669
+ changeDetection: ChangeDetectionStrategy.OnPush,
34670
+ host: { '[style.color]': "brand() ? '#25D366' : null" },
34671
+ template: `
34672
+ <svg
34673
+ viewBox="0 0 24 24"
34674
+ fill="currentColor"
34675
+ aria-hidden="true"
34676
+ width="100%"
34677
+ height="100%">
34678
+ <path
34679
+ d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z" />
34680
+ </svg>
34681
+ `,
34682
+ }]
34683
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
34684
+
32819
34685
  class WifiOffIconComponent extends IconComponentBase {
32820
34686
  static slug = 'wifi-off';
32821
34687
  static category = 'feather';
@@ -34072,11 +35938,43 @@ const ICONS = [
34072
35938
  ZapIconComponent,
34073
35939
  ZoomInIconComponent,
34074
35940
  ZoomOutIconComponent,
35941
+ AnthropicIconComponent,
35942
+ BadgeCheckIconComponent,
35943
+ BitcoinIconComponent,
35944
+ BookmarkCheckIconComponent,
35945
+ BotIconComponent,
35946
+ BrainIconComponent,
35947
+ CalendarCheckIconComponent,
35948
+ ClipboardCheckIconComponent,
35949
+ CoinsIconComponent,
35950
+ FilterXIconComponent,
35951
+ FingerprintIconComponent,
35952
+ FlameIconComponent,
35953
+ GaugeIconComponent,
35954
+ GeminiIconComponent,
35955
+ LeafIconComponent,
35956
+ ListChecksIconComponent,
35957
+ QrCodeIconComponent,
35958
+ ReactIconComponent,
35959
+ ReceiptIconComponent,
35960
+ RedoIconComponent,
35961
+ RocketIconComponent,
35962
+ ScanIconComponent,
35963
+ SnowflakeIconComponent,
35964
+ SparklesIconComponent,
35965
+ TailwindIconComponent,
35966
+ TelegramIconComponent,
35967
+ ThreadsIconComponent,
35968
+ TiktokIconComponent,
35969
+ UndoIconComponent,
35970
+ WalletIconComponent,
35971
+ WandIconComponent,
35972
+ WhatsappIconComponent,
34075
35973
  ].sort((a, b) => a.slug.localeCompare(b.slug));
34076
35974
 
34077
35975
  /**
34078
35976
  * Generated bundle index. Do not edit.
34079
35977
  */
34080
35978
 
34081
- export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, ApertureIconComponent, 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, ColorPickerComponent, ColumnsIconComponent, CommandIconComponent, CommandPaletteComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DEFAULT_PALETTE_ROLES, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideCircleIconComponent, DivideIconComponent, DivideSquareIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DribbbleIconComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_ALL_LOCALES, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_LOCALE_META, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FieldLabelComponent, FieldMessagesComponent, Figma2IconComponent, FigmaIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FlagIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FramerIconComponent, FrownIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HalfCircleIconComponent, HalfHeartIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KubernetesIconComponent, LampIconComponent, LayersIconComponent, LayoutIconComponent, LeftHalfStarIconComponent, 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, MultiSelectComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NotionIconComponent, NpmIconComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, 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, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TargetIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TimePickerComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, 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, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WCAG_AA, WatchIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, computePopoverPosition, contrastRatio, de, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, hexToOklch, iconDisplayName, is, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, validatePalette, visibleNodeIds, walkTree, zhCN };
35979
+ export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, AnthropicIconComponent, ApertureIconComponent, ArchiveIconComponent, ArrowDownCircleIconComponent, ArrowDownIconComponent, ArrowDownLeftIconComponent, ArrowDownRightIconComponent, ArrowLeftCircleIconComponent, ArrowLeftIconComponent, ArrowRightCircleIconComponent, ArrowRightIconComponent, ArrowUpCircleIconComponent, ArrowUpIconComponent, ArrowUpLeftIconComponent, ArrowUpRightIconComponent, AtSignIconComponent, AutocompleteComponent, AvatarComponent, AvatarEditorComponent, AwardIconComponent, BadgeCheckIconComponent, BadgeComponent, BarChart2IconComponent, BarChartIconComponent, BatteryChargingIconComponent, BatteryIconComponent, BellIconComponent, BellOffIconComponent, BitcoinIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkCheckIconComponent, BookmarkIconComponent, BotIconComponent, BottleIconComponent, BoxIconComponent, BrainIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarCheckIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardCheckIconComponent, ClipboardIconComponent, ClockIconComponent, CloudDrizzleIconComponent, CloudIconComponent, CloudLightningIconComponent, CloudOffIconComponent, CloudRainIconComponent, CloudSnowIconComponent, CloudflareIconComponent, CodeIconComponent, CodeInputComponent, CodepenIconComponent, CodesandboxIconComponent, CoffeeIconComponent, CoinsIconComponent, ColorPickerComponent, ColumnsIconComponent, CommandIconComponent, CommandPaletteComponent, CompassIconComponent, CopyIconComponent, CornerDownLeftIconComponent, CornerDownRightIconComponent, CornerLeftDownIconComponent, CornerLeftUpIconComponent, CornerRightDownIconComponent, CornerRightUpIconComponent, CornerUpLeftIconComponent, CornerUpRightIconComponent, CpuIconComponent, CreditCardIconComponent, CropIconComponent, CrosshairIconComponent, DEFAULT_PALETTE_ROLES, DataTableComponent, DatabaseIconComponent, DatePickerComponent, DeleteIconComponent, DialogComponent, DiscIconComponent, DiscordIconComponent, DivideCircleIconComponent, DivideIconComponent, DivideSquareIconComponent, DividerComponent, DockerIconComponent, DollarSignIconComponent, DownloadCloudIconComponent, DownloadIconComponent, DrawerComponent, DribbbleIconComponent, DropboxIconComponent, DropdownComponent, DropletIconComponent, EAGAMI_ALL_LOCALES, EAGAMI_I18N_CONFIG, EAGAMI_LOCALES, EAGAMI_LOCALE_META, EagamiI18nService, EagamiIconComponent, EagamiWordmarkComponent, Edit2IconComponent, Edit3IconComponent, EditIconComponent, EmptyStateComponent, ExternalLinkIconComponent, EyeIconComponent, EyeOffIconComponent, Facebook2IconComponent, FacebookIconComponent, FastForwardIconComponent, FeatherIconComponent, FieldLabelComponent, FieldMessagesComponent, Figma2IconComponent, FigmaIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FilterXIconComponent, FingerprintIconComponent, FlagIconComponent, FlameIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderPlusIconComponent, FramerIconComponent, FrownIconComponent, GaugeIconComponent, GeminiIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitMergeIconComponent, GitPullRequestIconComponent, Github2IconComponent, GithubIconComponent, GitlabIconComponent, GlobeIconComponent, GoogleIconComponent, GridIconComponent, HalfCircleIconComponent, HalfHeartIconComponent, HardDriveIconComponent, HashIconComponent, HeadphonesIconComponent, HeartIconComponent, HelpCircleIconComponent, HeptagonIconComponent, HexagonIconComponent, HomeIconComponent, ICONS, IconComponentBase, ImageIconComponent, InboxIconComponent, InfoIconComponent, InputComponent, InstagramIconComponent, ItalicIconComponent, KeyIconComponent, KubernetesIconComponent, LampIconComponent, LayersIconComponent, LayoutIconComponent, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, 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, MultiSelectComponent, MusicIconComponent, Navigation2IconComponent, NavigationIconComponent, NetlifyIconComponent, NotionIconComponent, NpmIconComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, QrCodeIconComponent, RadioComponent, RadioGroupComponent, RadioIconComponent, RangeSliderComponent, RatingComponent, ReactIconComponent, ReceiptIconComponent, RectangleHorizontalIconComponent, RectangleVerticalIconComponent, RedditIconComponent, RedoIconComponent, RefreshCcwIconComponent, RefreshCwIconComponent, RepeatIconComponent, RewindIconComponent, RightHalfStarIconComponent, RocketIconComponent, RotateCcwIconComponent, RotateCwIconComponent, RssIconComponent, SaveIconComponent, ScanIconComponent, ScissorsIconComponent, SearchIconComponent, SegmentedComponent, SendIconComponent, ServerIconComponent, SettingsIconComponent, Share2IconComponent, ShareIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShoppingBagIconComponent, ShoppingCartIconComponent, ShuffleIconComponent, SidebarIconComponent, SkeletonComponent, SkipBackIconComponent, SkipForwardIconComponent, Slack2IconComponent, SlackIconComponent, SlashIconComponent, SliderComponent, SlidersIconComponent, SmartphoneIconComponent, SmileIconComponent, SnowflakeIconComponent, SoccerBallIconComponent, SparklesIconComponent, SpeakerIconComponent, SpinnerComponent, SpotifyIconComponent, SquareIconComponent, StarIconComponent, StepComponent, StepperComponent, StopCircleIconComponent, StripeIconComponent, SunIconComponent, SunriseIconComponent, SunsetIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TailwindIconComponent, TargetIconComponent, TelegramIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThreadsIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TiktokIconComponent, TimePickerComponent, ToastComponent, ToastService, ToggleLeftIconComponent, ToggleRightIconComponent, ToolIconComponent, TooltipDirective, TransferListComponent, Trash2IconComponent, TrashIconComponent, TreeComponent, TrelloIconComponent, TrendingDownIconComponent, TrendingUpIconComponent, TriangleIconComponent, TrophyIconComponent, TruckIconComponent, TvIconComponent, Twitch2IconComponent, TwitchIconComponent, TwitterIconComponent, TypeIconComponent, UmbrellaIconComponent, UnderlineIconComponent, UndoIconComponent, UnlockIconComponent, UploadCloudIconComponent, UploadIconComponent, UserCheckIconComponent, UserIconComponent, UserMinusIconComponent, UserPlusIconComponent, UserXIconComponent, UsersIconComponent, VercelIconComponent, VideoIconComponent, VideoOffIconComponent, VirtualListComponent, VoicemailIconComponent, Volume1IconComponent, Volume2IconComponent, VolumeIconComponent, VolumeXIconComponent, WCAG_AA, WalletIconComponent, WandIconComponent, WatchIconComponent, WhatsappIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, XCircleIconComponent, XIconComponent, XOctagonIconComponent, XSquareIconComponent, XTwitterIconComponent, Youtube2IconComponent, YoutubeIconComponent, ZapIconComponent, ZapOffIconComponent, ZoomInIconComponent, ZoomOutIconComponent, applyPalette, computePopoverPosition, contrastRatio, de, derivePalette, el, en, esES, formatViolations, frFR, frenchSpacing, hexToOklch, iconDisplayName, is, nl, oklchToHex, pl, provideEagamiUi, ptBR, relativeLuminance, validatePalette, visibleNodeIds, walkTree, zhCN };
34082
35980
  //# sourceMappingURL=eagami-ui.mjs.map