@eagami/ui 5.4.0 → 5.6.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.
@@ -14979,6 +14979,38 @@ function nextTime(current, unit, direction, minuteStep, secondStep) {
14979
14979
  return { hours, minutes, seconds: nextSeconds };
14980
14980
  }
14981
14981
 
14982
+ /**
14983
+ * Vertical or horizontal sequence of events, each a colored node on a connecting
14984
+ * line with an optional heading, timestamp, and description. A single item flagged
14985
+ * `current` is highlighted with the secondary brand color to mark "you are here".
14986
+ */
14987
+ class TimelineComponent {
14988
+ /** The events to render, in order. */
14989
+ items = input([], ...(ngDevMode ? [{ debugName: "items" }] : /* istanbul ignore next */ []));
14990
+ /** Direction the timeline flows. */
14991
+ orientation = input('vertical', ...(ngDevMode ? [{ debugName: "orientation" }] : /* istanbul ignore next */ []));
14992
+ /** Content placement relative to the line; `alternate` applies to vertical timelines only. */
14993
+ align = input('start', ...(ngDevMode ? [{ debugName: "align" }] : /* istanbul ignore next */ []));
14994
+ /** Visual size; scales nodes, gaps, and text from a single knob. */
14995
+ size = input('md', ...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
14996
+ hostClasses = computed(() => ({
14997
+ [`ea-timeline--${this.orientation()}`]: true,
14998
+ [`ea-timeline--${this.size()}`]: true,
14999
+ 'ea-timeline--alternate': this.orientation() === 'vertical' && this.align() === 'alternate',
15000
+ }), ...(ngDevMode ? [{ debugName: "hostClasses" }] : /* istanbul ignore next */ []));
15001
+ // Node modifier: the current marker always wins the secondary brand; otherwise
15002
+ // the item's semantic color (default when unset).
15003
+ itemModifier(item) {
15004
+ return `ea-timeline__item--${item.current ? 'current' : (item.color ?? 'default')}`;
15005
+ }
15006
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: TimelineComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
15007
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.16", type: TimelineComponent, isStandalone: true, selector: "ea-timeline", inputs: { items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null }, orientation: { classPropertyName: "orientation", publicName: "orientation", isSignal: true, isRequired: false, transformFunction: null }, align: { classPropertyName: "align", publicName: "align", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<ol\n class=\"ea-timeline\"\n role=\"list\"\n [ngClass]=\"hostClasses()\">\n @for (item of items(); track $index) {\n <li\n class=\"ea-timeline__item\"\n role=\"listitem\"\n [ngClass]=\"itemModifier(item)\"\n [attr.aria-current]=\"item.current ? 'true' : null\">\n <div\n class=\"ea-timeline__marker\"\n aria-hidden=\"true\">\n <span class=\"ea-timeline__node\"></span>\n <span class=\"ea-timeline__connector\"></span>\n </div>\n <div class=\"ea-timeline__content\">\n @if (item.heading) {\n <p class=\"ea-timeline__heading\">{{ item.heading }}</p>\n }\n @if (item.time) {\n <p class=\"ea-timeline__time\">{{ item.time }}</p>\n }\n @if (item.description) {\n <p class=\"ea-timeline__description\">{{ item.description }}</p>\n }\n </div>\n </li>\n }\n</ol>\n", styles: [".ea-timeline{margin:0;padding:0;list-style:none}.ea-timeline--xs{font-size:var(--font-size-xs)}.ea-timeline--sm{font-size:var(--font-size-sm)}.ea-timeline--md{font-size:var(--font-size-md)}.ea-timeline--lg{font-size:var(--font-size-lg)}.ea-timeline--xl{font-size:var(--font-size-xl)}.ea-timeline__marker{display:flex}.ea-timeline__node{flex-shrink:0;width:.875em;height:.875em;border-radius:var(--radius-full);background-color:var(--color-border-strong);transition:var(--transition-colors)}.ea-timeline__connector{background-color:var(--color-border-default)}.ea-timeline__content{display:flex;flex-direction:column;gap:.125em;min-width:0}.ea-timeline__heading{margin:0;font-weight:var(--font-weight-medium);line-height:var(--line-height-tight);color:var(--color-text-primary)}.ea-timeline__time{margin:0;font-size:.8125em;color:var(--color-text-tertiary)}.ea-timeline__description{margin:0;font-size:.875em;color:var(--color-text-secondary)}.ea-timeline__item--primary .ea-timeline__node{background-color:var(--color-brand-default)}.ea-timeline__item--secondary .ea-timeline__node{background-color:var(--color-brand-secondary-default)}.ea-timeline__item--success .ea-timeline__node{background-color:var(--color-success-default)}.ea-timeline__item--warning .ea-timeline__node{background-color:var(--color-warning-default)}.ea-timeline__item--error .ea-timeline__node{background-color:var(--color-error-default)}.ea-timeline__item--current .ea-timeline__node{box-shadow:0 0 0 .25em var(--color-brand-secondary-muted);background-color:var(--color-brand-secondary-default)}@media(forced-colors:active){.ea-timeline__item--current .ea-timeline__node{outline:var(--border-width-thin) solid CanvasText;outline-offset:.125em}}.ea-timeline--vertical .ea-timeline__item{display:grid;grid-template-columns:auto 1fr;column-gap:.875em}.ea-timeline--vertical .ea-timeline__marker{position:relative;flex-direction:column;align-items:center}.ea-timeline--vertical .ea-timeline__node{z-index:1;position:relative;margin-top:.15em}.ea-timeline--vertical .ea-timeline__connector{z-index:0;position:absolute;top:0;bottom:0;left:50%;width:.125em;transform:translate(-50%)}.ea-timeline--vertical .ea-timeline__item:first-child .ea-timeline__connector{top:.5875em}.ea-timeline--vertical .ea-timeline__item:last-child .ea-timeline__connector{top:0;bottom:auto;height:.5875em}.ea-timeline--vertical .ea-timeline__item:only-child .ea-timeline__connector{display:none}.ea-timeline--vertical .ea-timeline__content{padding-bottom:1.5em}.ea-timeline--vertical .ea-timeline__item:last-child .ea-timeline__content{padding-bottom:0}.ea-timeline--alternate .ea-timeline__item{grid-template-columns:1fr auto 1fr}.ea-timeline--alternate .ea-timeline__marker{grid-column:2;grid-row:1}.ea-timeline--alternate .ea-timeline__content{grid-row:1}.ea-timeline--alternate .ea-timeline__item:nth-child(odd) .ea-timeline__content{align-items:flex-end;grid-column:1;text-align:end}.ea-timeline--alternate .ea-timeline__item:nth-child(2n) .ea-timeline__content{grid-column:3}.ea-timeline--horizontal{display:flex;align-items:stretch}.ea-timeline--horizontal .ea-timeline__item{display:flex;flex:1 1 0;flex-direction:column;min-width:0}.ea-timeline--horizontal .ea-timeline__marker{flex-direction:row;align-items:center}.ea-timeline--horizontal .ea-timeline__connector{flex:1 0 auto;height:.125em;min-width:1.5em}.ea-timeline--horizontal .ea-timeline__content{padding-top:.75em;padding-inline-end:.875em}.ea-timeline--horizontal .ea-timeline__item:last-child .ea-timeline__connector{display:none}\n"], dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
15008
+ }
15009
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: TimelineComponent, decorators: [{
15010
+ type: Component,
15011
+ args: [{ selector: 'ea-timeline', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, imports: [NgClass], template: "<ol\n class=\"ea-timeline\"\n role=\"list\"\n [ngClass]=\"hostClasses()\">\n @for (item of items(); track $index) {\n <li\n class=\"ea-timeline__item\"\n role=\"listitem\"\n [ngClass]=\"itemModifier(item)\"\n [attr.aria-current]=\"item.current ? 'true' : null\">\n <div\n class=\"ea-timeline__marker\"\n aria-hidden=\"true\">\n <span class=\"ea-timeline__node\"></span>\n <span class=\"ea-timeline__connector\"></span>\n </div>\n <div class=\"ea-timeline__content\">\n @if (item.heading) {\n <p class=\"ea-timeline__heading\">{{ item.heading }}</p>\n }\n @if (item.time) {\n <p class=\"ea-timeline__time\">{{ item.time }}</p>\n }\n @if (item.description) {\n <p class=\"ea-timeline__description\">{{ item.description }}</p>\n }\n </div>\n </li>\n }\n</ol>\n", styles: [".ea-timeline{margin:0;padding:0;list-style:none}.ea-timeline--xs{font-size:var(--font-size-xs)}.ea-timeline--sm{font-size:var(--font-size-sm)}.ea-timeline--md{font-size:var(--font-size-md)}.ea-timeline--lg{font-size:var(--font-size-lg)}.ea-timeline--xl{font-size:var(--font-size-xl)}.ea-timeline__marker{display:flex}.ea-timeline__node{flex-shrink:0;width:.875em;height:.875em;border-radius:var(--radius-full);background-color:var(--color-border-strong);transition:var(--transition-colors)}.ea-timeline__connector{background-color:var(--color-border-default)}.ea-timeline__content{display:flex;flex-direction:column;gap:.125em;min-width:0}.ea-timeline__heading{margin:0;font-weight:var(--font-weight-medium);line-height:var(--line-height-tight);color:var(--color-text-primary)}.ea-timeline__time{margin:0;font-size:.8125em;color:var(--color-text-tertiary)}.ea-timeline__description{margin:0;font-size:.875em;color:var(--color-text-secondary)}.ea-timeline__item--primary .ea-timeline__node{background-color:var(--color-brand-default)}.ea-timeline__item--secondary .ea-timeline__node{background-color:var(--color-brand-secondary-default)}.ea-timeline__item--success .ea-timeline__node{background-color:var(--color-success-default)}.ea-timeline__item--warning .ea-timeline__node{background-color:var(--color-warning-default)}.ea-timeline__item--error .ea-timeline__node{background-color:var(--color-error-default)}.ea-timeline__item--current .ea-timeline__node{box-shadow:0 0 0 .25em var(--color-brand-secondary-muted);background-color:var(--color-brand-secondary-default)}@media(forced-colors:active){.ea-timeline__item--current .ea-timeline__node{outline:var(--border-width-thin) solid CanvasText;outline-offset:.125em}}.ea-timeline--vertical .ea-timeline__item{display:grid;grid-template-columns:auto 1fr;column-gap:.875em}.ea-timeline--vertical .ea-timeline__marker{position:relative;flex-direction:column;align-items:center}.ea-timeline--vertical .ea-timeline__node{z-index:1;position:relative;margin-top:.15em}.ea-timeline--vertical .ea-timeline__connector{z-index:0;position:absolute;top:0;bottom:0;left:50%;width:.125em;transform:translate(-50%)}.ea-timeline--vertical .ea-timeline__item:first-child .ea-timeline__connector{top:.5875em}.ea-timeline--vertical .ea-timeline__item:last-child .ea-timeline__connector{top:0;bottom:auto;height:.5875em}.ea-timeline--vertical .ea-timeline__item:only-child .ea-timeline__connector{display:none}.ea-timeline--vertical .ea-timeline__content{padding-bottom:1.5em}.ea-timeline--vertical .ea-timeline__item:last-child .ea-timeline__content{padding-bottom:0}.ea-timeline--alternate .ea-timeline__item{grid-template-columns:1fr auto 1fr}.ea-timeline--alternate .ea-timeline__marker{grid-column:2;grid-row:1}.ea-timeline--alternate .ea-timeline__content{grid-row:1}.ea-timeline--alternate .ea-timeline__item:nth-child(odd) .ea-timeline__content{align-items:flex-end;grid-column:1;text-align:end}.ea-timeline--alternate .ea-timeline__item:nth-child(2n) .ea-timeline__content{grid-column:3}.ea-timeline--horizontal{display:flex;align-items:stretch}.ea-timeline--horizontal .ea-timeline__item{display:flex;flex:1 1 0;flex-direction:column;min-width:0}.ea-timeline--horizontal .ea-timeline__marker{flex-direction:row;align-items:center}.ea-timeline--horizontal .ea-timeline__connector{flex:1 0 auto;height:.125em;min-width:1.5em}.ea-timeline--horizontal .ea-timeline__content{padding-top:.75em;padding-inline-end:.875em}.ea-timeline--horizontal .ea-timeline__item:last-child .ea-timeline__connector{display:none}\n"] }]
15012
+ }], propDecorators: { items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: false }] }], orientation: [{ type: i0.Input, args: [{ isSignal: true, alias: "orientation", required: false }] }], align: [{ type: i0.Input, args: [{ isSignal: true, alias: "align", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }] } });
15013
+
14982
15014
  class AlertTriangleIconComponent extends IconComponentBase {
14983
15015
  static slug = 'alert-triangle';
14984
15016
  static category = 'feather';
@@ -16063,6 +16095,7 @@ const DISPLAY_NAME_OVERRIDES = {
16063
16095
  linkedin: 'LinkedIn',
16064
16096
  'linkedin-2': 'LinkedIn 2',
16065
16097
  mongodb: 'MongoDB',
16098
+ nodejs: 'Node.js',
16066
16099
  npm: 'npm',
16067
16100
  paypal: 'PayPal',
16068
16101
  'qr-code': 'QR Code',
@@ -16070,7 +16103,9 @@ const DISPLAY_NAME_OVERRIDES = {
16070
16103
  tailwind: 'Tailwind CSS',
16071
16104
  tiktok: 'TikTok',
16072
16105
  tv: 'TV',
16106
+ vue: 'Vue.js',
16073
16107
  whatsapp: 'WhatsApp',
16108
+ wordpress: 'WordPress',
16074
16109
  'x-twitter': 'X (Twitter)',
16075
16110
  youtube: 'YouTube',
16076
16111
  'youtube-2': 'YouTube 2',
@@ -16728,6 +16763,96 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
16728
16763
  }]
16729
16764
  }] });
