@justeattakeaway/pie-icons-webc 1.4.0 → 1.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.
- package/dist/IconAi.d.ts +20 -0
- package/dist/IconAi.d.ts.map +1 -0
- package/dist/IconAi.js +28 -0
- package/dist/IconAiFilled.d.ts +20 -0
- package/dist/IconAiFilled.d.ts.map +1 -0
- package/dist/IconAiFilled.js +28 -0
- package/dist/IconAiFilledLarge.d.ts +20 -0
- package/dist/IconAiFilledLarge.d.ts.map +1 -0
- package/dist/IconAiFilledLarge.js +28 -0
- package/dist/IconAiLarge.d.ts +20 -0
- package/dist/IconAiLarge.d.ts.map +1 -0
- package/dist/IconAiLarge.js +28 -0
- package/dist/IconCheck.js +9 -9
- package/dist/IconCheckLarge.js +8 -8
- package/dist/IconDoubleCheck.d.ts +20 -0
- package/dist/IconDoubleCheck.d.ts.map +1 -0
- package/dist/IconDoubleCheck.js +28 -0
- package/dist/IconDoubleCheckLarge.d.ts +20 -0
- package/dist/IconDoubleCheckLarge.d.ts.map +1 -0
- package/dist/IconDoubleCheckLarge.js +28 -0
- package/dist/IconPaymentAfterpay.d.ts +20 -0
- package/dist/IconPaymentAfterpay.d.ts.map +1 -0
- package/dist/IconPaymentAfterpay.js +28 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2148 -2134
- package/dist/react/IconAi.d.ts +3 -0
- package/dist/react/IconAi.d.ts.map +1 -0
- package/dist/react/IconAi.js +13 -0
- package/dist/react/IconAiFilled.d.ts +3 -0
- package/dist/react/IconAiFilled.d.ts.map +1 -0
- package/dist/react/IconAiFilled.js +13 -0
- package/dist/react/IconAiFilledLarge.d.ts +3 -0
- package/dist/react/IconAiFilledLarge.d.ts.map +1 -0
- package/dist/react/IconAiFilledLarge.js +13 -0
- package/dist/react/IconAiLarge.d.ts +3 -0
- package/dist/react/IconAiLarge.d.ts.map +1 -0
- package/dist/react/IconAiLarge.js +13 -0
- package/dist/react/IconDoubleCheck.d.ts +3 -0
- package/dist/react/IconDoubleCheck.d.ts.map +1 -0
- package/dist/react/IconDoubleCheck.js +13 -0
- package/dist/react/IconDoubleCheckLarge.d.ts +3 -0
- package/dist/react/IconDoubleCheckLarge.d.ts.map +1 -0
- package/dist/react/IconDoubleCheckLarge.js +13 -0
- package/dist/react/IconPaymentAfterpay.d.ts +3 -0
- package/dist/react/IconPaymentAfterpay.d.ts.map +1 -0
- package/dist/react/IconPaymentAfterpay.js +13 -0
- package/dist/react/index.d.ts +7 -0
- package/dist/react/index.d.ts.map +1 -1
- package/dist/react/index.js +2148 -2134
- package/package.json +2 -2
package/dist/IconAi.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-ai";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-ai
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconAi extends PieIconComponent {
|
|
9
|
+
size: RegularIconSize;
|
|
10
|
+
class: string;
|
|
11
|
+
protected name: string;
|
|
12
|
+
render(): TemplateResult;
|
|
13
|
+
}
|
|
14
|
+
declare global {
|
|
15
|
+
interface HTMLElementTagNameMap {
|
|
16
|
+
[componentSelector]: IconAi;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=IconAi.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconAi.d.ts","sourceRoot":"","sources":["../icons/IconAi.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAGb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAEzD,QAAA,MAAM,iBAAiB,YAAY,CAAC;AAEpC;;GAEG;AACH,qBAAa,MAAO,SAAQ,gBAAgB;IAEjC,IAAI,EAAE,eAAe,CAAQ;IAI7B,KAAK,SAA6B;IAEzC,SAAS,CAAC,IAAI,SAAY;IAE1B,MAAM,IAAI,cAAc;CAG3B;AAID,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;KAC/B;CACJ"}
|
package/dist/IconAi.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { html as c } from "lit";
|
|
2
|
+
import { defineCustomElement as a } from "@justeattakeaway/pie-webc-core";
|
|
3
|
+
import { property as s } from "lit/decorators.js";
|
|
4
|
+
import { PieIconComponent as h } from "./PieIconComponent.js";
|
|
5
|
+
var f = Object.defineProperty, p = (t, i, l, d) => {
|
|
6
|
+
for (var e = void 0, r = t.length - 1, n; r >= 0; r--)
|
|
7
|
+
(n = t[r]) && (e = n(i, l, e) || e);
|
|
8
|
+
return e && f(i, l, e), e;
|
|
9
|
+
};
|
|
10
|
+
const m = "icon-ai";
|
|
11
|
+
class o extends h {
|
|
12
|
+
constructor() {
|
|
13
|
+
super(...arguments), this.size = "xs", this.class = "c-pieIcon c-pieIcon--ai", this.name = "IconAi";
|
|
14
|
+
}
|
|
15
|
+
render() {
|
|
16
|
+
return c`<svg width="${this._svgWidth}" height="${this._svgHeight}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--ai"><path d="M5.67 3.178A2.087 2.087 0 0 1 3.818 1.33L3.78 1h-.564l-.038.33A2.087 2.087 0 0 1 1.33 3.182L1 3.22v.564l.33.038A2.08 2.08 0 0 1 3.178 5.67l.038.33h.564l.038-.33A2.08 2.08 0 0 1 5.67 3.822L6 3.784V3.22l-.33-.038v-.004Z"></path><path fill-rule="evenodd" d="M14.289 8.531a4.821 4.821 0 0 1-4.279-4.27L9.922 3.5H8.62l-.088.761a4.821 4.821 0 0 1-4.27 4.279l-.761.088V9.93l.761.088a4.804 4.804 0 0 1 4.27 4.27l.088.761h1.303l.088-.761a4.805 4.805 0 0 1 4.279-4.27l.761-.088V8.628l-.761-.088v-.009Zm-5.014 3.605a6.091 6.091 0 0 0-2.87-2.87 6.09 6.09 0 0 0 2.87-2.87 6.09 6.09 0 0 0 2.87 2.87 6.091 6.091 0 0 0-2.87 2.87Z" clip-rule="evenodd"></path></svg>`;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
p([
|
|
20
|
+
s({ type: String, reflect: !0 })
|
|
21
|
+
], o.prototype, "size");
|
|
22
|
+
p([
|
|
23
|
+
s({ type: String, reflect: !0 })
|
|
24
|
+
], o.prototype, "class");
|
|
25
|
+
a(m, o);
|
|
26
|
+
export {
|
|
27
|
+
o as IconAi
|
|
28
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-ai-filled";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-ai-filled
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconAiFilled extends PieIconComponent {
|
|
9
|
+
size: RegularIconSize;
|
|
10
|
+
class: string;
|
|
11
|
+
protected name: string;
|
|
12
|
+
render(): TemplateResult;
|
|
13
|
+
}
|
|
14
|
+
declare global {
|
|
15
|
+
interface HTMLElementTagNameMap {
|
|
16
|
+
[componentSelector]: IconAiFilled;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=IconAiFilled.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconAiFilled.d.ts","sourceRoot":"","sources":["../icons/IconAiFilled.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAGb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAEzD,QAAA,MAAM,iBAAiB,mBAAmB,CAAC;AAE3C;;GAEG;AACH,qBAAa,YAAa,SAAQ,gBAAgB;IAEvC,IAAI,EAAE,eAAe,CAAQ;IAI7B,KAAK,SAAmC;IAE/C,SAAS,CAAC,IAAI,SAAkB;IAEhC,MAAM,IAAI,cAAc;CAG3B;AAID,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,YAAY,CAAC;KACrC;CACJ"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { html as c } from "lit";
|
|
2
|
+
import { defineCustomElement as a } from "@justeattakeaway/pie-webc-core";
|
|
3
|
+
import { property as s } from "lit/decorators.js";
|
|
4
|
+
import { PieIconComponent as h } from "./PieIconComponent.js";
|
|
5
|
+
var f = Object.defineProperty, p = (t, i, o, m) => {
|
|
6
|
+
for (var e = void 0, l = t.length - 1, n; l >= 0; l--)
|
|
7
|
+
(n = t[l]) && (e = n(i, o, e) || e);
|
|
8
|
+
return e && f(i, o, e), e;
|
|
9
|
+
};
|
|
10
|
+
const d = "icon-ai-filled";
|
|
11
|
+
class r extends h {
|
|
12
|
+
constructor() {
|
|
13
|
+
super(...arguments), this.size = "xs", this.class = "c-pieIcon c-pieIcon--aiFilled", this.name = "IconAiFilled";
|
|
14
|
+
}
|
|
15
|
+
render() {
|
|
16
|
+
return c`<svg width="${this._svgWidth}" height="${this._svgHeight}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--aiFilled"><path d="M5.67 3.178A2.087 2.087 0 0 1 3.818 1.33L3.78 1h-.564l-.038.33A2.087 2.087 0 0 1 1.33 3.182L1 3.22v.564l.33.038A2.08 2.08 0 0 1 3.178 5.67l.038.33h.564l.038-.33A2.08 2.08 0 0 1 5.67 3.822L6 3.784V3.22l-.33-.038v-.004Z"></path><path d="M14.289 8.531a4.821 4.821 0 0 1-4.279-4.27L9.922 3.5H8.62l-.088.761a4.821 4.821 0 0 1-4.27 4.279l-.761.088V9.93l.761.088a4.804 4.804 0 0 1 4.27 4.27l.088.761h1.303l.088-.761a4.805 4.805 0 0 1 4.279-4.27l.761-.088V8.628l-.761-.088v-.009Z"></path></svg>`;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
p([
|
|
20
|
+
s({ type: String, reflect: !0 })
|
|
21
|
+
], r.prototype, "size");
|
|
22
|
+
p([
|
|
23
|
+
s({ type: String, reflect: !0 })
|
|
24
|
+
], r.prototype, "class");
|
|
25
|
+
a(d, r);
|
|
26
|
+
export {
|
|
27
|
+
r as IconAiFilled
|
|
28
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { LargeIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-ai-filled-large";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-ai-filled-large
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconAiFilledLarge extends PieIconComponent {
|
|
9
|
+
size: LargeIconSize;
|
|
10
|
+
class: string;
|
|
11
|
+
protected name: string;
|
|
12
|
+
render(): TemplateResult;
|
|
13
|
+
}
|
|
14
|
+
declare global {
|
|
15
|
+
interface HTMLElementTagNameMap {
|
|
16
|
+
[componentSelector]: IconAiFilledLarge;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=IconAiFilledLarge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconAiFilledLarge.d.ts","sourceRoot":"","sources":["../icons/IconAiFilledLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAGb,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAEzD,QAAA,MAAM,iBAAiB,yBAAyB,CAAC;AAEjD;;GAEG;AACH,qBAAa,iBAAkB,SAAQ,gBAAgB;IAE5C,IAAI,EAAE,aAAa,CAAM;IAIzB,KAAK,SAAwC;IAEpD,SAAS,CAAC,IAAI,SAAuB;IAErC,MAAM,IAAI,cAAc;CAG3B;AAID,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;KAC1C;CACJ"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { html as p } from "lit";
|
|
2
|
+
import { defineCustomElement as c } from "@justeattakeaway/pie-webc-core";
|
|
3
|
+
import { property as s } from "lit/decorators.js";
|
|
4
|
+
import { PieIconComponent as h } from "./PieIconComponent.js";
|
|
5
|
+
var m = Object.defineProperty, a = (t, l, o, d) => {
|
|
6
|
+
for (var e = void 0, r = t.length - 1, n; r >= 0; r--)
|
|
7
|
+
(n = t[r]) && (e = n(l, o, e) || e);
|
|
8
|
+
return e && m(l, o, e), e;
|
|
9
|
+
};
|
|
10
|
+
const f = "icon-ai-filled-large";
|
|
11
|
+
class i extends h {
|
|
12
|
+
constructor() {
|
|
13
|
+
super(...arguments), this.size = 32, this.class = "c-pieIcon c-pieIcon--aiFilledLarge", this.name = "IconAiFilledLarge";
|
|
14
|
+
}
|
|
15
|
+
render() {
|
|
16
|
+
return p`<svg width="${this._svgWidth}" height="${this._svgHeight}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--aiFilledLarge"><path d="m8.037 3 .066.617a4.066 4.066 0 0 0 3.613 3.613l.617.067v.74l-.617.066a4.066 4.066 0 0 0-3.613 3.613l-.066.617h-.74l-.067-.617a4.066 4.066 0 0 0-3.613-3.613L3 8.037v-.74l.617-.067A4.066 4.066 0 0 0 7.23 3.617L7.297 3h.74Z"></path><path d="m18.856 7 .158 1.453a9.571 9.571 0 0 0 8.505 8.505l1.452.157v1.741l-1.452.158a9.571 9.571 0 0 0-8.505 8.505l-.158 1.452h-1.741l-.157-1.452a9.572 9.572 0 0 0-8.505-8.505L7 18.856v-1.741l1.453-.157a9.572 9.572 0 0 0 8.505-8.505L17.114 7h1.741Z"></path></svg>`;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
a([
|
|
20
|
+
s({ type: String, reflect: !0 })
|
|
21
|
+
], i.prototype, "size");
|
|
22
|
+
a([
|
|
23
|
+
s({ type: String, reflect: !0 })
|
|
24
|
+
], i.prototype, "class");
|
|
25
|
+
c(f, i);
|
|
26
|
+
export {
|
|
27
|
+
i as IconAiFilledLarge
|
|
28
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { LargeIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-ai-large";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-ai-large
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconAiLarge extends PieIconComponent {
|
|
9
|
+
size: LargeIconSize;
|
|
10
|
+
class: string;
|
|
11
|
+
protected name: string;
|
|
12
|
+
render(): TemplateResult;
|
|
13
|
+
}
|
|
14
|
+
declare global {
|
|
15
|
+
interface HTMLElementTagNameMap {
|
|
16
|
+
[componentSelector]: IconAiLarge;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=IconAiLarge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconAiLarge.d.ts","sourceRoot":"","sources":["../icons/IconAiLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAGb,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAEzD,QAAA,MAAM,iBAAiB,kBAAkB,CAAC;AAE1C;;GAEG;AACH,qBAAa,WAAY,SAAQ,gBAAgB;IAEtC,IAAI,EAAE,aAAa,CAAM;IAIzB,KAAK,SAAkC;IAE9C,SAAS,CAAC,IAAI,SAAiB;IAE/B,MAAM,IAAI,cAAc;CAG3B;AAID,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,WAAW,CAAC;KACpC;CACJ"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { html as p } from "lit";
|
|
2
|
+
import { defineCustomElement as c } from "@justeattakeaway/pie-webc-core";
|
|
3
|
+
import { property as a } from "lit/decorators.js";
|
|
4
|
+
import { PieIconComponent as h } from "./PieIconComponent.js";
|
|
5
|
+
var m = Object.defineProperty, s = (t, i, l, g) => {
|
|
6
|
+
for (var e = void 0, r = t.length - 1, n; r >= 0; r--)
|
|
7
|
+
(n = t[r]) && (e = n(i, l, e) || e);
|
|
8
|
+
return e && m(i, l, e), e;
|
|
9
|
+
};
|
|
10
|
+
const f = "icon-ai-large";
|
|
11
|
+
class o extends h {
|
|
12
|
+
constructor() {
|
|
13
|
+
super(...arguments), this.size = 32, this.class = "c-pieIcon c-pieIcon--aiLarge", this.name = "IconAiLarge";
|
|
14
|
+
}
|
|
15
|
+
render() {
|
|
16
|
+
return p`<svg width="${this._svgWidth}" height="${this._svgHeight}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--aiLarge"><path d="m8.037 3 .066.617a4.066 4.066 0 0 0 3.613 3.613l.617.067v.74l-.617.066a4.066 4.066 0 0 0-3.613 3.613l-.066.617h-.74l-.067-.617a4.066 4.066 0 0 0-3.613-3.613L3 8.037v-.74l.617-.067A4.066 4.066 0 0 0 7.23 3.617L7.297 3h.74Z"></path><path fill-rule="evenodd" d="m18.856 7 .158 1.453a9.571 9.571 0 0 0 8.505 8.505l1.452.157v1.741l-1.452.158a9.571 9.571 0 0 0-8.505 8.505l-.158 1.452h-1.741l-.157-1.452a9.572 9.572 0 0 0-8.505-8.505L7 18.856v-1.741l1.453-.157a9.572 9.572 0 0 0 8.505-8.505L17.114 7h1.741Zm-7.324 10.99a11.279 11.279 0 0 1 6.45 6.449 11.279 11.279 0 0 1 6.448-6.449 11.279 11.279 0 0 1-6.449-6.449 11.279 11.279 0 0 1-6.449 6.449Z" clip-rule="evenodd"></path></svg>`;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
s([
|
|
20
|
+
a({ type: String, reflect: !0 })
|
|
21
|
+
], o.prototype, "size");
|
|
22
|
+
s([
|
|
23
|
+
a({ type: String, reflect: !0 })
|
|
24
|
+
], o.prototype, "class");
|
|
25
|
+
c(f, o);
|
|
26
|
+
export {
|
|
27
|
+
o as IconAiLarge
|
|
28
|
+
};
|
package/dist/IconCheck.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { html as
|
|
2
|
-
import { defineCustomElement as
|
|
1
|
+
import { html as h } from "lit";
|
|
2
|
+
import { defineCustomElement as l } from "@justeattakeaway/pie-webc-core";
|
|
3
3
|
import { property as i } from "lit/decorators.js";
|
|
4
|
-
import { PieIconComponent as
|
|
5
|
-
var
|
|
4
|
+
import { PieIconComponent as f } from "./PieIconComponent.js";
|
|
5
|
+
var m = Object.defineProperty, p = (t, c, n, u) => {
|
|
6
6
|
for (var e = void 0, r = t.length - 1, s; r >= 0; r--)
|
|
7
7
|
(s = t[r]) && (e = s(c, n, e) || e);
|
|
8
|
-
return e &&
|
|
8
|
+
return e && m(c, n, e), e;
|
|
9
9
|
};
|
|
10
|
-
const
|
|
11
|
-
class o extends
|
|
10
|
+
const a = "icon-check";
|
|
11
|
+
class o extends f {
|
|
12
12
|
constructor() {
|
|
13
13
|
super(...arguments), this.size = "xs", this.class = "c-pieIcon c-pieIcon--check", this.name = "IconCheck";
|
|
14
14
|
}
|
|
15
15
|
render() {
|
|
16
|
-
return
|
|
16
|
+
return h`<svg width="${this._svgWidth}" height="${this._svgHeight}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--check"><path d="M5.865 12.489a1.217 1.217 0 0 1-.875-.385L1.875 8.656l.98-.875 3.028 3.369 7.253-7.822.963.875-7.35 7.875c-.113.12-.248.215-.398.282-.15.066-.322.127-.486.129Z"></path></svg>`;
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
p([
|
|
@@ -22,7 +22,7 @@ p([
|
|
|
22
22
|
p([
|
|
23
23
|
i({ type: String, reflect: !0 })
|
|
24
24
|
], o.prototype, "class");
|
|
25
|
-
|
|
25
|
+
l(a, o);
|
|
26
26
|
export {
|
|
27
27
|
o as IconCheck
|
|
28
28
|
};
|
package/dist/IconCheckLarge.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { html as l } from "lit";
|
|
2
|
-
import { defineCustomElement as
|
|
2
|
+
import { defineCustomElement as h } from "@justeattakeaway/pie-webc-core";
|
|
3
3
|
import { property as i } from "lit/decorators.js";
|
|
4
|
-
import { PieIconComponent as
|
|
5
|
-
var
|
|
4
|
+
import { PieIconComponent as a } from "./PieIconComponent.js";
|
|
5
|
+
var m = Object.defineProperty, p = (t, c, n, g) => {
|
|
6
6
|
for (var e = void 0, r = t.length - 1, s; r >= 0; r--)
|
|
7
7
|
(s = t[r]) && (e = s(c, n, e) || e);
|
|
8
|
-
return e &&
|
|
8
|
+
return e && m(c, n, e), e;
|
|
9
9
|
};
|
|
10
|
-
const
|
|
11
|
-
class o extends
|
|
10
|
+
const f = "icon-check-large";
|
|
11
|
+
class o extends a {
|
|
12
12
|
constructor() {
|
|
13
13
|
super(...arguments), this.size = 32, this.class = "c-pieIcon c-pieIcon--checkLarge", this.name = "IconCheckLarge";
|
|
14
14
|
}
|
|
15
15
|
render() {
|
|
16
|
-
return l`<svg width="${this._svgWidth}" height="${this._svgHeight}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--checkLarge"><path d="
|
|
16
|
+
return l`<svg width="${this._svgWidth}" height="${this._svgHeight}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--checkLarge"><path d="m26.089 7.241-14.753 15.68-.105.114-1.163-1.313-4.13-4.655-1.313 1.164 5.303 5.915c.166.184.376.333.603.429.228.096.473.192.726.192.254 0 .5-.052.727-.157.227-.105.437-.245.612-.429l14.779-15.75-1.286-1.19Z"></path></svg>`;
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
p([
|
|
@@ -22,7 +22,7 @@ p([
|
|
|
22
22
|
p([
|
|
23
23
|
i({ type: String, reflect: !0 })
|
|
24
24
|
], o.prototype, "class");
|
|
25
|
-
|
|
25
|
+
h(f, o);
|
|
26
26
|
export {
|
|
27
27
|
o as IconCheckLarge
|
|
28
28
|
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-double-check";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-double-check
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconDoubleCheck extends PieIconComponent {
|
|
9
|
+
size: RegularIconSize;
|
|
10
|
+
class: string;
|
|
11
|
+
protected name: string;
|
|
12
|
+
render(): TemplateResult;
|
|
13
|
+
}
|
|
14
|
+
declare global {
|
|
15
|
+
interface HTMLElementTagNameMap {
|
|
16
|
+
[componentSelector]: IconDoubleCheck;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=IconDoubleCheck.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconDoubleCheck.d.ts","sourceRoot":"","sources":["../icons/IconDoubleCheck.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAGb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAEzD,QAAA,MAAM,iBAAiB,sBAAsB,CAAC;AAE9C;;GAEG;AACH,qBAAa,eAAgB,SAAQ,gBAAgB;IAE1C,IAAI,EAAE,eAAe,CAAQ;IAI7B,KAAK,SAAsC;IAElD,SAAS,CAAC,IAAI,SAAqB;IAEnC,MAAM,IAAI,cAAc;CAG3B;AAID,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,eAAe,CAAC;KACxC;CACJ"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { html as p } from "lit";
|
|
2
|
+
import { defineCustomElement as h } from "@justeattakeaway/pie-webc-core";
|
|
3
|
+
import { property as i } from "lit/decorators.js";
|
|
4
|
+
import { PieIconComponent as d } from "./PieIconComponent.js";
|
|
5
|
+
var m = Object.defineProperty, l = (t, n, c, a) => {
|
|
6
|
+
for (var e = void 0, o = t.length - 1, s; o >= 0; o--)
|
|
7
|
+
(s = t[o]) && (e = s(n, c, e) || e);
|
|
8
|
+
return e && m(n, c, e), e;
|
|
9
|
+
};
|
|
10
|
+
const u = "icon-double-check";
|
|
11
|
+
class r extends d {
|
|
12
|
+
constructor() {
|
|
13
|
+
super(...arguments), this.size = "xs", this.class = "c-pieIcon c-pieIcon--doubleCheck", this.name = "IconDoubleCheck";
|
|
14
|
+
}
|
|
15
|
+
render() {
|
|
16
|
+
return p`<svg width="${this._svgWidth}" height="${this._svgHeight}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--doubleCheck"><path d="m7.843 8.779 3.14-3.386-.962-.893-3.036 3.308.858.97Z"></path><path d="m4.902 10.074-.288.315-2.11-2.38-.98.875 2.188 2.458c.228.245.552.385.884.385.333 0 .656-.14.884-.385l.28-.306-.858-.962Z"></path><path fill-rule="evenodd" d="M7.195 11.342c.226.244.548.384.88.385.33 0 .652-.14.879-.385l5.52-5.95-.962-.892-5.416 5.889-2.109-2.38-.98.875 2.188 2.458Zm.88.385h.004-.01.005Z" clip-rule="evenodd"></path></svg>`;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
l([
|
|
20
|
+
i({ type: String, reflect: !0 })
|
|
21
|
+
], r.prototype, "size");
|
|
22
|
+
l([
|
|
23
|
+
i({ type: String, reflect: !0 })
|
|
24
|
+
], r.prototype, "class");
|
|
25
|
+
h(u, r);
|
|
26
|
+
export {
|
|
27
|
+
r as IconDoubleCheck
|
|
28
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { LargeIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-double-check-large";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-double-check-large
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconDoubleCheckLarge extends PieIconComponent {
|
|
9
|
+
size: LargeIconSize;
|
|
10
|
+
class: string;
|
|
11
|
+
protected name: string;
|
|
12
|
+
render(): TemplateResult;
|
|
13
|
+
}
|
|
14
|
+
declare global {
|
|
15
|
+
interface HTMLElementTagNameMap {
|
|
16
|
+
[componentSelector]: IconDoubleCheckLarge;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=IconDoubleCheckLarge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconDoubleCheckLarge.d.ts","sourceRoot":"","sources":["../icons/IconDoubleCheckLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAGb,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAEzD,QAAA,MAAM,iBAAiB,4BAA4B,CAAC;AAEpD;;GAEG;AACH,qBAAa,oBAAqB,SAAQ,gBAAgB;IAE/C,IAAI,EAAE,aAAa,CAAM;IAIzB,KAAK,SAA2C;IAEvD,SAAS,CAAC,IAAI,SAA0B;IAExC,MAAM,IAAI,cAAc;CAG3B;AAID,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;KAC7C;CACJ"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { html as l } from "lit";
|
|
2
|
+
import { defineCustomElement as a } from "@justeattakeaway/pie-webc-core";
|
|
3
|
+
import { property as s } from "lit/decorators.js";
|
|
4
|
+
import { PieIconComponent as h } from "./PieIconComponent.js";
|
|
5
|
+
var m = Object.defineProperty, i = (t, c, n, d) => {
|
|
6
|
+
for (var e = void 0, r = t.length - 1, p; r >= 0; r--)
|
|
7
|
+
(p = t[r]) && (e = p(c, n, e) || e);
|
|
8
|
+
return e && m(c, n, e), e;
|
|
9
|
+
};
|
|
10
|
+
const u = "icon-double-check-large";
|
|
11
|
+
class o extends h {
|
|
12
|
+
constructor() {
|
|
13
|
+
super(...arguments), this.size = 32, this.class = "c-pieIcon c-pieIcon--doubleCheckLarge", this.name = "IconDoubleCheckLarge";
|
|
14
|
+
}
|
|
15
|
+
render() {
|
|
16
|
+
return l`<svg width="${this._svgWidth}" height="${this._svgHeight}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--doubleCheckLarge"><path d="m25.336 9.875-.004.004-.005-.004h.01Z"></path><path d="m25.332 9.88 1.282 1.185-9.459 10.194a1.821 1.821 0 0 1-1.33.586c-.499 0-.989-.21-1.33-.578L10.75 17.05l1.313-1.164 3.727 4.2.035.044 9.507-10.25Z"></path><path d="m15.318 17.584 6.055-6.519-1.287-1.19-5.932 6.396 1.164 1.313Z"></path><path d="m10.575 20.13.053-.061v.009l.533-.578 1.164 1.313-.42.454a1.822 1.822 0 0 1-1.33.587c-.499 0-.989-.21-1.33-.578L5.5 17.06l1.313-1.164 2.598 2.922 1.164 1.313Z"></path></svg>`;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
i([
|
|
20
|
+
s({ type: String, reflect: !0 })
|
|
21
|
+
], o.prototype, "size");
|
|
22
|
+
i([
|
|
23
|
+
s({ type: String, reflect: !0 })
|
|
24
|
+
], o.prototype, "class");
|
|
25
|
+
a(u, o);
|
|
26
|
+
export {
|
|
27
|
+
o as IconDoubleCheckLarge
|
|
28
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-payment-afterpay";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-payment-afterpay
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconPaymentAfterpay extends PieIconComponent {
|
|
9
|
+
size: RegularIconSize;
|
|
10
|
+
class: string;
|
|
11
|
+
protected name: string;
|
|
12
|
+
render(): TemplateResult;
|
|
13
|
+
}
|
|
14
|
+
declare global {
|
|
15
|
+
interface HTMLElementTagNameMap {
|
|
16
|
+
[componentSelector]: IconPaymentAfterpay;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=IconPaymentAfterpay.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconPaymentAfterpay.d.ts","sourceRoot":"","sources":["../icons/IconPaymentAfterpay.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAGb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAEzD,QAAA,MAAM,iBAAiB,0BAA0B,CAAC;AAElD;;GAEG;AACH,qBAAa,mBAAoB,SAAQ,gBAAgB;IAE9C,IAAI,EAAE,eAAe,CAAQ;IAI7B,KAAK,SAAmC;IAE/C,SAAS,CAAC,IAAI,SAAyB;IAEvC,MAAM,IAAI,cAAc;CAG3B;AAID,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,mBAAmB,CAAC;KAC5C;CACJ"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { html as i } from "lit";
|
|
2
|
+
import { defineCustomElement as o } from "@justeattakeaway/pie-webc-core";
|
|
3
|
+
import { property as r } from "lit/decorators.js";
|
|
4
|
+
import { PieIconComponent as n } from "./PieIconComponent.js";
|
|
5
|
+
var s = Object.defineProperty, v = (t, l, p, m) => {
|
|
6
|
+
for (var a = void 0, e = t.length - 1, c; e >= 0; e--)
|
|
7
|
+
(c = t[e]) && (a = c(l, p, a) || a);
|
|
8
|
+
return a && s(l, p, a), a;
|
|
9
|
+
};
|
|
10
|
+
const f = "icon-payment-afterpay";
|
|
11
|
+
class h extends n {
|
|
12
|
+
constructor() {
|
|
13
|
+
super(...arguments), this.size = "xs", this.class = "c-pieIcon c-pieIcon--afterpay", this.name = "IconPaymentAfterpay";
|
|
14
|
+
}
|
|
15
|
+
render() {
|
|
16
|
+
return i`<svg width="${this._svgWidth}" height="${this._svgHeight}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--afterpay"><path fill="#B2FCE4" d="M20.421 6H3.58c-.419 0-.82.158-1.117.44A1.463 1.463 0 0 0 2 7.5v9c0 .398.166.78.462 1.06.297.282.698.44 1.117.44H20.42c.419 0 .82-.158 1.117-.44.296-.28.462-.662.462-1.06v-9c0-.398-.166-.78-.462-1.06A1.622 1.622 0 0 0 20.42 6Z"></path><path fill="#000" d="m21.01 11-.557-.305-.558-.32a.586.586 0 0 0-.562.002.55.55 0 0 0-.205.196.516.516 0 0 0-.075.267v.065a.11.11 0 0 0 .014.054c.009.016.022.03.038.041l.263.14a.108.108 0 0 0 .083.01.106.106 0 0 0 .065-.05.09.09 0 0 0 0-.05v-.16a.1.1 0 0 1 .028-.076.11.11 0 0 1 .077-.034h.063l.526.285.527.28a.11.11 0 0 1 .05.068.106.106 0 0 1-.013.082l-.037.035-.526.28-.527.285a.115.115 0 0 1-.123-.005.106.106 0 0 1-.03-.03.113.113 0 0 1 0-.06v-.08a.515.515 0 0 0-.074-.267.55.55 0 0 0-.206-.196.584.584 0 0 0-.562-.002l-.568.31-.558.305a.545.545 0 0 0-.262.324.517.517 0 0 0 .262.606l.558.305.569.305a.586.586 0 0 0 .561-.002.55.55 0 0 0 .206-.196.515.515 0 0 0 .075-.267v-.065a.112.112 0 0 0-.053-.095l-.263-.145a.109.109 0 0 0-.148.04.111.111 0 0 0 0 .055v.16a.1.1 0 0 1-.028.076.11.11 0 0 1-.077.034.15.15 0 0 1-.063 0l-.526-.285-.527-.28a.113.113 0 0 1-.058-.06.105.105 0 0 1 0-.08l.037-.035.527-.28.526-.285a.114.114 0 0 1 .153.035c.005.02.005.04 0 .06v.08c0 .094.025.186.075.267a.55.55 0 0 0 .205.196.586.586 0 0 0 .562.002l.568-.31.558-.305a.55.55 0 0 0 .16-.142.516.516 0 0 0 .098-.398.515.515 0 0 0-.079-.195.508.508 0 0 0-.168-.19Z"></path><path fill="#000" d="m17.337 11.09-1.31 2.57H15.5l.49-.96-.769-1.61h.558l.495 1.075.526-1.075h.537Z"></path><path fill="#000" d="M4.237 12a.484.484 0 0 0-.101-.27.524.524 0 0 0-.242-.174.551.551 0 0 0-.564.124.477.477 0 0 0-.103.542c.04.09.108.166.194.22a.546.546 0 0 0 .662-.063.488.488 0 0 0 .154-.354V12Zm0 .915v-.24a.78.78 0 0 1-.273.2.82.82 0 0 1-.338.07.984.984 0 0 1-.359-.076.944.944 0 0 1-.3-.2.89.89 0 0 1-.198-.295.856.856 0 0 1-.064-.344V12a.869.869 0 0 1 .059-.351.904.904 0 0 1 .196-.303.956.956 0 0 1 .302-.209.998.998 0 0 1 .364-.082c.115 0 .228.023.332.069a.77.77 0 0 1 .268.196v-.23h.469v1.825h-.458Z"></path><path fill="#000" d="M7.01 12.5c-.168 0-.21-.06-.21-.21v-.79h.3v-.395h-.3v-.46h-.484v.445h-.632v-.185c0-.15.063-.21.232-.21h.105v-.355h-.226c-.4 0-.59.125-.59.5v.245h-.268v.415h.268v1.43h.48V11.5h.63v.895c0 .375.148.535.527.535h.263v-.43h-.094Z"></path><path fill="#000" d="M8.747 11.835a.43.43 0 0 0-.162-.276.474.474 0 0 0-.317-.099.485.485 0 0 0-.317.1.44.44 0 0 0-.167.275h.963Zm-.958.285a.447.447 0 0 0 .157.308c.093.08.214.121.338.117a.55.55 0 0 0 .259-.061.516.516 0 0 0 .194-.174h.495a.899.899 0 0 1-.363.476.979.979 0 0 1-.595.159.98.98 0 0 1-.688-.219.885.885 0 0 1-.323-.616V12c0-.25.105-.491.292-.668.186-.177.44-.277.703-.277.264 0 .517.1.703.277a.922.922 0 0 1 .292.668.423.423 0 0 1 0 .115l-1.464.005Z"></path><path fill="#000" d="M12.347 12a.489.489 0 0 0-.16-.348.541.541 0 0 0-.74.01.488.488 0 0 0-.152.35c0 .132.055.258.152.352a.54.54 0 0 0 .368.148.541.541 0 0 0 .371-.14.489.489 0 0 0 .161-.347V12Zm-1.52 1.66v-2.57h.468v.235a.78.78 0 0 1 .273-.2.82.82 0 0 1 .337-.07.983.983 0 0 1 .662.273.89.89 0 0 1 .199.293c.045.11.068.226.066.344V12a.87.87 0 0 1-.255.654.957.957 0 0 1-.303.209 1 1 0 0 1-.363.082.793.793 0 0 1-.321-.061.758.758 0 0 1-.264-.184v.96h-.5Z"></path><path fill="#000" d="M14.537 12a.485.485 0 0 0-.1-.268.524.524 0 0 0-.237-.173.552.552 0 0 0-.56.113.476.476 0 0 0-.12.533c.037.09.1.169.182.225.083.057.18.09.282.095h.027c.14 0 .273-.053.372-.146a.488.488 0 0 0 .154-.354V12Zm0 .915v-.24a.763.763 0 0 1-.27.2.803.803 0 0 1-.335.07.984.984 0 0 1-.36-.074.945.945 0 0 1-.302-.199.856.856 0 0 1-.265-.637V12a.868.868 0 0 1 .059-.351.903.903 0 0 1 .196-.303.956.956 0 0 1 .302-.209.998.998 0 0 1 .364-.082c.114 0 .226.023.33.069a.76.76 0 0 1 .265.196v-.23h.474v1.825h-.458Z"></path><path fill="#000" d="M9.974 11.27a.47.47 0 0 1 .178-.16.499.499 0 0 1 .238-.055c.07-.002.14.012.205.04v.47a.629.629 0 0 0-.342-.085.338.338 0 0 0-.205.129.308.308 0 0 0-.059.226v1.08H9.5V11.09h.474v.18Z"></path></svg>`;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
v([
|
|
20
|
+
r({ type: String, reflect: !0 })
|
|
21
|
+
], h.prototype, "size");
|
|
22
|
+
v([
|
|
23
|
+
r({ type: String, reflect: !0 })
|
|
24
|
+
], h.prototype, "class");
|
|
25
|
+
o(f, h);
|
|
26
|
+
export {
|
|
27
|
+
h as IconPaymentAfterpay
|
|
28
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,10 @@ export { IconAccountCreditFilledLarge } from './IconAccountCreditFilledLarge';
|
|
|
2
2
|
export { IconAccountCreditFilled } from './IconAccountCreditFilled';
|
|
3
3
|
export { IconAccountCreditLarge } from './IconAccountCreditLarge';
|
|
4
4
|
export { IconAccountCredit } from './IconAccountCredit';
|
|
5
|
+
export { IconAiFilledLarge } from './IconAiFilledLarge';
|
|
6
|
+
export { IconAiFilled } from './IconAiFilled';
|
|
7
|
+
export { IconAiLarge } from './IconAiLarge';
|
|
8
|
+
export { IconAi } from './IconAi';
|
|
5
9
|
export { IconAlcoholFilledLarge } from './IconAlcoholFilledLarge';
|
|
6
10
|
export { IconAlcoholFilled } from './IconAlcoholFilled';
|
|
7
11
|
export { IconAlcoholLarge } from './IconAlcoholLarge';
|
|
@@ -273,6 +277,8 @@ export { IconDocumentLarge } from './IconDocumentLarge';
|
|
|
273
277
|
export { IconDocument } from './IconDocument';
|
|
274
278
|
export { IconDollarLarge } from './IconDollarLarge';
|
|
275
279
|
export { IconDollar } from './IconDollar';
|
|
280
|
+
export { IconDoubleCheckLarge } from './IconDoubleCheckLarge';
|
|
281
|
+
export { IconDoubleCheck } from './IconDoubleCheck';
|
|
276
282
|
export { IconDownloadLarge } from './IconDownloadLarge';
|
|
277
283
|
export { IconDownload } from './IconDownload';
|
|
278
284
|
export { IconDragLarge } from './IconDragLarge';
|
|
@@ -616,6 +622,7 @@ export { IconPause } from './IconPause';
|
|
|
616
622
|
export { IconPayment10bis } from './IconPayment10bis';
|
|
617
623
|
export { IconPaymentAbn } from './IconPaymentAbn';
|
|
618
624
|
export { IconPaymentAffirm } from './IconPaymentAffirm';
|
|
625
|
+
export { IconPaymentAfterpay } from './IconPaymentAfterpay';
|
|
619
626
|
export { IconPaymentAliPay } from './IconPaymentAliPay';
|
|
620
627
|
export { IconPaymentAlliedIrishBank } from './IconPaymentAlliedIrishBank';
|
|
621
628
|
export { IconPaymentAmazon } from './IconPaymentAmazon';
|