16730
16765
 
16766
+ class AndroidIconComponent extends IconComponentBase {
16767
+ static slug = 'android';
16768
+ static category = 'eagami';
16769
+ static isBrand = true;
16770
+ static tags = [
16771
+ 'android',
16772
+ 'mobile',
16773
+ 'os',
16774
+ 'google',
16775
+ 'phone',
16776
+ ];
16777
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
16778
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: AndroidIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
16779
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: AndroidIconComponent, isStandalone: true, selector: "ea-icon-android", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#3DDC84' : null" } }, usesInheritance: true, ngImport: i0, template: `
16780
+ <svg
16781
+ viewBox="0 0 24 24"
16782
+ fill="currentColor"
16783
+ aria-hidden="true"
16784
+ width="100%"
16785
+ height="100%">
16786
+ <path
16787
+ d="M18.4395 5.5586c-.675 1.1664-1.352 2.3318-2.0274 3.498-.0366-.0155-.0742-.0286-.1113-.043-1.8249-.6957-3.484-.8-4.42-.787-1.8551.0185-3.3544.4643-4.2597.8203-.084-.1494-1.7526-3.021-2.0215-3.4864a1.1451 1.1451 0 0 0-.1406-.1914c-.3312-.364-.9054-.4859-1.379-.203-.475.282-.7136.9361-.3886 1.5019 1.9466 3.3696-.0966-.2158 1.9473 3.3593.0172.031-.4946.2642-1.3926 1.0177C2.8987 12.176.452 14.772 0 18.9902h24c-.119-1.1108-.3686-2.099-.7461-3.0683-.7438-1.9118-1.8435-3.2928-2.7402-4.1836a12.1048 12.1048 0 0 0-2.1309-1.6875c.6594-1.122 1.312-2.2559 1.9649-3.3848.2077-.3615.1886-.7956-.0079-1.1191a1.1001 1.1001 0 0 0-.8515-.5332c-.5225-.0536-.9392.3128-1.0488.5449zm-.0391 8.461c.3944.5926.324 1.3306-.1563 1.6503-.4799.3197-1.188.0985-1.582-.4941-.3944-.5927-.324-1.3307.1563-1.6504.4727-.315 1.1812-.1086 1.582.4941zM7.207 13.5273c.4803.3197.5506 1.0577.1563 1.6504-.394.5926-1.1038.8138-1.584.4941-.48-.3197-.5503-1.0577-.1563-1.6504.4008-.6021 1.1087-.8106 1.584-.4941z" />
16788
+ </svg>
16789
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
16790
+ }
16791
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: AndroidIconComponent, decorators: [{
16792
+ type: Component,
16793
+ args: [{
16794
+ selector: 'ea-icon-android',
16795
+ changeDetection: ChangeDetectionStrategy.OnPush,
16796
+ host: { '[style.color]': "brand() ? '#3DDC84' : null" },
16797
+ template: `
16798
+ <svg
16799
+ viewBox="0 0 24 24"
16800
+ fill="currentColor"
16801
+ aria-hidden="true"
16802
+ width="100%"
16803
+ height="100%">
16804
+ <path
16805
+ d="M18.4395 5.5586c-.675 1.1664-1.352 2.3318-2.0274 3.498-.0366-.0155-.0742-.0286-.1113-.043-1.8249-.6957-3.484-.8-4.42-.787-1.8551.0185-3.3544.4643-4.2597.8203-.084-.1494-1.7526-3.021-2.0215-3.4864a1.1451 1.1451 0 0 0-.1406-.1914c-.3312-.364-.9054-.4859-1.379-.203-.475.282-.7136.9361-.3886 1.5019 1.9466 3.3696-.0966-.2158 1.9473 3.3593.0172.031-.4946.2642-1.3926 1.0177C2.8987 12.176.452 14.772 0 18.9902h24c-.119-1.1108-.3686-2.099-.7461-3.0683-.7438-1.9118-1.8435-3.2928-2.7402-4.1836a12.1048 12.1048 0 0 0-2.1309-1.6875c.6594-1.122 1.312-2.2559 1.9649-3.3848.2077-.3615.1886-.7956-.0079-1.1191a1.1001 1.1001 0 0 0-.8515-.5332c-.5225-.0536-.9392.3128-1.0488.5449zm-.0391 8.461c.3944.5926.324 1.3306-.1563 1.6503-.4799.3197-1.188.0985-1.582-.4941-.3944-.5927-.324-1.3307.1563-1.6504.4727-.315 1.1812-.1086 1.582.4941zM7.207 13.5273c.4803.3197.5506 1.0577.1563 1.6504-.394.5926-1.1038.8138-1.584.4941-.48-.3197-.5503-1.0577-.1563-1.6504.4008-.6021 1.1087-.8106 1.584-.4941z" />
16806
+ </svg>
16807
+ `,
16808
+ }]
16809
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
16810
+
16811
+ class AngularIconComponent extends IconComponentBase {
16812
+ static slug = 'angular';
16813
+ static category = 'eagami';
16814
+ static isBrand = true;
16815
+ static tags = [
16816
+ 'angular',
16817
+ 'framework',
16818
+ 'typescript',
16819
+ 'frontend',
16820
+ 'web',
16821
+ ];
16822
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
16823
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: AngularIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
16824
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: AngularIconComponent, isStandalone: true, selector: "ea-icon-angular", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#0F0F11' : null" } }, usesInheritance: true, ngImport: i0, template: `
16825
+ <svg
16826
+ viewBox="0 0 24 24"
16827
+ fill="currentColor"
16828
+ aria-hidden="true"
16829
+ width="100%"
16830
+ height="100%">
16831
+ <path
16832
+ d="M16.712 17.711H7.288l-1.204 2.916L12 24l5.916-3.373-1.204-2.916ZM14.692 0l7.832 16.855.814-12.856L14.692 0ZM9.308 0 .662 3.999l.814 12.856L9.308 0Zm-.405 13.93h6.198L12 6.396 8.903 13.93Z" />
16833
+ </svg>
16834
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
16835
+ }
16836
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: AngularIconComponent, decorators: [{
16837
+ type: Component,
16838
+ args: [{
16839
+ selector: 'ea-icon-angular',
16840
+ changeDetection: ChangeDetectionStrategy.OnPush,
16841
+ host: { '[style.color]': "brand() ? '#0F0F11' : null" },
16842
+ template: `
16843
+ <svg
16844
+ viewBox="0 0 24 24"
16845
+ fill="currentColor"
16846
+ aria-hidden="true"
16847
+ width="100%"
16848
+ height="100%">
16849
+ <path
16850
+ d="M16.712 17.711H7.288l-1.204 2.916L12 24l5.916-3.373-1.204-2.916ZM14.692 0l7.832 16.855.814-12.856L14.692 0ZM9.308 0 .662 3.999l.814 12.856L9.308 0Zm-.405 13.93h6.198L12 6.396 8.903 13.93Z" />
16851
+ </svg>
16852
+ `,
16853
+ }]
16854
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
16855
+
16731
16856
  class AnthropicIconComponent extends IconComponentBase {
16732
16857
  static slug = 'anthropic';
16733
16858
  static category = 'eagami';
@@ -18173,6 +18298,66 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
18173
18298
  }]
18174
18299
  }] });
18175
18300
 
18301
+ class BellRingIconComponent extends IconComponentBase {
18302
+ static slug = 'bell-ring';
18303
+ static category = 'eagami';
18304
+ static tags = [
18305
+ 'bell-ring',
18306
+ 'bell',
18307
+ 'notification',
18308
+ 'alert',
18309
+ 'alarm',
18310
+ 'cloche',
18311
+ 'campana',
18312
+ 'καμπάνα',
18313
+ 'dzwonek',
18314
+ ];
18315
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BellRingIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
18316
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: BellRingIconComponent, isStandalone: true, selector: "ea-icon-bell-ring", usesInheritance: true, ngImport: i0, template: `
18317
+ <svg
18318
+ viewBox="0 0 24 24"
18319
+ fill="none"
18320
+ stroke="currentColor"
18321
+ [attr.stroke-width]="strokeWidth()"
18322
+ stroke-linecap="round"
18323
+ stroke-linejoin="round"
18324
+ aria-hidden="true"
18325
+ width="100%"
18326
+ height="100%">
18327
+ <path d="M10.268 21a2 2 0 0 0 3.464 0" />
18328
+ <path d="M22 8c0-2.3-.8-4.3-2-6" />
18329
+ <path
18330
+ d="M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326" />
18331
+ <path d="M4 2C2.8 3.7 2 5.7 2 8" />
18332
+ </svg>
18333
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
18334
+ }
18335
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BellRingIconComponent, decorators: [{
18336
+ type: Component,
18337
+ args: [{
18338
+ selector: 'ea-icon-bell-ring',
18339
+ changeDetection: ChangeDetectionStrategy.OnPush,
18340
+ template: `
18341
+ <svg
18342
+ viewBox="0 0 24 24"
18343
+ fill="none"
18344
+ stroke="currentColor"
18345
+ [attr.stroke-width]="strokeWidth()"
18346
+ stroke-linecap="round"
18347
+ stroke-linejoin="round"
18348
+ aria-hidden="true"
18349
+ width="100%"
18350
+ height="100%">
18351
+ <path d="M10.268 21a2 2 0 0 0 3.464 0" />
18352
+ <path d="M22 8c0-2.3-.8-4.3-2-6" />
18353
+ <path
18354
+ d="M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326" />
18355
+ <path d="M4 2C2.8 3.7 2 5.7 2 8" />
18356
+ </svg>
18357
+ `,
18358
+ }]
18359
+ }] });
18360
+
18176
18361
  class BellIconComponent extends IconComponentBase {
18177
18362
  static slug = 'bell';
18178
18363
  static category = 'feather';
@@ -18283,6 +18468,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
18283
18468
  }]
18284
18469
  }] });
18285
18470
 
18471
+ class BlueskyIconComponent extends IconComponentBase {
18472
+ static slug = 'bluesky';
18473
+ static category = 'eagami';
18474
+ static isBrand = true;
18475
+ static tags = [
18476
+ 'bluesky',
18477
+ 'social',
18478
+ 'network',
18479
+ 'atproto',
18480
+ 'feed',
18481
+ ];
18482
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
18483
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BlueskyIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
18484
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: BlueskyIconComponent, isStandalone: true, selector: "ea-icon-bluesky", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#1185FE' : null" } }, usesInheritance: true, ngImport: i0, template: `
18485
+ <svg
18486
+ viewBox="0 0 24 24"
18487
+ fill="currentColor"
18488
+ aria-hidden="true"
18489
+ width="100%"
18490
+ height="100%">
18491
+ <path
18492
+ d="M5.202 2.857C7.954 4.922 10.913 9.11 12 11.358c1.087-2.247 4.046-6.436 6.798-8.501C20.783 1.366 24 .213 24 3.883c0 .732-.42 6.156-.667 7.037-.856 3.061-3.978 3.842-6.755 3.37 4.854.826 6.089 3.562 3.422 6.299-5.065 5.196-7.28-1.304-7.847-2.97-.104-.305-.152-.448-.153-.327 0-.121-.05.022-.153.327-.568 1.666-2.782 8.166-7.847 2.97-2.667-2.737-1.432-5.473 3.422-6.3-2.777.473-5.899-.308-6.755-3.369C.42 10.04 0 4.615 0 3.883c0-3.67 3.217-2.517 5.202-1.026" />
18493
+ </svg>
18494
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
18495
+ }
18496
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BlueskyIconComponent, decorators: [{
18497
+ type: Component,
18498
+ args: [{
18499
+ selector: 'ea-icon-bluesky',
18500
+ changeDetection: ChangeDetectionStrategy.OnPush,
18501
+ host: { '[style.color]': "brand() ? '#1185FE' : null" },
18502
+ template: `
18503
+ <svg
18504
+ viewBox="0 0 24 24"
18505
+ fill="currentColor"
18506
+ aria-hidden="true"
18507
+ width="100%"
18508
+ height="100%">
18509
+ <path
18510
+ d="M5.202 2.857C7.954 4.922 10.913 9.11 12 11.358c1.087-2.247 4.046-6.436 6.798-8.501C20.783 1.366 24 .213 24 3.883c0 .732-.42 6.156-.667 7.037-.856 3.061-3.978 3.842-6.755 3.37 4.854.826 6.089 3.562 3.422 6.299-5.065 5.196-7.28-1.304-7.847-2.97-.104-.305-.152-.448-.153-.327 0-.121-.05.022-.153.327-.568 1.666-2.782 8.166-7.847 2.97-2.667-2.737-1.432-5.473 3.422-6.3-2.777.473-5.899-.308-6.755-3.369C.42 10.04 0 4.615 0 3.883c0-3.67 3.217-2.517 5.202-1.026" />
18511
+ </svg>
18512
+ `,
18513
+ }]
18514
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
18515
+
18286
18516
  class BluetoothIconComponent extends IconComponentBase {
18287
18517
  static slug = 'bluetooth';
18288
18518
  static category = 'feather';
@@ -18562,6 +18792,64 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
18562
18792
  }]
18563
18793
  }] });
18564
18794
 
18795
+ class BookmarkPlusIconComponent extends IconComponentBase {
18796
+ static slug = 'bookmark-plus';
18797
+ static category = 'eagami';
18798
+ static tags = [
18799
+ 'bookmark-plus',
18800
+ 'bookmark',
18801
+ 'save',
18802
+ 'add',
18803
+ 'favorite',
18804
+ 'signet',
18805
+ 'marcador',
18806
+ 'σελιδοδείκτης',
18807
+ 'zakładka',
18808
+ ];
18809
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BookmarkPlusIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
18810
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: BookmarkPlusIconComponent, isStandalone: true, selector: "ea-icon-bookmark-plus", usesInheritance: true, ngImport: i0, template: `
18811
+ <svg
18812
+ viewBox="0 0 24 24"
18813
+ fill="none"
18814
+ stroke="currentColor"
18815
+ [attr.stroke-width]="strokeWidth()"
18816
+ stroke-linecap="round"
18817
+ stroke-linejoin="round"
18818
+ aria-hidden="true"
18819
+ width="100%"
18820
+ height="100%">
18821
+ <path d="M12 7v6" />
18822
+ <path d="M15 10H9" />
18823
+ <path
18824
+ 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" />
18825
+ </svg>
18826
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
18827
+ }
18828
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: BookmarkPlusIconComponent, decorators: [{
18829
+ type: Component,
18830
+ args: [{
18831
+ selector: 'ea-icon-bookmark-plus',
18832
+ changeDetection: ChangeDetectionStrategy.OnPush,
18833
+ template: `
18834
+ <svg
18835
+ viewBox="0 0 24 24"
18836
+ fill="none"
18837
+ stroke="currentColor"
18838
+ [attr.stroke-width]="strokeWidth()"
18839
+ stroke-linecap="round"
18840
+ stroke-linejoin="round"
18841
+ aria-hidden="true"
18842
+ width="100%"
18843
+ height="100%">
18844
+ <path d="M12 7v6" />
18845
+ <path d="M15 10H9" />
18846
+ <path
18847
+ 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" />
18848
+ </svg>
18849
+ `,
18850
+ }]
18851
+ }] });
18852
+
18565
18853
  class BookmarkIconComponent extends IconComponentBase {
18566
18854
  static slug = 'bookmark';
18567
18855
  static category = 'feather';
@@ -19029,6 +19317,86 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
19029
19317
  }]
19030
19318
  }] });
19031
19319
 
19320
+ class CalendarDaysIconComponent extends IconComponentBase {
19321
+ static slug = 'calendar-days';
19322
+ static category = 'eagami';
19323
+ static tags = [
19324
+ 'calendar-days',
19325
+ 'calendar',
19326
+ 'date',
19327
+ 'schedule',
19328
+ 'month',
19329
+ 'calendrier',
19330
+ 'calendario',
19331
+ 'ημερολόγιο',
19332
+ 'kalendarz',
19333
+ ];
19334
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: CalendarDaysIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
19335
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: CalendarDaysIconComponent, isStandalone: true, selector: "ea-icon-calendar-days", usesInheritance: true, ngImport: i0, template: `
19336
+ <svg
19337
+ viewBox="0 0 24 24"
19338
+ fill="none"
19339
+ stroke="currentColor"
19340
+ [attr.stroke-width]="strokeWidth()"
19341
+ stroke-linecap="round"
19342
+ stroke-linejoin="round"
19343
+ aria-hidden="true"
19344
+ width="100%"
19345
+ height="100%">
19346
+ <path d="M8 2v4" />
19347
+ <path d="M16 2v4" />
19348
+ <rect
19349
+ width="18"
19350
+ height="18"
19351
+ x="3"
19352
+ y="4"
19353
+ rx="2" />
19354
+ <path d="M3 10h18" />
19355
+ <path d="M8 14h.01" />
19356
+ <path d="M12 14h.01" />
19357
+ <path d="M16 14h.01" />
19358
+ <path d="M8 18h.01" />
19359
+ <path d="M12 18h.01" />
19360
+ <path d="M16 18h.01" />
19361
+ </svg>
19362
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
19363
+ }
19364
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: CalendarDaysIconComponent, decorators: [{
19365
+ type: Component,
19366
+ args: [{
19367
+ selector: 'ea-icon-calendar-days',
19368
+ changeDetection: ChangeDetectionStrategy.OnPush,
19369
+ template: `
19370
+ <svg
19371
+ viewBox="0 0 24 24"
19372
+ fill="none"
19373
+ stroke="currentColor"
19374
+ [attr.stroke-width]="strokeWidth()"
19375
+ stroke-linecap="round"
19376
+ stroke-linejoin="round"
19377
+ aria-hidden="true"
19378
+ width="100%"
19379
+ height="100%">
19380
+ <path d="M8 2v4" />
19381
+ <path d="M16 2v4" />
19382
+ <rect
19383
+ width="18"
19384
+ height="18"
19385
+ x="3"
19386
+ y="4"
19387
+ rx="2" />
19388
+ <path d="M3 10h18" />
19389
+ <path d="M8 14h.01" />
19390
+ <path d="M12 14h.01" />
19391
+ <path d="M16 14h.01" />
19392
+ <path d="M8 18h.01" />
19393
+ <path d="M12 18h.01" />
19394
+ <path d="M16 18h.01" />
19395
+ </svg>
19396
+ `,
19397
+ }]
19398
+ }] });
19399
+
19032
19400
  class CameraOffIconComponent extends IconComponentBase {
19033
19401
  static slug = 'camera-off';
19034
19402
  static category = 'feather';
@@ -19619,6 +19987,82 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
19619
19987
  }]
19620
19988
  }] });
19621
19989
 
19990
+ class ClipboardListIconComponent extends IconComponentBase {
19991
+ static slug = 'clipboard-list';
19992
+ static category = 'eagami';
19993
+ static tags = [
19994
+ 'clipboard-list',
19995
+ 'clipboard',
19996
+ 'list',
19997
+ 'tasks',
19998
+ 'notes',
19999
+ 'presse-papiers',
20000
+ 'portapapeles',
20001
+ 'πρόχειρο',
20002
+ 'schowek',
20003
+ ];
20004
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ClipboardListIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
20005
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: ClipboardListIconComponent, isStandalone: true, selector: "ea-icon-clipboard-list", usesInheritance: true, ngImport: i0, template: `
20006
+ <svg
20007
+ viewBox="0 0 24 24"
20008
+ fill="none"
20009
+ stroke="currentColor"
20010
+ [attr.stroke-width]="strokeWidth()"
20011
+ stroke-linecap="round"
20012
+ stroke-linejoin="round"
20013
+ aria-hidden="true"
20014
+ width="100%"
20015
+ height="100%">
20016
+ <rect
20017
+ width="8"
20018
+ height="4"
20019
+ x="8"
20020
+ y="2"
20021
+ rx="1"
20022
+ ry="1" />
20023
+ <path
20024
+ 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" />
20025
+ <path d="M12 11h4" />
20026
+ <path d="M12 16h4" />
20027
+ <path d="M8 11h.01" />
20028
+ <path d="M8 16h.01" />
20029
+ </svg>
20030
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
20031
+ }
20032
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ClipboardListIconComponent, decorators: [{
20033
+ type: Component,
20034
+ args: [{
20035
+ selector: 'ea-icon-clipboard-list',
20036
+ changeDetection: ChangeDetectionStrategy.OnPush,
20037
+ template: `
20038
+ <svg
20039
+ viewBox="0 0 24 24"
20040
+ fill="none"
20041
+ stroke="currentColor"
20042
+ [attr.stroke-width]="strokeWidth()"
20043
+ stroke-linecap="round"
20044
+ stroke-linejoin="round"
20045
+ aria-hidden="true"
20046
+ width="100%"
20047
+ height="100%">
20048
+ <rect
20049
+ width="8"
20050
+ height="4"
20051
+ x="8"
20052
+ y="2"
20053
+ rx="1"
20054
+ ry="1" />
20055
+ <path
20056
+ 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" />
20057
+ <path d="M12 11h4" />
20058
+ <path d="M12 16h4" />
20059
+ <path d="M8 11h.01" />
20060
+ <path d="M8 16h.01" />
20061
+ </svg>
20062
+ `,
20063
+ }]
20064
+ }] });
20065
+
19622
20066
  class ClipboardIconComponent extends IconComponentBase {
19623
20067
  static slug = 'clipboard';
19624
20068
  static category = 'feather';
@@ -23221,6 +23665,64 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
23221
23665
  }]
23222
23666
  }] });
23223
23667
 
23668
+ class FileCheckIconComponent extends IconComponentBase {
23669
+ static slug = 'file-check';
23670
+ static category = 'eagami';
23671
+ static tags = [
23672
+ 'file-check',
23673
+ 'file',
23674
+ 'document',
23675
+ 'verified',
23676
+ 'approved',
23677
+ 'fichier',
23678
+ 'archivo',
23679
+ 'αρχείο',
23680
+ 'plik',
23681
+ ];
23682
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FileCheckIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
23683
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: FileCheckIconComponent, isStandalone: true, selector: "ea-icon-file-check", usesInheritance: true, ngImport: i0, template: `
23684
+ <svg
23685
+ viewBox="0 0 24 24"
23686
+ fill="none"
23687
+ stroke="currentColor"
23688
+ [attr.stroke-width]="strokeWidth()"
23689
+ stroke-linecap="round"
23690
+ stroke-linejoin="round"
23691
+ aria-hidden="true"
23692
+ width="100%"
23693
+ height="100%">
23694
+ <path
23695
+ d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
23696
+ <path d="M14 2v5a1 1 0 0 0 1 1h5" />
23697
+ <path d="m9 15 2 2 4-4" />
23698
+ </svg>
23699
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
23700
+ }
23701
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FileCheckIconComponent, decorators: [{
23702
+ type: Component,
23703
+ args: [{
23704
+ selector: 'ea-icon-file-check',
23705
+ changeDetection: ChangeDetectionStrategy.OnPush,
23706
+ template: `
23707
+ <svg
23708
+ viewBox="0 0 24 24"
23709
+ fill="none"
23710
+ stroke="currentColor"
23711
+ [attr.stroke-width]="strokeWidth()"
23712
+ stroke-linecap="round"
23713
+ stroke-linejoin="round"
23714
+ aria-hidden="true"
23715
+ width="100%"
23716
+ height="100%">
23717
+ <path
23718
+ d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
23719
+ <path d="M14 2v5a1 1 0 0 0 1 1h5" />
23720
+ <path d="m9 15 2 2 4-4" />
23721
+ </svg>
23722
+ `,
23723
+ }]
23724
+ }] });
23725
+
23224
23726
  class FileMinusIconComponent extends IconComponentBase {
23225
23727
  static slug = 'file-minus';
23226
23728
  static category = 'feather';
@@ -23667,26 +24169,89 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
23667
24169
  }]
23668
24170
  }] });
23669
24171
 
23670
- class FolderMinusIconComponent extends IconComponentBase {
23671
- static slug = 'folder-minus';
23672
- static category = 'feather';
24172
+ class FolderMinusIconComponent extends IconComponentBase {
24173
+ static slug = 'folder-minus';
24174
+ static category = 'feather';
24175
+ static tags = [
24176
+ 'folder-minus',
24177
+ 'folder',
24178
+ 'minus',
24179
+ 'remove',
24180
+ 'delete',
24181
+ 'directory',
24182
+ 'dossier',
24183
+ 'supprimer',
24184
+ 'carpeta',
24185
+ 'eliminar',
24186
+ 'φάκελος',
24187
+ 'αφαίρεση',
24188
+ 'usuń',
24189
+ ];
24190
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FolderMinusIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
24191
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: FolderMinusIconComponent, isStandalone: true, selector: "ea-icon-folder-minus", usesInheritance: true, ngImport: i0, template: `
24192
+ <svg
24193
+ viewBox="0 0 24 24"
24194
+ fill="none"
24195
+ stroke="currentColor"
24196
+ [attr.stroke-width]="strokeWidth()"
24197
+ stroke-linecap="round"
24198
+ stroke-linejoin="round"
24199
+ aria-hidden="true"
24200
+ width="100%"
24201
+ height="100%">
24202
+ <path
24203
+ d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" />
24204
+ <line
24205
+ x1="9"
24206
+ y1="14"
24207
+ x2="15"
24208
+ y2="14" />
24209
+ </svg>
24210
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
24211
+ }
24212
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FolderMinusIconComponent, decorators: [{
24213
+ type: Component,
24214
+ args: [{
24215
+ selector: 'ea-icon-folder-minus',
24216
+ changeDetection: ChangeDetectionStrategy.OnPush,
24217
+ template: `
24218
+ <svg
24219
+ viewBox="0 0 24 24"
24220
+ fill="none"
24221
+ stroke="currentColor"
24222
+ [attr.stroke-width]="strokeWidth()"
24223
+ stroke-linecap="round"
24224
+ stroke-linejoin="round"
24225
+ aria-hidden="true"
24226
+ width="100%"
24227
+ height="100%">
24228
+ <path
24229
+ d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" />
24230
+ <line
24231
+ x1="9"
24232
+ y1="14"
24233
+ x2="15"
24234
+ y2="14" />
24235
+ </svg>
24236
+ `,
24237
+ }]
24238
+ }] });
24239
+
24240
+ class FolderOpenIconComponent extends IconComponentBase {
24241
+ static slug = 'folder-open';
24242
+ static category = 'eagami';
23673
24243
  static tags = [
23674
- 'folder-minus',
24244
+ 'folder-open',
23675
24245
  'folder',
23676
- 'minus',
23677
- 'remove',
23678
- 'delete',
23679
24246
  'directory',
24247
+ 'open',
23680
24248
  'dossier',
23681
- 'supprimer',
23682
24249
  'carpeta',
23683
- 'eliminar',
23684
24250
  'φάκελος',
23685
- 'αφαίρεση',
23686
- 'usuń',
24251
+ 'katalog',
23687
24252
  ];
23688
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FolderMinusIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
23689
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: FolderMinusIconComponent, isStandalone: true, selector: "ea-icon-folder-minus", usesInheritance: true, ngImport: i0, template: `
24253
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FolderOpenIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
24254
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: FolderOpenIconComponent, isStandalone: true, selector: "ea-icon-folder-open", usesInheritance: true, ngImport: i0, template: `
23690
24255
  <svg
23691
24256
  viewBox="0 0 24 24"
23692
24257
  fill="none"
@@ -23698,19 +24263,14 @@ class FolderMinusIconComponent extends IconComponentBase {
23698
24263
  width="100%"
23699
24264
  height="100%">
23700
24265
  <path
23701
- d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" />
23702
- <line
23703
- x1="9"
23704
- y1="14"
23705
- x2="15"
23706
- y2="14" />
24266
+ d="m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" />
23707
24267
  </svg>
23708
24268
  `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
23709
24269
  }
23710
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FolderMinusIconComponent, decorators: [{
24270
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FolderOpenIconComponent, decorators: [{
23711
24271
  type: Component,
23712
24272
  args: [{
23713
- selector: 'ea-icon-folder-minus',
24273
+ selector: 'ea-icon-folder-open',
23714
24274
  changeDetection: ChangeDetectionStrategy.OnPush,
23715
24275
  template: `
23716
24276
  <svg
@@ -23724,12 +24284,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
23724
24284
  width="100%"
23725
24285
  height="100%">
23726
24286
  <path
23727
- d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" />
23728
- <line
23729
- x1="9"
23730
- y1="14"
23731
- x2="15"
23732
- y2="14" />
24287
+ d="m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" />
23733
24288
  </svg>
23734
24289
  `,
23735
24290
  }]
@@ -24336,6 +24891,76 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
24336
24891
  }]
24337
24892
  }] });
24338
24893
 
24894
+ class GitCompareIconComponent extends IconComponentBase {
24895
+ static slug = 'git-compare';
24896
+ static category = 'eagami';
24897
+ static tags = [
24898
+ 'git-compare',
24899
+ 'git',
24900
+ 'compare',
24901
+ 'diff',
24902
+ 'branch',
24903
+ 'comparer',
24904
+ 'comparar',
24905
+ 'σύγκριση',
24906
+ 'porównaj',
24907
+ ];
24908
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: GitCompareIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
24909
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: GitCompareIconComponent, isStandalone: true, selector: "ea-icon-git-compare", usesInheritance: true, ngImport: i0, template: `
24910
+ <svg
24911
+ viewBox="0 0 24 24"
24912
+ fill="none"
24913
+ stroke="currentColor"
24914
+ [attr.stroke-width]="strokeWidth()"
24915
+ stroke-linecap="round"
24916
+ stroke-linejoin="round"
24917
+ aria-hidden="true"
24918
+ width="100%"
24919
+ height="100%">
24920
+ <circle
24921
+ cx="18"
24922
+ cy="18"
24923
+ r="3" />
24924
+ <circle
24925
+ cx="6"
24926
+ cy="6"
24927
+ r="3" />
24928
+ <path d="M13 6h3a2 2 0 0 1 2 2v7" />
24929
+ <path d="M11 18H8a2 2 0 0 1-2-2V9" />
24930
+ </svg>
24931
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
24932
+ }
24933
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: GitCompareIconComponent, decorators: [{
24934
+ type: Component,
24935
+ args: [{
24936
+ selector: 'ea-icon-git-compare',
24937
+ changeDetection: ChangeDetectionStrategy.OnPush,
24938
+ template: `
24939
+ <svg
24940
+ viewBox="0 0 24 24"
24941
+ fill="none"
24942
+ stroke="currentColor"
24943
+ [attr.stroke-width]="strokeWidth()"
24944
+ stroke-linecap="round"
24945
+ stroke-linejoin="round"
24946
+ aria-hidden="true"
24947
+ width="100%"
24948
+ height="100%">
24949
+ <circle
24950
+ cx="18"
24951
+ cy="18"
24952
+ r="3" />
24953
+ <circle
24954
+ cx="6"
24955
+ cy="6"
24956
+ r="3" />
24957
+ <path d="M13 6h3a2 2 0 0 1 2 2v7" />
24958
+ <path d="M11 18H8a2 2 0 0 1-2-2V9" />
24959
+ </svg>
24960
+ `,
24961
+ }]
24962
+ }] });
24963
+
24339
24964
  class GitMergeIconComponent extends IconComponentBase {
24340
24965
  static slug = 'git-merge';
24341
24966
  static category = 'feather';
@@ -25811,6 +26436,84 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
25811
26436
  }]
25812
26437
  }] });
25813
26438
 
26439
+ class KeyboardIconComponent extends IconComponentBase {
26440
+ static slug = 'keyboard';
26441
+ static category = 'eagami';
26442
+ static tags = [
26443
+ 'keyboard',
26444
+ 'type',
26445
+ 'typing',
26446
+ 'input',
26447
+ 'keys',
26448
+ 'clavier',
26449
+ 'teclado',
26450
+ 'πληκτρολόγιο',
26451
+ 'klawiatura',
26452
+ ];
26453
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: KeyboardIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
26454
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: KeyboardIconComponent, isStandalone: true, selector: "ea-icon-keyboard", usesInheritance: true, ngImport: i0, template: `
26455
+ <svg
26456
+ viewBox="0 0 24 24"
26457
+ fill="none"
26458
+ stroke="currentColor"
26459
+ [attr.stroke-width]="strokeWidth()"
26460
+ stroke-linecap="round"
26461
+ stroke-linejoin="round"
26462
+ aria-hidden="true"
26463
+ width="100%"
26464
+ height="100%">
26465
+ <path d="M10 8h.01" />
26466
+ <path d="M12 12h.01" />
26467
+ <path d="M14 8h.01" />
26468
+ <path d="M16 12h.01" />
26469
+ <path d="M18 8h.01" />
26470
+ <path d="M6 8h.01" />
26471
+ <path d="M7 16h10" />
26472
+ <path d="M8 12h.01" />
26473
+ <rect
26474
+ width="20"
26475
+ height="16"
26476
+ x="2"
26477
+ y="4"
26478
+ rx="2" />
26479
+ </svg>
26480
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
26481
+ }
26482
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: KeyboardIconComponent, decorators: [{
26483
+ type: Component,
26484
+ args: [{
26485
+ selector: 'ea-icon-keyboard',
26486
+ changeDetection: ChangeDetectionStrategy.OnPush,
26487
+ template: `
26488
+ <svg
26489
+ viewBox="0 0 24 24"
26490
+ fill="none"
26491
+ stroke="currentColor"
26492
+ [attr.stroke-width]="strokeWidth()"
26493
+ stroke-linecap="round"
26494
+ stroke-linejoin="round"
26495
+ aria-hidden="true"
26496
+ width="100%"
26497
+ height="100%">
26498
+ <path d="M10 8h.01" />
26499
+ <path d="M12 12h.01" />
26500
+ <path d="M14 8h.01" />
26501
+ <path d="M16 12h.01" />
26502
+ <path d="M18 8h.01" />
26503
+ <path d="M6 8h.01" />
26504
+ <path d="M7 16h10" />
26505
+ <path d="M8 12h.01" />
26506
+ <rect
26507
+ width="20"
26508
+ height="16"
26509
+ x="2"
26510
+ y="4"
26511
+ rx="2" />
26512
+ </svg>
26513
+ `,
26514
+ }]
26515
+ }] });
26516
+
25814
26517
  class KubernetesIconComponent extends IconComponentBase {
25815
26518
  static slug = 'kubernetes';
25816
26519
  static category = 'eagami';
@@ -25931,6 +26634,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
25931
26634
  }]
25932
26635
  }] });
25933
26636
 
26637
+ class LanguagesIconComponent extends IconComponentBase {
26638
+ static slug = 'languages';
26639
+ static category = 'eagami';
26640
+ static tags = [
26641
+ 'languages',
26642
+ 'language',
26643
+ 'translate',
26644
+ 'translation',
26645
+ 'locale',
26646
+ 'langues',
26647
+ 'idiomas',
26648
+ 'γλώσσες',
26649
+ 'języki',
26650
+ ];
26651
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: LanguagesIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
26652
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: LanguagesIconComponent, isStandalone: true, selector: "ea-icon-languages", usesInheritance: true, ngImport: i0, template: `
26653
+ <svg
26654
+ viewBox="0 0 24 24"
26655
+ fill="none"
26656
+ stroke="currentColor"
26657
+ [attr.stroke-width]="strokeWidth()"
26658
+ stroke-linecap="round"
26659
+ stroke-linejoin="round"
26660
+ aria-hidden="true"
26661
+ width="100%"
26662
+ height="100%">
26663
+ <path d="m5 8 6 6" />
26664
+ <path d="m4 14 6-6 2-3" />
26665
+ <path d="M2 5h12" />
26666
+ <path d="M7 2h1" />
26667
+ <path d="m22 22-5-10-5 10" />
26668
+ <path d="M14 18h6" />
26669
+ </svg>
26670
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
26671
+ }
26672
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: LanguagesIconComponent, decorators: [{
26673
+ type: Component,
26674
+ args: [{
26675
+ selector: 'ea-icon-languages',
26676
+ changeDetection: ChangeDetectionStrategy.OnPush,
26677
+ template: `
26678
+ <svg
26679
+ viewBox="0 0 24 24"
26680
+ fill="none"
26681
+ stroke="currentColor"
26682
+ [attr.stroke-width]="strokeWidth()"
26683
+ stroke-linecap="round"
26684
+ stroke-linejoin="round"
26685
+ aria-hidden="true"
26686
+ width="100%"
26687
+ height="100%">
26688
+ <path d="m5 8 6 6" />
26689
+ <path d="m4 14 6-6 2-3" />
26690
+ <path d="M2 5h12" />
26691
+ <path d="M7 2h1" />
26692
+ <path d="m22 22-5-10-5 10" />
26693
+ <path d="M14 18h6" />
26694
+ </svg>
26695
+ `,
26696
+ }]
26697
+ }] });
26698
+
25934
26699
  class LayersIconComponent extends IconComponentBase {
25935
26700
  static slug = 'layers';
25936
26701
  static category = 'feather';
@@ -27022,6 +27787,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
27022
27787
  }]
27023
27788
  }] });
27024
27789
 
27790
+ class MailCheckIconComponent extends IconComponentBase {
27791
+ static slug = 'mail-check';
27792
+ static category = 'eagami';
27793
+ static tags = [
27794
+ 'mail-check',
27795
+ 'mail',
27796
+ 'email',
27797
+ 'envelope',
27798
+ 'delivered',
27799
+ 'courrier',
27800
+ 'correo',
27801
+ 'αλληλογραφία',
27802
+ 'poczta',
27803
+ ];
27804
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: MailCheckIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
27805
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: MailCheckIconComponent, isStandalone: true, selector: "ea-icon-mail-check", usesInheritance: true, ngImport: i0, template: `
27806
+ <svg
27807
+ viewBox="0 0 24 24"
27808
+ fill="none"
27809
+ stroke="currentColor"
27810
+ [attr.stroke-width]="strokeWidth()"
27811
+ stroke-linecap="round"
27812
+ stroke-linejoin="round"
27813
+ aria-hidden="true"
27814
+ width="100%"
27815
+ height="100%">
27816
+ <path d="M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8" />
27817
+ <path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" />
27818
+ <path d="m16 19 2 2 4-4" />
27819
+ </svg>
27820
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
27821
+ }
27822
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: MailCheckIconComponent, decorators: [{
27823
+ type: Component,
27824
+ args: [{
27825
+ selector: 'ea-icon-mail-check',
27826
+ changeDetection: ChangeDetectionStrategy.OnPush,
27827
+ template: `
27828
+ <svg
27829
+ viewBox="0 0 24 24"
27830
+ fill="none"
27831
+ stroke="currentColor"
27832
+ [attr.stroke-width]="strokeWidth()"
27833
+ stroke-linecap="round"
27834
+ stroke-linejoin="round"
27835
+ aria-hidden="true"
27836
+ width="100%"
27837
+ height="100%">
27838
+ <path d="M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8" />
27839
+ <path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" />
27840
+ <path d="m16 19 2 2 4-4" />
27841
+ </svg>
27842
+ `,
27843
+ }]
27844
+ }] });
27845
+
27025
27846
  class MailIconComponent extends IconComponentBase {
27026
27847
  static slug = 'mail';
27027
27848
  static category = 'feather';
@@ -28838,24 +29659,70 @@ class NetlifyIconComponent extends IconComponentBase {
28838
29659
  </svg>
28839
29660
  `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
28840
29661
  }
28841
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: NetlifyIconComponent, decorators: [{
29662
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: NetlifyIconComponent, decorators: [{
29663
+ type: Component,
29664
+ args: [{
29665
+ selector: 'ea-icon-netlify',
29666
+ changeDetection: ChangeDetectionStrategy.OnPush,
29667
+ template: `
29668
+ <svg
29669
+ viewBox="4 4 16 16"
29670
+ aria-hidden="true"
29671
+ width="100%"
29672
+ height="100%">
29673
+ <path
29674
+ d="m13.4 13.144-.71-.71 4.474-4.474 1.86 1.07a.39.39 0 0 1 .15.378l-.69 4.31-5.084-.574Zm-2.8 0L5.516 13.72l-.69-4.31a.39.39 0 0 1 .15-.379l1.86-1.07 4.474 4.474-.71.71Zm.71-2.04L7.05 6.694l.71-.71L12 9.604l4.24-3.62.71.71-4.26 4.41-.71-.71-.67.71Zm.69 6.91-4.24-3.62-.71.71 4.26 4.41.71-.71 4.24-3.62-.71-.71-3.55 3.54Z"
29675
+ fill="#00C7B7" />
29676
+ </svg>
29677
+ `,
29678
+ }]
29679
+ }] });
29680
+
29681
+ class NodejsIconComponent extends IconComponentBase {
29682
+ static slug = 'nodejs';
29683
+ static category = 'eagami';
29684
+ static isBrand = true;
29685
+ static tags = [
29686
+ 'nodejs',
29687
+ 'node',
29688
+ 'javascript',
29689
+ 'runtime',
29690
+ 'server',
29691
+ 'backend',
29692
+ ];
29693
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
29694
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: NodejsIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
29695
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: NodejsIconComponent, isStandalone: true, selector: "ea-icon-nodejs", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#5FA04E' : null" } }, usesInheritance: true, ngImport: i0, template: `
29696
+ <svg
29697
+ viewBox="0 0 24 24"
29698
+ fill="currentColor"
29699
+ aria-hidden="true"
29700
+ width="100%"
29701
+ height="100%">
29702
+ <path
29703
+ d="M11.998,24c-0.321,0-0.641-0.084-0.922-0.247l-2.936-1.737c-0.438-0.245-0.224-0.332-0.08-0.383 c0.585-0.203,0.703-0.25,1.328-0.604c0.065-0.037,0.151-0.023,0.218,0.017l2.256,1.339c0.082,0.045,0.197,0.045,0.272,0l8.795-5.076 c0.082-0.047,0.134-0.141,0.134-0.238V6.921c0-0.099-0.053-0.192-0.137-0.242l-8.791-5.072c-0.081-0.047-0.189-0.047-0.271,0 L3.075,6.68C2.99,6.729,2.936,6.825,2.936,6.921v10.15c0,0.097,0.054,0.189,0.139,0.235l2.409,1.392 c1.307,0.654,2.108-0.116,2.108-0.89V7.787c0-0.142,0.114-0.253,0.256-0.253h1.115c0.139,0,0.255,0.112,0.255,0.253v10.021 c0,1.745-0.95,2.745-2.604,2.745c-0.508,0-0.909,0-2.026-0.551L2.28,18.675c-0.57-0.329-0.922-0.945-0.922-1.604V6.921 c0-0.659,0.353-1.275,0.922-1.603l8.795-5.082c0.557-0.315,1.296-0.315,1.848,0l8.794,5.082c0.57,0.329,0.924,0.944,0.924,1.603 v10.15c0,0.659-0.354,1.273-0.924,1.604l-8.794,5.078C12.643,23.916,12.324,24,11.998,24z M19.099,13.993 c0-1.9-1.284-2.406-3.987-2.763c-2.731-0.361-3.009-0.548-3.009-1.187c0-0.528,0.235-1.233,2.258-1.233 c1.807,0,2.473,0.389,2.747,1.607c0.024,0.115,0.129,0.199,0.247,0.199h1.141c0.071,0,0.138-0.031,0.186-0.081 c0.048-0.054,0.074-0.123,0.067-0.196c-0.177-2.098-1.571-3.076-4.388-3.076c-2.508,0-4.004,1.058-4.004,2.833 c0,1.925,1.488,2.457,3.895,2.695c2.88,0.282,3.103,0.703,3.103,1.269c0,0.983-0.789,1.402-2.642,1.402 c-2.327,0-2.839-0.584-3.011-1.742c-0.02-0.124-0.126-0.215-0.253-0.215h-1.137c-0.141,0-0.254,0.112-0.254,0.253 c0,1.482,0.806,3.248,4.655,3.248C17.501,17.007,19.099,15.91,19.099,13.993z" />
29704
+ </svg>
29705
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
29706
+ }
29707
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: NodejsIconComponent, decorators: [{
28842
29708
  type: Component,
28843
29709
  args: [{
28844
- selector: 'ea-icon-netlify',
29710
+ selector: 'ea-icon-nodejs',
28845
29711
  changeDetection: ChangeDetectionStrategy.OnPush,
29712
+ host: { '[style.color]': "brand() ? '#5FA04E' : null" },
28846
29713
  template: `
28847
29714
  <svg
28848
- viewBox="4 4 16 16"
29715
+ viewBox="0 0 24 24"
29716
+ fill="currentColor"
28849
29717
  aria-hidden="true"
28850
29718
  width="100%"
28851
29719
  height="100%">
28852
29720
  <path
28853
- d="m13.4 13.144-.71-.71 4.474-4.474 1.86 1.07a.39.39 0 0 1 .15.378l-.69 4.31-5.084-.574Zm-2.8 0L5.516 13.72l-.69-4.31a.39.39 0 0 1 .15-.379l1.86-1.07 4.474 4.474-.71.71Zm.71-2.04L7.05 6.694l.71-.71L12 9.604l4.24-3.62.71.71-4.26 4.41-.71-.71-.67.71Zm.69 6.91-4.24-3.62-.71.71 4.26 4.41.71-.71 4.24-3.62-.71-.71-3.55 3.54Z"
28854
- fill="#00C7B7" />
29721
+ d="M11.998,24c-0.321,0-0.641-0.084-0.922-0.247l-2.936-1.737c-0.438-0.245-0.224-0.332-0.08-0.383 c0.585-0.203,0.703-0.25,1.328-0.604c0.065-0.037,0.151-0.023,0.218,0.017l2.256,1.339c0.082,0.045,0.197,0.045,0.272,0l8.795-5.076 c0.082-0.047,0.134-0.141,0.134-0.238V6.921c0-0.099-0.053-0.192-0.137-0.242l-8.791-5.072c-0.081-0.047-0.189-0.047-0.271,0 L3.075,6.68C2.99,6.729,2.936,6.825,2.936,6.921v10.15c0,0.097,0.054,0.189,0.139,0.235l2.409,1.392 c1.307,0.654,2.108-0.116,2.108-0.89V7.787c0-0.142,0.114-0.253,0.256-0.253h1.115c0.139,0,0.255,0.112,0.255,0.253v10.021 c0,1.745-0.95,2.745-2.604,2.745c-0.508,0-0.909,0-2.026-0.551L2.28,18.675c-0.57-0.329-0.922-0.945-0.922-1.604V6.921 c0-0.659,0.353-1.275,0.922-1.603l8.795-5.082c0.557-0.315,1.296-0.315,1.848,0l8.794,5.082c0.57,0.329,0.924,0.944,0.924,1.603 v10.15c0,0.659-0.354,1.273-0.924,1.604l-8.794,5.078C12.643,23.916,12.324,24,11.998,24z M19.099,13.993 c0-1.9-1.284-2.406-3.987-2.763c-2.731-0.361-3.009-0.548-3.009-1.187c0-0.528,0.235-1.233,2.258-1.233 c1.807,0,2.473,0.389,2.747,1.607c0.024,0.115,0.129,0.199,0.247,0.199h1.141c0.071,0,0.138-0.031,0.186-0.081 c0.048-0.054,0.074-0.123,0.067-0.196c-0.177-2.098-1.571-3.076-4.388-3.076c-2.508,0-4.004,1.058-4.004,2.833 c0,1.925,1.488,2.457,3.895,2.695c2.88,0.282,3.103,0.703,3.103,1.269c0,0.983-0.789,1.402-2.642,1.402 c-2.327,0-2.839-0.584-3.011-1.742c-0.02-0.124-0.126-0.215-0.253-0.215h-1.137c-0.141,0-0.254,0.112-0.254,0.253 c0,1.482,0.806,3.248,4.655,3.248C17.501,17.007,19.099,15.91,19.099,13.993z" />
28855
29722
  </svg>
28856
29723
  `,
28857
29724
  }]
28858
- }] });
29725
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
28859
29726
 
28860
29727
  class NotionIconComponent extends IconComponentBase {
28861
29728
  static slug = 'notion';
@@ -30084,6 +30951,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
30084
30951
  }]
30085
30952
  }] });
30086
30953
 
30954
+ class PinterestIconComponent extends IconComponentBase {
30955
+ static slug = 'pinterest';
30956
+ static category = 'eagami';
30957
+ static isBrand = true;
30958
+ static tags = [
30959
+ 'pinterest',
30960
+ 'social',
30961
+ 'pin',
30962
+ 'board',
30963
+ 'inspiration',
30964
+ ];
30965
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
30966
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: PinterestIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
30967
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: PinterestIconComponent, isStandalone: true, selector: "ea-icon-pinterest", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#BD081C' : null" } }, usesInheritance: true, ngImport: i0, template: `
30968
+ <svg
30969
+ viewBox="0 0 24 24"
30970
+ fill="currentColor"
30971
+ aria-hidden="true"
30972
+ width="100%"
30973
+ height="100%">
30974
+ <path
30975
+ d="M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z" />
30976
+ </svg>
30977
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
30978
+ }
30979
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: PinterestIconComponent, decorators: [{
30980
+ type: Component,
30981
+ args: [{
30982
+ selector: 'ea-icon-pinterest',
30983
+ changeDetection: ChangeDetectionStrategy.OnPush,
30984
+ host: { '[style.color]': "brand() ? '#BD081C' : null" },
30985
+ template: `
30986
+ <svg
30987
+ viewBox="0 0 24 24"
30988
+ fill="currentColor"
30989
+ aria-hidden="true"
30990
+ width="100%"
30991
+ height="100%">
30992
+ <path
30993
+ d="M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z" />
30994
+ </svg>
30995
+ `,
30996
+ }]
30997
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
30998
+
30087
30999
  class PlayCircleIconComponent extends IconComponentBase {
30088
31000
  static slug = 'play-circle';
30089
31001
  static category = 'feather';
@@ -30563,6 +31475,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
30563
31475
  }]
30564
31476
  }] });
30565
31477
 
31478
+ class PythonIconComponent extends IconComponentBase {
31479
+ static slug = 'python';
31480
+ static category = 'eagami';
31481
+ static isBrand = true;
31482
+ static tags = [
31483
+ 'python',
31484
+ 'language',
31485
+ 'programming',
31486
+ 'code',
31487
+ 'script',
31488
+ ];
31489
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
31490
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: PythonIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
31491
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: PythonIconComponent, isStandalone: true, selector: "ea-icon-python", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#3776AB' : null" } }, usesInheritance: true, ngImport: i0, template: `
31492
+ <svg
31493
+ viewBox="0 0 24 24"
31494
+ fill="currentColor"
31495
+ aria-hidden="true"
31496
+ width="100%"
31497
+ height="100%">
31498
+ <path
31499
+ d="M14.25.18l.9.2.73.26.59.3.45.32.34.34.25.34.16.33.1.3.04.26.02.2-.01.13V8.5l-.05.63-.13.55-.21.46-.26.38-.3.31-.33.25-.35.19-.35.14-.33.1-.3.07-.26.04-.21.02H8.77l-.69.05-.59.14-.5.22-.41.27-.33.32-.27.35-.2.36-.15.37-.1.35-.07.32-.04.27-.02.21v3.06H3.17l-.21-.03-.28-.07-.32-.12-.35-.18-.36-.26-.36-.36-.35-.46-.32-.59-.28-.73-.21-.88-.14-1.05-.05-1.23.06-1.22.16-1.04.24-.87.32-.71.36-.57.4-.44.42-.33.42-.24.4-.16.36-.1.32-.05.24-.01h.16l.06.01h8.16v-.83H6.18l-.01-2.75-.02-.37.05-.34.11-.31.17-.28.25-.26.31-.23.38-.2.44-.18.51-.15.58-.12.64-.1.71-.06.77-.04.84-.02 1.27.05zm-6.3 1.98l-.23.33-.08.41.08.41.23.34.33.22.41.09.41-.09.33-.22.23-.34.08-.41-.08-.41-.23-.33-.33-.22-.41-.09-.41.09zm13.09 3.95l.28.06.32.12.35.18.36.27.36.35.35.47.32.59.28.73.21.88.14 1.04.05 1.23-.06 1.23-.16 1.04-.24.86-.32.71-.36.57-.4.45-.42.33-.42.24-.4.16-.36.09-.32.05-.24.02-.16-.01h-8.22v.82h5.84l.01 2.76.02.36-.05.34-.11.31-.17.29-.25.25-.31.24-.38.2-.44.17-.51.15-.58.13-.64.09-.71.07-.77.04-.84.01-1.27-.04-1.07-.14-.9-.2-.73-.25-.59-.3-.45-.33-.34-.34-.25-.34-.16-.33-.1-.3-.04-.25-.02-.2.01-.13v-5.34l.05-.64.13-.54.21-.46.26-.38.3-.32.33-.24.35-.2.35-.14.33-.1.3-.06.26-.04.21-.02.13-.01h5.84l.69-.05.59-.14.5-.21.41-.28.33-.32.27-.35.2-.36.15-.36.1-.35.07-.32.04-.28.02-.21V6.07h2.09l.14.01zm-6.47 14.25l-.23.33-.08.41.08.41.23.33.33.23.41.08.41-.08.33-.23.23-.33.08-.41-.08-.41-.23-.33-.33-.23-.41-.08-.41.08z" />
31500
+ </svg>
31501
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
31502
+ }
31503
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: PythonIconComponent, decorators: [{
31504
+ type: Component,
31505
+ args: [{
31506
+ selector: 'ea-icon-python',
31507
+ changeDetection: ChangeDetectionStrategy.OnPush,
31508
+ host: { '[style.color]': "brand() ? '#3776AB' : null" },
31509
+ template: `
31510
+ <svg
31511
+ viewBox="0 0 24 24"
31512
+ fill="currentColor"
31513
+ aria-hidden="true"
31514
+ width="100%"
31515
+ height="100%">
31516
+ <path
31517
+ d="M14.25.18l.9.2.73.26.59.3.45.32.34.34.25.34.16.33.1.3.04.26.02.2-.01.13V8.5l-.05.63-.13.55-.21.46-.26.38-.3.31-.33.25-.35.19-.35.14-.33.1-.3.07-.26.04-.21.02H8.77l-.69.05-.59.14-.5.22-.41.27-.33.32-.27.35-.2.36-.15.37-.1.35-.07.32-.04.27-.02.21v3.06H3.17l-.21-.03-.28-.07-.32-.12-.35-.18-.36-.26-.36-.36-.35-.46-.32-.59-.28-.73-.21-.88-.14-1.05-.05-1.23.06-1.22.16-1.04.24-.87.32-.71.36-.57.4-.44.42-.33.42-.24.4-.16.36-.1.32-.05.24-.01h.16l.06.01h8.16v-.83H6.18l-.01-2.75-.02-.37.05-.34.11-.31.17-.28.25-.26.31-.23.38-.2.44-.18.51-.15.58-.12.64-.1.71-.06.77-.04.84-.02 1.27.05zm-6.3 1.98l-.23.33-.08.41.08.41.23.34.33.22.41.09.41-.09.33-.22.23-.34.08-.41-.08-.41-.23-.33-.33-.22-.41-.09-.41.09zm13.09 3.95l.28.06.32.12.35.18.36.27.36.35.35.47.32.59.28.73.21.88.14 1.04.05 1.23-.06 1.23-.16 1.04-.24.86-.32.71-.36.57-.4.45-.42.33-.42.24-.4.16-.36.09-.32.05-.24.02-.16-.01h-8.22v.82h5.84l.01 2.76.02.36-.05.34-.11.31-.17.29-.25.25-.31.24-.38.2-.44.17-.51.15-.58.13-.64.09-.71.07-.77.04-.84.01-1.27-.04-1.07-.14-.9-.2-.73-.25-.59-.3-.45-.33-.34-.34-.25-.34-.16-.33-.1-.3-.04-.25-.02-.2.01-.13v-5.34l.05-.64.13-.54.21-.46.26-.38.3-.32.33-.24.35-.2.35-.14.33-.1.3-.06.26-.04.21-.02.13-.01h5.84l.69-.05.59-.14.5-.21.41-.28.33-.32.27-.35.2-.36.15-.36.1-.35.07-.32.04-.28.02-.21V6.07h2.09l.14.01zm-6.47 14.25l-.23.33-.08.41.08.41.23.33.33.23.41.08.41-.08.33-.23.23-.33.08-.41-.08-.41-.23-.33-.33-.23-.41-.08-.41.08z" />
31518
+ </svg>
31519
+ `,
31520
+ }]
31521
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
31522
+
30566
31523
  class QrCodeIconComponent extends IconComponentBase {
30567
31524
  static slug = 'qr-code';
30568
31525
  static category = 'eagami';
@@ -32181,6 +33138,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
32181
33138
  }]
32182
33139
  }] });
32183
33140
 
33141
+ class ShieldCheckIconComponent extends IconComponentBase {
33142
+ static slug = 'shield-check';
33143
+ static category = 'eagami';
33144
+ static tags = [
33145
+ 'shield-check',
33146
+ 'shield',
33147
+ 'security',
33148
+ 'protected',
33149
+ 'safe',
33150
+ 'bouclier',
33151
+ 'escudo',
33152
+ 'ασπίδα',
33153
+ 'tarcza',
33154
+ ];
33155
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ShieldCheckIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
33156
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: ShieldCheckIconComponent, isStandalone: true, selector: "ea-icon-shield-check", usesInheritance: true, ngImport: i0, template: `
33157
+ <svg
33158
+ viewBox="0 0 24 24"
33159
+ fill="none"
33160
+ stroke="currentColor"
33161
+ [attr.stroke-width]="strokeWidth()"
33162
+ stroke-linecap="round"
33163
+ stroke-linejoin="round"
33164
+ aria-hidden="true"
33165
+ width="100%"
33166
+ height="100%">
33167
+ <path
33168
+ d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" />
33169
+ <path d="m9 12 2 2 4-4" />
33170
+ </svg>
33171
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
33172
+ }
33173
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ShieldCheckIconComponent, decorators: [{
33174
+ type: Component,
33175
+ args: [{
33176
+ selector: 'ea-icon-shield-check',
33177
+ changeDetection: ChangeDetectionStrategy.OnPush,
33178
+ template: `
33179
+ <svg
33180
+ viewBox="0 0 24 24"
33181
+ fill="none"
33182
+ stroke="currentColor"
33183
+ [attr.stroke-width]="strokeWidth()"
33184
+ stroke-linecap="round"
33185
+ stroke-linejoin="round"
33186
+ aria-hidden="true"
33187
+ width="100%"
33188
+ height="100%">
33189
+ <path
33190
+ d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" />
33191
+ <path d="m9 12 2 2 4-4" />
33192
+ </svg>
33193
+ `,
33194
+ }]
33195
+ }] });
33196
+
32184
33197
  class ShieldOffIconComponent extends IconComponentBase {
32185
33198
  static slug = 'shield-off';
32186
33199
  static category = 'feather';
@@ -32302,6 +33315,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
32302
33315
  }]
32303
33316
  }] });
32304
33317
 
33318
+ class ShopifyIconComponent extends IconComponentBase {
33319
+ static slug = 'shopify';
33320
+ static category = 'eagami';
33321
+ static isBrand = true;
33322
+ static tags = [
33323
+ 'shopify',
33324
+ 'ecommerce',
33325
+ 'store',
33326
+ 'commerce',
33327
+ 'shop',
33328
+ ];
33329
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
33330
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ShopifyIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
33331
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: ShopifyIconComponent, isStandalone: true, selector: "ea-icon-shopify", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#7AB55C' : null" } }, usesInheritance: true, ngImport: i0, template: `
33332
+ <svg
33333
+ viewBox="0 0 24 24"
33334
+ fill="currentColor"
33335
+ aria-hidden="true"
33336
+ width="100%"
33337
+ height="100%">
33338
+ <path
33339
+ d="M15.337 23.979l7.216-1.561s-2.604-17.613-2.625-17.73c-.018-.116-.114-.192-.211-.192s-1.929-.136-1.929-.136-1.275-1.274-1.439-1.411c-.045-.037-.075-.057-.121-.074l-.914 21.104h.023zM11.71 11.305s-.81-.424-1.774-.424c-1.447 0-1.504.906-1.504 1.141 0 1.232 3.24 1.715 3.24 4.629 0 2.295-1.44 3.76-3.406 3.76-2.354 0-3.54-1.465-3.54-1.465l.646-2.086s1.245 1.066 2.28 1.066c.675 0 .975-.545.975-.932 0-1.619-2.654-1.694-2.654-4.359-.034-2.237 1.571-4.416 4.827-4.416 1.257 0 1.875.361 1.875.361l-.945 2.715-.02.01zM11.17.83c.136 0 .271.038.405.135-.984.465-2.064 1.639-2.508 3.992-.656.213-1.293.405-1.889.578C7.697 3.75 8.951.84 11.17.84V.83zm1.235 2.949v.135c-.754.232-1.583.484-2.394.736.466-1.777 1.333-2.645 2.085-2.971.193.501.309 1.176.309 2.1zm.539-2.234c.694.074 1.141.867 1.429 1.755-.349.114-.735.231-1.158.366v-.252c0-.752-.096-1.371-.271-1.871v.002zm2.992 1.289c-.02 0-.06.021-.078.021s-.289.075-.714.21c-.423-1.233-1.176-2.37-2.508-2.37h-.115C12.135.209 11.669 0 11.265 0 8.159 0 6.675 3.877 6.21 5.846c-1.194.365-2.063.636-2.16.674-.675.213-.694.232-.772.87-.075.462-1.83 14.063-1.83 14.063L15.009 24l.927-21.166z" />
33340
+ </svg>
33341
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
33342
+ }
33343
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: ShopifyIconComponent, decorators: [{
33344
+ type: Component,
33345
+ args: [{
33346
+ selector: 'ea-icon-shopify',
33347
+ changeDetection: ChangeDetectionStrategy.OnPush,
33348
+ host: { '[style.color]': "brand() ? '#7AB55C' : null" },
33349
+ template: `
33350
+ <svg
33351
+ viewBox="0 0 24 24"
33352
+ fill="currentColor"
33353
+ aria-hidden="true"
33354
+ width="100%"
33355
+ height="100%">
33356
+ <path
33357
+ d="M15.337 23.979l7.216-1.561s-2.604-17.613-2.625-17.73c-.018-.116-.114-.192-.211-.192s-1.929-.136-1.929-.136-1.275-1.274-1.439-1.411c-.045-.037-.075-.057-.121-.074l-.914 21.104h.023zM11.71 11.305s-.81-.424-1.774-.424c-1.447 0-1.504.906-1.504 1.141 0 1.232 3.24 1.715 3.24 4.629 0 2.295-1.44 3.76-3.406 3.76-2.354 0-3.54-1.465-3.54-1.465l.646-2.086s1.245 1.066 2.28 1.066c.675 0 .975-.545.975-.932 0-1.619-2.654-1.694-2.654-4.359-.034-2.237 1.571-4.416 4.827-4.416 1.257 0 1.875.361 1.875.361l-.945 2.715-.02.01zM11.17.83c.136 0 .271.038.405.135-.984.465-2.064 1.639-2.508 3.992-.656.213-1.293.405-1.889.578C7.697 3.75 8.951.84 11.17.84V.83zm1.235 2.949v.135c-.754.232-1.583.484-2.394.736.466-1.777 1.333-2.645 2.085-2.971.193.501.309 1.176.309 2.1zm.539-2.234c.694.074 1.141.867 1.429 1.755-.349.114-.735.231-1.158.366v-.252c0-.752-.096-1.371-.271-1.871v.002zm2.992 1.289c-.02 0-.06.021-.078.021s-.289.075-.714.21c-.423-1.233-1.176-2.37-2.508-2.37h-.115C12.135.209 11.669 0 11.265 0 8.159 0 6.675 3.877 6.21 5.846c-1.194.365-2.063.636-2.16.674-.675.213-.694.232-.772.87-.075.462-1.83 14.063-1.83 14.063L15.009 24l.927-21.166z" />
33358
+ </svg>
33359
+ `,
33360
+ }]
33361
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
33362
+
32305
33363
  class ShoppingBagIconComponent extends IconComponentBase {
32306
33364
  static slug = 'shopping-bag';
32307
33365
  static category = 'feather';
@@ -34201,6 +35259,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
34201
35259
  }]
34202
35260
  }] });
34203
35261
 
35262
+ class SvelteIconComponent extends IconComponentBase {
35263
+ static slug = 'svelte';
35264
+ static category = 'eagami';
35265
+ static isBrand = true;
35266
+ static tags = [
35267
+ 'svelte',
35268
+ 'framework',
35269
+ 'javascript',
35270
+ 'frontend',
35271
+ 'web',
35272
+ ];
35273
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
35274
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: SvelteIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
35275
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: SvelteIconComponent, isStandalone: true, selector: "ea-icon-svelte", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#FF3E00' : null" } }, usesInheritance: true, ngImport: i0, template: `
35276
+ <svg
35277
+ viewBox="0 0 24 24"
35278
+ fill="currentColor"
35279
+ aria-hidden="true"
35280
+ width="100%"
35281
+ height="100%">
35282
+ <path
35283
+ d="M10.354 21.125a4.44 4.44 0 0 1-4.765-1.767 4.109 4.109 0 0 1-.703-3.107 3.898 3.898 0 0 1 .134-.522l.105-.321.287.21a7.21 7.21 0 0 0 2.186 1.092l.208.063-.02.208a1.253 1.253 0 0 0 .226.83 1.337 1.337 0 0 0 1.435.533 1.231 1.231 0 0 0 .343-.15l5.59-3.562a1.164 1.164 0 0 0 .524-.778 1.242 1.242 0 0 0-.211-.937 1.338 1.338 0 0 0-1.435-.533 1.23 1.23 0 0 0-.343.15l-2.133 1.36a4.078 4.078 0 0 1-1.135.499 4.44 4.44 0 0 1-4.765-1.766 4.108 4.108 0 0 1-.702-3.108 3.855 3.855 0 0 1 1.742-2.582l5.589-3.563a4.072 4.072 0 0 1 1.135-.499 4.44 4.44 0 0 1 4.765 1.767 4.109 4.109 0 0 1 .703 3.107 3.943 3.943 0 0 1-.134.522l-.105.321-.286-.21a7.204 7.204 0 0 0-2.187-1.093l-.208-.063.02-.207a1.255 1.255 0 0 0-.226-.831 1.337 1.337 0 0 0-1.435-.532 1.231 1.231 0 0 0-.343.15L8.62 9.368a1.162 1.162 0 0 0-.524.778 1.24 1.24 0 0 0 .211.937 1.338 1.338 0 0 0 1.435.533 1.235 1.235 0 0 0 .344-.151l2.132-1.36a4.067 4.067 0 0 1 1.135-.498 4.44 4.44 0 0 1 4.765 1.766 4.108 4.108 0 0 1 .702 3.108 3.857 3.857 0 0 1-1.742 2.583l-5.589 3.562a4.072 4.072 0 0 1-1.135.499m10.358-17.95C18.484-.015 14.082-.96 10.9 1.068L5.31 4.63a6.412 6.412 0 0 0-2.896 4.295 6.753 6.753 0 0 0 .666 4.336 6.43 6.43 0 0 0-.96 2.396 6.833 6.833 0 0 0 1.168 5.167c2.229 3.19 6.63 4.135 9.812 2.108l5.59-3.562a6.41 6.41 0 0 0 2.896-4.295 6.756 6.756 0 0 0-.665-4.336 6.429 6.429 0 0 0 .958-2.396 6.831 6.831 0 0 0-1.167-5.168Z" />
35284
+ </svg>
35285
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
35286
+ }
35287
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: SvelteIconComponent, decorators: [{
35288
+ type: Component,
35289
+ args: [{
35290
+ selector: 'ea-icon-svelte',
35291
+ changeDetection: ChangeDetectionStrategy.OnPush,
35292
+ host: { '[style.color]': "brand() ? '#FF3E00' : null" },
35293
+ template: `
35294
+ <svg
35295
+ viewBox="0 0 24 24"
35296
+ fill="currentColor"
35297
+ aria-hidden="true"
35298
+ width="100%"
35299
+ height="100%">
35300
+ <path
35301
+ d="M10.354 21.125a4.44 4.44 0 0 1-4.765-1.767 4.109 4.109 0 0 1-.703-3.107 3.898 3.898 0 0 1 .134-.522l.105-.321.287.21a7.21 7.21 0 0 0 2.186 1.092l.208.063-.02.208a1.253 1.253 0 0 0 .226.83 1.337 1.337 0 0 0 1.435.533 1.231 1.231 0 0 0 .343-.15l5.59-3.562a1.164 1.164 0 0 0 .524-.778 1.242 1.242 0 0 0-.211-.937 1.338 1.338 0 0 0-1.435-.533 1.23 1.23 0 0 0-.343.15l-2.133 1.36a4.078 4.078 0 0 1-1.135.499 4.44 4.44 0 0 1-4.765-1.766 4.108 4.108 0 0 1-.702-3.108 3.855 3.855 0 0 1 1.742-2.582l5.589-3.563a4.072 4.072 0 0 1 1.135-.499 4.44 4.44 0 0 1 4.765 1.767 4.109 4.109 0 0 1 .703 3.107 3.943 3.943 0 0 1-.134.522l-.105.321-.286-.21a7.204 7.204 0 0 0-2.187-1.093l-.208-.063.02-.207a1.255 1.255 0 0 0-.226-.831 1.337 1.337 0 0 0-1.435-.532 1.231 1.231 0 0 0-.343.15L8.62 9.368a1.162 1.162 0 0 0-.524.778 1.24 1.24 0 0 0 .211.937 1.338 1.338 0 0 0 1.435.533 1.235 1.235 0 0 0 .344-.151l2.132-1.36a4.067 4.067 0 0 1 1.135-.498 4.44 4.44 0 0 1 4.765 1.766 4.108 4.108 0 0 1 .702 3.108 3.857 3.857 0 0 1-1.742 2.583l-5.589 3.562a4.072 4.072 0 0 1-1.135.499m10.358-17.95C18.484-.015 14.082-.96 10.9 1.068L5.31 4.63a6.412 6.412 0 0 0-2.896 4.295 6.753 6.753 0 0 0 .666 4.336 6.43 6.43 0 0 0-.96 2.396 6.833 6.833 0 0 0 1.168 5.167c2.229 3.19 6.63 4.135 9.812 2.108l5.59-3.562a6.41 6.41 0 0 0 2.896-4.295 6.756 6.756 0 0 0-.665-4.336 6.429 6.429 0 0 0 .958-2.396 6.831 6.831 0 0 0-1.167-5.168Z" />
35302
+ </svg>
35303
+ `,
35304
+ }]
35305
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
35306
+
34204
35307
  class TableIconComponent extends IconComponentBase {
34205
35308
  static slug = 'table';
34206
35309
  static category = 'feather';
@@ -37028,6 +38131,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
37028
38131
  }]
37029
38132
  }] });
37030
38133
 
38134
+ class VueIconComponent extends IconComponentBase {
38135
+ static slug = 'vue';
38136
+ static category = 'eagami';
38137
+ static isBrand = true;
38138
+ static tags = [
38139
+ 'vue',
38140
+ 'vuejs',
38141
+ 'framework',
38142
+ 'javascript',
38143
+ 'frontend',
38144
+ ];
38145
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
38146
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: VueIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
38147
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: VueIconComponent, isStandalone: true, selector: "ea-icon-vue", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#4FC08D' : null" } }, usesInheritance: true, ngImport: i0, template: `
38148
+ <svg
38149
+ viewBox="0 0 24 24"
38150
+ fill="currentColor"
38151
+ aria-hidden="true"
38152
+ width="100%"
38153
+ height="100%">
38154
+ <path
38155
+ d="M24,1.61H14.06L12,5.16,9.94,1.61H0L12,22.39ZM12,14.08,5.16,2.23H9.59L12,6.41l2.41-4.18h4.43Z" />
38156
+ </svg>
38157
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
38158
+ }
38159
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: VueIconComponent, decorators: [{
38160
+ type: Component,
38161
+ args: [{
38162
+ selector: 'ea-icon-vue',
38163
+ changeDetection: ChangeDetectionStrategy.OnPush,
38164
+ host: { '[style.color]': "brand() ? '#4FC08D' : null" },
38165
+ template: `
38166
+ <svg
38167
+ viewBox="0 0 24 24"
38168
+ fill="currentColor"
38169
+ aria-hidden="true"
38170
+ width="100%"
38171
+ height="100%">
38172
+ <path
38173
+ d="M24,1.61H14.06L12,5.16,9.94,1.61H0L12,22.39ZM12,14.08,5.16,2.23H9.59L12,6.41l2.41-4.18h4.43Z" />
38174
+ </svg>
38175
+ `,
38176
+ }]
38177
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
38178
+
37031
38179
  class WalletIconComponent extends IconComponentBase {
37032
38180
  static slug = 'wallet';
37033
38181
  static category = 'eagami';
@@ -37471,6 +38619,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImpo
37471
38619
  }]
37472
38620
  }] });
37473
38621
 
38622
+ class WordpressIconComponent extends IconComponentBase {
38623
+ static slug = 'wordpress';
38624
+ static category = 'eagami';
38625
+ static isBrand = true;
38626
+ static tags = [
38627
+ 'wordpress',
38628
+ 'cms',
38629
+ 'blog',
38630
+ 'website',
38631
+ 'publishing',
38632
+ ];
38633
+ brand = input(false, ...(ngDevMode ? [{ debugName: "brand" }] : /* istanbul ignore next */ []));
38634
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: WordpressIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
38635
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.16", type: WordpressIconComponent, isStandalone: true, selector: "ea-icon-wordpress", inputs: { brand: { classPropertyName: "brand", publicName: "brand", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.color": "brand() ? '#21759B' : null" } }, usesInheritance: true, ngImport: i0, template: `
38636
+ <svg
38637
+ viewBox="0 0 24 24"
38638
+ fill="currentColor"
38639
+ aria-hidden="true"
38640
+ width="100%"
38641
+ height="100%">
38642
+ <path
38643
+ d="M21.469 6.825c.84 1.537 1.318 3.3 1.318 5.175 0 3.979-2.156 7.456-5.363 9.325l3.295-9.527c.615-1.54.82-2.771.82-3.864 0-.405-.026-.78-.07-1.11m-7.981.105c.647-.03 1.232-.105 1.232-.105.582-.075.514-.93-.067-.899 0 0-1.755.135-2.88.135-1.064 0-2.85-.15-2.85-.15-.585-.03-.661.855-.075.885 0 0 .54.061 1.125.09l1.68 4.605-2.37 7.08L5.354 6.9c.649-.03 1.234-.1 1.234-.1.585-.075.516-.93-.065-.896 0 0-1.746.138-2.874.138-.2 0-.438-.008-.69-.015C4.911 3.15 8.235 1.215 12 1.215c2.809 0 5.365 1.072 7.286 2.833-.046-.003-.091-.009-.141-.009-1.06 0-1.812.923-1.812 1.914 0 .89.513 1.643 1.06 2.531.411.72.89 1.643.89 2.977 0 .915-.354 1.994-.821 3.479l-1.075 3.585-3.9-11.61.001.014zM12 22.784c-1.059 0-2.081-.153-3.048-.437l3.237-9.406 3.315 9.087c.024.053.05.101.078.149-1.12.393-2.325.609-3.582.609M1.211 12c0-1.564.336-3.05.935-4.39L7.29 21.709C3.694 19.96 1.212 16.271 1.211 12M12 0C5.385 0 0 5.385 0 12s5.385 12 12 12 12-5.385 12-12S18.615 0 12 0" />
38644
+ </svg>
38645
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
38646
+ }
38647
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: WordpressIconComponent, decorators: [{
38648
+ type: Component,
38649
+ args: [{
38650
+ selector: 'ea-icon-wordpress',
38651
+ changeDetection: ChangeDetectionStrategy.OnPush,
38652
+ host: { '[style.color]': "brand() ? '#21759B' : null" },
38653
+ template: `
38654
+ <svg
38655
+ viewBox="0 0 24 24"
38656
+ fill="currentColor"
38657
+ aria-hidden="true"
38658
+ width="100%"
38659
+ height="100%">
38660
+ <path
38661
+ d="M21.469 6.825c.84 1.537 1.318 3.3 1.318 5.175 0 3.979-2.156 7.456-5.363 9.325l3.295-9.527c.615-1.54.82-2.771.82-3.864 0-.405-.026-.78-.07-1.11m-7.981.105c.647-.03 1.232-.105 1.232-.105.582-.075.514-.93-.067-.899 0 0-1.755.135-2.88.135-1.064 0-2.85-.15-2.85-.15-.585-.03-.661.855-.075.885 0 0 .54.061 1.125.09l1.68 4.605-2.37 7.08L5.354 6.9c.649-.03 1.234-.1 1.234-.1.585-.075.516-.93-.065-.896 0 0-1.746.138-2.874.138-.2 0-.438-.008-.69-.015C4.911 3.15 8.235 1.215 12 1.215c2.809 0 5.365 1.072 7.286 2.833-.046-.003-.091-.009-.141-.009-1.06 0-1.812.923-1.812 1.914 0 .89.513 1.643 1.06 2.531.411.72.89 1.643.89 2.977 0 .915-.354 1.994-.821 3.479l-1.075 3.585-3.9-11.61.001.014zM12 22.784c-1.059 0-2.081-.153-3.048-.437l3.237-9.406 3.315 9.087c.024.053.05.101.078.149-1.12.393-2.325.609-3.582.609M1.211 12c0-1.564.336-3.05.935-4.39L7.29 21.709C3.694 19.96 1.212 16.271 1.211 12M12 0C5.385 0 0 5.385 0 12s5.385 12 12 12 12-5.385 12-12S18.615 0 12 0" />
38662
+ </svg>
38663
+ `,
38664
+ }]
38665
+ }], propDecorators: { brand: [{ type: i0.Input, args: [{ isSignal: true, alias: "brand", required: false }] }] } });
38666
+
37474
38667
  class XCircleIconComponent extends IconComponentBase {
37475
38668
  static slug = 'x-circle';
37476
38669
  static category = 'feather';
@@ -38550,11 +39743,32 @@ const ICONS = [
38550
39743
  WalletIconComponent,
38551
39744
  WandIconComponent,
38552
39745
  WhatsappIconComponent,
39746
+ AndroidIconComponent,
39747
+ AngularIconComponent,
39748
+ BellRingIconComponent,
39749
+ BlueskyIconComponent,
39750
+ BookmarkPlusIconComponent,
39751
+ CalendarDaysIconComponent,
39752
+ ClipboardListIconComponent,
39753
+ FileCheckIconComponent,
39754
+ FolderOpenIconComponent,
39755
+ GitCompareIconComponent,
39756
+ KeyboardIconComponent,
39757
+ LanguagesIconComponent,
39758
+ MailCheckIconComponent,
39759
+ NodejsIconComponent,
39760
+ PinterestIconComponent,
39761
+ PythonIconComponent,
39762
+ ShieldCheckIconComponent,
39763
+ ShopifyIconComponent,
39764
+ SvelteIconComponent,
39765
+ VueIconComponent,
39766
+ WordpressIconComponent,
38553
39767
  ].sort((a, b) => a.slug.localeCompare(b.slug));
38554
39768
 
38555
39769
  /**
38556
39770
  * Generated bundle index. Do not edit.
38557
39771
  */
38558
39772
 
38559
- 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, FormFieldComponent, 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, NumberInputComponent, 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 };
39773
+ export { AccordionComponent, AccordionItemComponent, ActivityIconComponent, AirplayIconComponent, AlertCircleIconComponent, AlertComponent, AlertOctagonIconComponent, AlertTriangleIconComponent, AlignCenterIconComponent, AlignJustifyIconComponent, AlignLeftIconComponent, AlignRightIconComponent, AnchorIconComponent, AndroidIconComponent, AngularIconComponent, 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, BellRingIconComponent, BitcoinIconComponent, BlueskyIconComponent, BluetoothIconComponent, BoldIconComponent, BookIconComponent, BookOpenIconComponent, BookmarkCheckIconComponent, BookmarkIconComponent, BookmarkPlusIconComponent, BotIconComponent, BottleIconComponent, BoxIconComponent, BrainIconComponent, BreadcrumbsComponent, BriefcaseIconComponent, ButtonComponent, CalendarCheckIconComponent, CalendarDaysIconComponent, CalendarIconComponent, CameraIconComponent, CameraOffIconComponent, CandleIconComponent, CardComponent, CastIconComponent, CheckCircleIconComponent, CheckIconComponent, CheckSquareIconComponent, CheckboxComponent, ChevronDownIconComponent, ChevronLeftIconComponent, ChevronRightIconComponent, ChevronUpIconComponent, ChevronsDownIconComponent, ChevronsLeftIconComponent, ChevronsRightIconComponent, ChevronsUpDownIconComponent, ChevronsUpIconComponent, ChromeIconComponent, CircleIconComponent, ClipboardCheckIconComponent, ClipboardIconComponent, ClipboardListIconComponent, 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, FileCheckIconComponent, FileIconComponent, FileMinusIconComponent, FilePlusIconComponent, FileTextIconComponent, FileUploaderComponent, FilmIconComponent, FilterIconComponent, FilterXIconComponent, FingerprintIconComponent, FlagIconComponent, FlameIconComponent, FolderIconComponent, FolderMinusIconComponent, FolderOpenIconComponent, FolderPlusIconComponent, FormFieldComponent, FramerIconComponent, FrownIconComponent, GaugeIconComponent, GeminiIconComponent, GiftIconComponent, GitBranchIconComponent, GitCommitIconComponent, GitCompareIconComponent, 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, KeyboardIconComponent, KubernetesIconComponent, LampIconComponent, LanguagesIconComponent, LayersIconComponent, LayoutIconComponent, LeafIconComponent, LeftHalfStarIconComponent, LifeBuoyIconComponent, Link2IconComponent, LinkIconComponent, Linkedin2IconComponent, LinkedinIconComponent, ListChecksIconComponent, ListIconComponent, LoaderIconComponent, LockIconComponent, LogInIconComponent, LogOutIconComponent, MailCheckIconComponent, 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, NodejsIconComponent, NotionIconComponent, NpmIconComponent, NumberInputComponent, OctagonIconComponent, PackageIconComponent, PaginatorComponent, PaperclipIconComponent, PauseCircleIconComponent, PauseIconComponent, PaypalIconComponent, PenToolIconComponent, PentagonIconComponent, PercentIconComponent, PhoneCallIconComponent, PhoneForwardedIconComponent, PhoneIconComponent, PhoneIncomingIconComponent, PhoneMissedIconComponent, PhoneOffIconComponent, PhoneOutgoingIconComponent, PieChartIconComponent, PinterestIconComponent, PlayCircleIconComponent, PlayIconComponent, PlusCircleIconComponent, PlusIconComponent, PlusSquareIconComponent, PocketIconComponent, PopoverComponent, PowerIconComponent, PrinterIconComponent, ProgressBarComponent, PythonIconComponent, 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, ShieldCheckIconComponent, ShieldIconComponent, ShieldOffIconComponent, ShopifyIconComponent, 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, SvelteIconComponent, SwitchComponent, TabComponent, TableIconComponent, TabletIconComponent, TabsComponent, TagComponent, TagIconComponent, TailwindIconComponent, TargetIconComponent, TelegramIconComponent, TerminalIconComponent, TextareaComponent, ThermometerIconComponent, ThreadsIconComponent, ThumbsDownIconComponent, ThumbsUpIconComponent, TiktokIconComponent, TimePickerComponent, TimelineComponent, 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, VueIconComponent, WCAG_AA, WalletIconComponent, WandIconComponent, WatchIconComponent, WhatsappIconComponent, WifiIconComponent, WifiOffIconComponent, WindIconComponent, WordpressIconComponent, 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 };
38560
39774
  //# sourceMappingURL=eagami-ui.mjs.map