@justeattakeaway/pie-icons-webc 1.16.2 → 1.17.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/IconAppUnlock.d.ts +21 -0
- package/dist/IconAppUnlock.d.ts.map +1 -0
- package/dist/IconAppUnlock.js +29 -0
- package/dist/IconAppUnlockLarge.d.ts +21 -0
- package/dist/IconAppUnlockLarge.d.ts.map +1 -0
- package/dist/IconAppUnlockLarge.js +29 -0
- package/dist/IconCc.d.ts +21 -0
- package/dist/IconCc.d.ts.map +1 -0
- package/dist/IconCc.js +29 -0
- package/dist/IconCcLarge.d.ts +21 -0
- package/dist/IconCcLarge.d.ts.map +1 -0
- package/dist/IconCcLarge.js +29 -0
- package/dist/IconDoNotTouch.d.ts +21 -0
- package/dist/IconDoNotTouch.d.ts.map +1 -0
- package/dist/IconDoNotTouch.js +29 -0
- package/dist/IconDoNotTouchLarge.d.ts +21 -0
- package/dist/IconDoNotTouchLarge.d.ts.map +1 -0
- package/dist/IconDoNotTouchLarge.js +29 -0
- package/dist/IconMicrophoneOff.d.ts +21 -0
- package/dist/IconMicrophoneOff.d.ts.map +1 -0
- package/dist/IconMicrophoneOff.js +29 -0
- package/dist/IconMicrophoneOffLarge.d.ts +21 -0
- package/dist/IconMicrophoneOffLarge.d.ts.map +1 -0
- package/dist/IconMicrophoneOffLarge.js +29 -0
- package/dist/IconRobot.d.ts +21 -0
- package/dist/IconRobot.d.ts.map +1 -0
- package/dist/IconRobot.js +29 -0
- package/dist/IconRobotLarge.d.ts +21 -0
- package/dist/IconRobotLarge.d.ts.map +1 -0
- package/dist/IconRobotLarge.js +29 -0
- package/dist/IconSoundwave.d.ts +21 -0
- package/dist/IconSoundwave.d.ts.map +1 -0
- package/dist/IconSoundwave.js +29 -0
- package/dist/IconSoundwaveLarge.d.ts +21 -0
- package/dist/IconSoundwaveLarge.d.ts.map +1 -0
- package/dist/IconSoundwaveLarge.js +29 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2232 -2208
- package/dist/react/IconAppUnlock.d.ts +3 -0
- package/dist/react/IconAppUnlock.d.ts.map +1 -0
- package/dist/react/IconAppUnlock.js +13 -0
- package/dist/react/IconAppUnlockLarge.d.ts +3 -0
- package/dist/react/IconAppUnlockLarge.d.ts.map +1 -0
- package/dist/react/IconAppUnlockLarge.js +13 -0
- package/dist/react/IconCc.d.ts +3 -0
- package/dist/react/IconCc.d.ts.map +1 -0
- package/dist/react/IconCc.js +13 -0
- package/dist/react/IconCcLarge.d.ts +3 -0
- package/dist/react/IconCcLarge.d.ts.map +1 -0
- package/dist/react/IconCcLarge.js +13 -0
- package/dist/react/IconDoNotTouch.d.ts +3 -0
- package/dist/react/IconDoNotTouch.d.ts.map +1 -0
- package/dist/react/IconDoNotTouch.js +13 -0
- package/dist/react/IconDoNotTouchLarge.d.ts +3 -0
- package/dist/react/IconDoNotTouchLarge.d.ts.map +1 -0
- package/dist/react/IconDoNotTouchLarge.js +13 -0
- package/dist/react/IconMicrophoneOff.d.ts +3 -0
- package/dist/react/IconMicrophoneOff.d.ts.map +1 -0
- package/dist/react/IconMicrophoneOff.js +13 -0
- package/dist/react/IconMicrophoneOffLarge.d.ts +3 -0
- package/dist/react/IconMicrophoneOffLarge.d.ts.map +1 -0
- package/dist/react/IconMicrophoneOffLarge.js +13 -0
- package/dist/react/IconRobot.d.ts +3 -0
- package/dist/react/IconRobot.d.ts.map +1 -0
- package/dist/react/IconRobot.js +13 -0
- package/dist/react/IconRobotLarge.d.ts +3 -0
- package/dist/react/IconRobotLarge.d.ts.map +1 -0
- package/dist/react/IconRobotLarge.js +13 -0
- package/dist/react/IconSoundwave.d.ts +3 -0
- package/dist/react/IconSoundwave.d.ts.map +1 -0
- package/dist/react/IconSoundwave.js +13 -0
- package/dist/react/IconSoundwaveLarge.d.ts +3 -0
- package/dist/react/IconSoundwaveLarge.d.ts.map +1 -0
- package/dist/react/IconSoundwaveLarge.js +13 -0
- package/dist/react/index.d.ts +12 -0
- package/dist/react/index.d.ts.map +1 -1
- package/dist/react/index.js +2232 -2208
- package/package.json +2 -2
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-app-unlock";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-app-unlock
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconAppUnlock extends PieIconComponent {
|
|
9
|
+
size: RegularIconSize;
|
|
10
|
+
protected defaultClasses: string;
|
|
11
|
+
class: string;
|
|
12
|
+
protected name: string;
|
|
13
|
+
render(): TemplateResult;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
[componentSelector]: IconAppUnlock;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=IconAppUnlock.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconAppUnlock.d.ts","sourceRoot":"","sources":["../icons/IconAppUnlock.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,oBAAoB,CAAC;AAE5C;;GAEG;AACH,qBACa,aAAc,SAAQ,gBAAgB;IAExC,IAAI,EAAE,eAAe,CAAQ;IAEpC,SAAS,CAAC,cAAc,SAAoC;IAIrD,KAAK,SAAoC;IAEhD,SAAS,CAAC,IAAI,SAAmB;IAEjC,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,aAAa,CAAC;KACtC;CACJ"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { html as a } from "lit";
|
|
2
|
+
import { property as n } from "lit/decorators.js";
|
|
3
|
+
import { PieIconComponent as h } from "./PieIconComponent.js";
|
|
4
|
+
import { safeCustomElement as v } from "@justeattakeaway/pie-webc-core";
|
|
5
|
+
var f = Object.defineProperty, m = Object.getOwnPropertyDescriptor, s = (i, t, c, o) => {
|
|
6
|
+
for (var e = o > 1 ? void 0 : o ? m(t, c) : t, r = i.length - 1, l; r >= 0; r--)
|
|
7
|
+
(l = i[r]) && (e = (o ? l(t, c, e) : l(e)) || e);
|
|
8
|
+
return o && e && f(t, c, e), e;
|
|
9
|
+
};
|
|
10
|
+
let p = class extends h {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments), this.size = "xs", this.defaultClasses = "c-pieIcon c-pieIcon--appUnlock", this.class = "c-pieIcon c-pieIcon--appUnlock", this.name = "IconAppUnlock";
|
|
13
|
+
}
|
|
14
|
+
render() {
|
|
15
|
+
return a`<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--appUnlock"><path fill-opacity=".76" d="M3.406 2.75v10.5c0 .123.096.219.219.219h1.75v1.312h-1.75c-.84 0-1.531-.691-1.531-1.531V2.75c0-.84.691-1.531 1.531-1.531h7c.84 0 1.531.691 1.531 1.531V4.5h-1.312V2.75a.217.217 0 0 0-.219-.219H8.901l-.428.954H5.777l-.428-.954H3.625a.217.217 0 0 0-.219.219Z"></path><path fill-opacity=".76" fill-rule="evenodd" d="M10.302 5.848c.806 0 1.501.37 1.973.934l-.005.004.005.006-1.007.841a1.245 1.245 0 0 0-.966-.464c-.444 0-.836.232-1.064.594l-.019.029a1.232 1.232 0 0 0-.177.637v.14h4.881v4.025l-.586.394a5.398 5.398 0 0 1-3.027.901c-.403 0-1.462-.053-2.52-.595a5.755 5.755 0 0 1-.516-.306l-.578-.394V8.569h1.033v-.14a2.546 2.546 0 0 1 .356-1.305l.004-.007.02-.033c.004-.008.018-.031.04-.06a2.563 2.563 0 0 1 2.153-1.176ZM8.009 9.89v2.021c.122.079.245.158.376.219a4.556 4.556 0 0 0 1.925.455 4.136 4.136 0 0 0 2.3-.683V9.89H8.01Z" clip-rule="evenodd"></path></svg>`;
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
s([
|
|
19
|
+
n({ type: String, reflect: !0 })
|
|
20
|
+
], p.prototype, "size", 2);
|
|
21
|
+
s([
|
|
22
|
+
n({ type: String, reflect: !0 })
|
|
23
|
+
], p.prototype, "class", 2);
|
|
24
|
+
p = s([
|
|
25
|
+
v("icon-app-unlock")
|
|
26
|
+
], p);
|
|
27
|
+
export {
|
|
28
|
+
p as IconAppUnlock
|
|
29
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { LargeIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-app-unlock-large";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-app-unlock-large
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconAppUnlockLarge extends PieIconComponent {
|
|
9
|
+
size: LargeIconSize;
|
|
10
|
+
protected defaultClasses: string;
|
|
11
|
+
class: string;
|
|
12
|
+
protected name: string;
|
|
13
|
+
render(): TemplateResult;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
[componentSelector]: IconAppUnlockLarge;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=IconAppUnlockLarge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconAppUnlockLarge.d.ts","sourceRoot":"","sources":["../icons/IconAppUnlockLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,0BAA0B,CAAC;AAElD;;GAEG;AACH,qBACa,kBAAmB,SAAQ,gBAAgB;IAE7C,IAAI,EAAE,aAAa,CAAM;IAEhC,SAAS,CAAC,cAAc,SAAyC;IAI1D,KAAK,SAAyC;IAErD,SAAS,CAAC,IAAI,SAAwB;IAEtC,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,kBAAkB,CAAC;KAC3C;CACJ"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { html as n } from "lit";
|
|
2
|
+
import { property as i } from "lit/decorators.js";
|
|
3
|
+
import { PieIconComponent as h } from "./PieIconComponent.js";
|
|
4
|
+
import { safeCustomElement as v } from "@justeattakeaway/pie-webc-core";
|
|
5
|
+
var f = Object.defineProperty, g = Object.getOwnPropertyDescriptor, s = (a, t, p, r) => {
|
|
6
|
+
for (var e = r > 1 ? void 0 : r ? g(t, p) : t, l = a.length - 1, c; l >= 0; l--)
|
|
7
|
+
(c = a[l]) && (e = (r ? c(t, p, e) : c(e)) || e);
|
|
8
|
+
return r && e && f(t, p, e), e;
|
|
9
|
+
};
|
|
10
|
+
let o = class extends h {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments), this.size = 32, this.defaultClasses = "c-pieIcon c-pieIcon--appUnlockLarge", this.class = "c-pieIcon c-pieIcon--appUnlockLarge", this.name = "IconAppUnlockLarge";
|
|
13
|
+
}
|
|
14
|
+
render() {
|
|
15
|
+
return n`<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--appUnlockLarge"><path fill-opacity=".76" d="M19.955 2.875A2.633 2.633 0 0 1 22.58 5.5v1.155h.008v7.105h-1.75V7.25h-.008V5.5a.878.878 0 0 0-.875-.875h-3.22l-.56 1.418h-4.682l-.56-1.418H7.715a.878.878 0 0 0-.875.875v21c0 .481.394.875.875.875h8.478v1.75H7.714A2.633 2.633 0 0 1 5.089 26.5v-21a2.633 2.633 0 0 1 2.625-2.625h12.241Z"></path><path fill-opacity=".76" fill-rule="evenodd" d="M22.868 15.545c1.204 0 2.277.557 2.984 1.41l-.005.004.004.004.152.191c.048.064.094.129.14.194l-1.44.997a3.601 3.601 0 0 0-.197-.262l-.001-.002a2.125 2.125 0 0 0-1.637-.777c-.76 0-1.432.401-1.814 1.008l-.022.037a2.072 2.072 0 0 0-.316 1.099v.542h7.534v5.862l-.778.516c-.928.622-2.486 1.366-4.594 1.366-.613 0-2.214-.088-3.824-.91-.28-.14-.543-.29-.78-.456l-.77-.516V19.99h1.462v-.542c0-.053.004-.106.006-.158.025-.662.22-1.266.528-1.793a.9.9 0 0 1 .1-.163 3.891 3.891 0 0 1 3.268-1.789Zm-3.613 6.195v3.177c.192.13.394.244.595.35 1.295.655 2.59.717 3.028.717 1.723 0 2.966-.63 3.622-1.067V21.74h-7.245Z" clip-rule="evenodd"></path></svg>`;
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
s([
|
|
19
|
+
i({ type: String, reflect: !0 })
|
|
20
|
+
], o.prototype, "size", 2);
|
|
21
|
+
s([
|
|
22
|
+
i({ type: String, reflect: !0 })
|
|
23
|
+
], o.prototype, "class", 2);
|
|
24
|
+
o = s([
|
|
25
|
+
v("icon-app-unlock-large")
|
|
26
|
+
], o);
|
|
27
|
+
export {
|
|
28
|
+
o as IconAppUnlockLarge
|
|
29
|
+
};
|
package/dist/IconCc.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-cc";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-cc
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconCc extends PieIconComponent {
|
|
9
|
+
size: RegularIconSize;
|
|
10
|
+
protected defaultClasses: string;
|
|
11
|
+
class: string;
|
|
12
|
+
protected name: string;
|
|
13
|
+
render(): TemplateResult;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
[componentSelector]: IconCc;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=IconCc.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconCc.d.ts","sourceRoot":"","sources":["../icons/IconCc.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,YAAY,CAAC;AAEpC;;GAEG;AACH,qBACa,MAAO,SAAQ,gBAAgB;IAEjC,IAAI,EAAE,eAAe,CAAQ;IAEpC,SAAS,CAAC,cAAc,SAA6B;IAI9C,KAAK,SAA6B;IAEzC,SAAS,CAAC,IAAI,SAAY;IAE1B,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;KAC/B;CACJ"}
|
package/dist/IconCc.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { html as n } from "lit";
|
|
2
|
+
import { property as l } from "lit/decorators.js";
|
|
3
|
+
import { PieIconComponent as h } from "./PieIconComponent.js";
|
|
4
|
+
import { safeCustomElement as f } from "@justeattakeaway/pie-webc-core";
|
|
5
|
+
var m = Object.defineProperty, v = Object.getOwnPropertyDescriptor, a = (i, t, o, e) => {
|
|
6
|
+
for (var c = e > 1 ? void 0 : e ? v(t, o) : t, s = i.length - 1, p; s >= 0; s--)
|
|
7
|
+
(p = i[s]) && (c = (e ? p(t, o, c) : p(c)) || c);
|
|
8
|
+
return e && c && m(t, o, c), c;
|
|
9
|
+
};
|
|
10
|
+
let r = class extends h {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments), this.size = "xs", this.defaultClasses = "c-pieIcon c-pieIcon--cc", this.class = "c-pieIcon c-pieIcon--cc", this.name = "IconCc";
|
|
13
|
+
}
|
|
14
|
+
render() {
|
|
15
|
+
return n`<svg width="${this._svgWidth}" height="${this._svgHeight}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 17" class="c-pieIcon c-pieIcon--cc"><path fill-opacity=".76" d="M6.74 9.892a1.243 1.243 0 0 1-.367.062c-.184 0-.342-.044-.49-.123a.803.803 0 0 1-.342-.341 1.052 1.052 0 0 1 0-.989.912.912 0 0 1 .342-.341c.148-.079.306-.123.49-.123a1.072 1.072 0 0 1 .726.245l.936-.918a2.346 2.346 0 0 0-.77-.49 2.568 2.568 0 0 0-.971-.167c-.333 0-.639.053-.928.167a2.26 2.26 0 0 0-.752.481A2.221 2.221 0 0 0 3.923 9a2.267 2.267 0 0 0 .682 1.645c.21.21.464.367.753.481.288.114.595.167.918.167.377 0 .71-.053.998-.167.289-.114.534-.271.735-.481l-.945-.919c-.096.07-.21.131-.324.166Z"></path><path fill-opacity=".76" d="M9.925 8.16c.149-.079.306-.123.49-.123a1.072 1.072 0 0 1 .726.245l.937-.918a2.346 2.346 0 0 0-.77-.49 2.568 2.568 0 0 0-.972-.167c-.332 0-.638.053-.927.167a2.26 2.26 0 0 0-.753.481A2.221 2.221 0 0 0 7.966 9a2.267 2.267 0 0 0 .682 1.645c.21.21.463.367.752.481.289.114.595.167.919.167.376 0 .709-.053.997-.167.29-.114.534-.271.735-.481l-.945-.919c-.096.07-.21.131-.323.166a1.244 1.244 0 0 1-.368.062c-.184 0-.341-.044-.49-.123a.803.803 0 0 1-.341-.341 1.052 1.052 0 0 1 0-.989.912.912 0 0 1 .341-.341Z"></path><path fill-opacity=".76" d="M13.381 3.811H2.62c-.849 0-1.531.683-1.531 1.531v7.35c0 .84.69 1.532 1.53 1.532h10.763c.84 0 1.532-.691 1.532-1.531v-7.35c0-.84-.692-1.532-1.532-1.532Zm.22 8.882a.217.217 0 0 1-.22.218H2.62a.217.217 0 0 1-.219-.218v-7.35c0-.123.096-.22.219-.22H13.38c.123 0 .22.097.22.22v7.35Z"></path></svg>`;
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
a([
|
|
19
|
+
l({ type: String, reflect: !0 })
|
|
20
|
+
], r.prototype, "size", 2);
|
|
21
|
+
a([
|
|
22
|
+
l({ type: String, reflect: !0 })
|
|
23
|
+
], r.prototype, "class", 2);
|
|
24
|
+
r = a([
|
|
25
|
+
f("icon-cc")
|
|
26
|
+
], r);
|
|
27
|
+
export {
|
|
28
|
+
r as IconCc
|
|
29
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { LargeIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-cc-large";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-cc-large
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconCcLarge extends PieIconComponent {
|
|
9
|
+
size: LargeIconSize;
|
|
10
|
+
protected defaultClasses: string;
|
|
11
|
+
class: string;
|
|
12
|
+
protected name: string;
|
|
13
|
+
render(): TemplateResult;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
[componentSelector]: IconCcLarge;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=IconCcLarge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconCcLarge.d.ts","sourceRoot":"","sources":["../icons/IconCcLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,kBAAkB,CAAC;AAE1C;;GAEG;AACH,qBACa,WAAY,SAAQ,gBAAgB;IAEtC,IAAI,EAAE,aAAa,CAAM;IAEhC,SAAS,CAAC,cAAc,SAAkC;IAInD,KAAK,SAAkC;IAE9C,SAAS,CAAC,IAAI,SAAiB;IAE/B,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,WAAW,CAAC;KACpC;CACJ"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { html as n } from "lit";
|
|
2
|
+
import { property as l } from "lit/decorators.js";
|
|
3
|
+
import { PieIconComponent as h } from "./PieIconComponent.js";
|
|
4
|
+
import { safeCustomElement as f } from "@justeattakeaway/pie-webc-core";
|
|
5
|
+
var g = Object.defineProperty, m = Object.getOwnPropertyDescriptor, p = (i, e, o, t) => {
|
|
6
|
+
for (var c = t > 1 ? void 0 : t ? m(e, o) : e, a = i.length - 1, s; a >= 0; a--)
|
|
7
|
+
(s = i[a]) && (c = (t ? s(e, o, c) : s(c)) || c);
|
|
8
|
+
return t && c && g(e, o, c), c;
|
|
9
|
+
};
|
|
10
|
+
let r = class extends h {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments), this.size = 32, this.defaultClasses = "c-pieIcon c-pieIcon--ccLarge", this.class = "c-pieIcon c-pieIcon--ccLarge", this.name = "IconCcLarge";
|
|
13
|
+
}
|
|
14
|
+
render() {
|
|
15
|
+
return n`<svg width="${this._svgWidth}" height="${this._svgHeight}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 33" class="c-pieIcon c-pieIcon--ccLarge"><path fill-opacity=".76" d="M26.894 6.596H5.115c-1.207 0-2.187.98-2.187 2.188v16.441c0 1.208.98 2.188 2.187 2.188h21.779c1.207 0 2.187-.98 2.187-2.188V8.784c0-1.208-.98-2.188-2.187-2.188Zm.437 18.62a.433.433 0 0 1-.437.438H5.115a.433.433 0 0 1-.437-.438V8.784c0-.245.192-.438.437-.438h21.779c.245 0 .437.193.437.438v16.441-.009Z"></path><path fill-opacity=".76" d="M11.021 14.629c.394-.245.84-.368 1.33-.368.394 0 .762.062 1.103.193.28.105.525.245.735.42l1.426-1.409a4.737 4.737 0 0 0-1.347-.866c-.57-.245-1.234-.368-1.995-.368-.762 0-1.462.132-2.057.385a4.35 4.35 0 0 0-1.53 1.068c-.42.446-.745.971-.972 1.54A4.751 4.751 0 0 0 7.373 17c0 .613.113 1.208.34 1.776.228.57.552 1.085.972 1.54a4.5 4.5 0 0 0 1.531 1.068c.604.254 1.287.385 2.04.385.752 0 1.46-.123 2.03-.368.498-.21.935-.49 1.294-.83l-1.444-1.418c-.21.166-.455.297-.726.393-.341.123-.7.184-1.067.184a2.59 2.59 0 0 1-2.284-1.339 2.812 2.812 0 0 1-.35-1.373c0-.525.122-1.007.359-1.41.236-.402.55-.734.945-.97l.008-.01Z"></path><path fill-opacity=".76" d="M19.938 14.629c.393-.245.84-.368 1.33-.368.393 0 .76.062 1.102.193.28.105.525.245.735.42l1.426-1.409a4.734 4.734 0 0 0-1.347-.866c-.569-.245-1.234-.368-1.995-.368-.761 0-1.461.132-2.056.385a4.349 4.349 0 0 0-1.532 1.068c-.42.446-.743.971-.97 1.54A4.751 4.751 0 0 0 16.288 17c0 .613.114 1.208.341 1.776.228.57.551 1.085.971 1.54a4.5 4.5 0 0 0 1.532 1.068c.603.254 1.286.385 2.038.385.753 0 1.462-.123 2.03-.368.5-.21.937-.49 1.295-.83l-1.443-1.418c-.21.166-.455.297-.727.393-.34.123-.7.184-1.067.184a2.59 2.59 0 0 1-2.284-1.339 2.812 2.812 0 0 1-.35-1.373c0-.525.123-1.007.359-1.41.236-.402.551-.734.945-.97l.009-.01Z"></path></svg>`;
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
p([
|
|
19
|
+
l({ type: String, reflect: !0 })
|
|
20
|
+
], r.prototype, "size", 2);
|
|
21
|
+
p([
|
|
22
|
+
l({ type: String, reflect: !0 })
|
|
23
|
+
], r.prototype, "class", 2);
|
|
24
|
+
r = p([
|
|
25
|
+
f("icon-cc-large")
|
|
26
|
+
], r);
|
|
27
|
+
export {
|
|
28
|
+
r as IconCcLarge
|
|
29
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-do-not-touch";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-do-not-touch
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconDoNotTouch extends PieIconComponent {
|
|
9
|
+
size: RegularIconSize;
|
|
10
|
+
protected defaultClasses: string;
|
|
11
|
+
class: string;
|
|
12
|
+
protected name: string;
|
|
13
|
+
render(): TemplateResult;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
[componentSelector]: IconDoNotTouch;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=IconDoNotTouch.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconDoNotTouch.d.ts","sourceRoot":"","sources":["../icons/IconDoNotTouch.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,sBAAsB,CAAC;AAE9C;;GAEG;AACH,qBACa,cAAe,SAAQ,gBAAgB;IAEzC,IAAI,EAAE,eAAe,CAAQ;IAEpC,SAAS,CAAC,cAAc,SAAqC;IAItD,KAAK,SAAqC;IAEjD,SAAS,CAAC,IAAI,SAAoB;IAElC,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,cAAc,CAAC;KACvC;CACJ"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { html as h } from "lit";
|
|
2
|
+
import { property as n } from "lit/decorators.js";
|
|
3
|
+
import { PieIconComponent as a } from "./PieIconComponent.js";
|
|
4
|
+
import { safeCustomElement as f } from "@justeattakeaway/pie-webc-core";
|
|
5
|
+
var m = Object.defineProperty, u = Object.getOwnPropertyDescriptor, i = (l, o, c, e) => {
|
|
6
|
+
for (var t = e > 1 ? void 0 : e ? u(o, c) : o, s = l.length - 1, p; s >= 0; s--)
|
|
7
|
+
(p = l[s]) && (t = (e ? p(o, c, t) : p(t)) || t);
|
|
8
|
+
return e && t && m(o, c, t), t;
|
|
9
|
+
};
|
|
10
|
+
let r = class extends a {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments), this.size = "xs", this.defaultClasses = "c-pieIcon c-pieIcon--doNotTouch", this.class = "c-pieIcon c-pieIcon--doNotTouch", this.name = "IconDoNotTouch";
|
|
13
|
+
}
|
|
14
|
+
render() {
|
|
15
|
+
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--doNotTouch"><path fill-opacity=".76" d="m11.185 3.879-1.382 1.39a2.138 2.138 0 0 0-1.173-.603l-1.872-.289-1.654-1.303-.814 1.032 1.785 1.409.14.105 2.214.341a.785.785 0 0 1 .437.245L5.41 9.68 1.954 6.862l-.831 1.015 3.36 2.74-.945.944L1.9 13.206H3.74l.604-.612 1.146-1.147.927-.936.7-.709 2.503-2.52.945-.945 1.199-1.207 2.3-2.31h-1.828l-1.059 1.067.01-.008Z"></path><path fill-opacity=".76" d="m9.628 7.282-2.503 2.52-.7.7.009.01 3.202-3.22-.008-.01Z"></path><path fill-opacity=".76" d="m11.019 7.746-.928.928 2.713 2.747c-.569.21-1.251.114-1.829-.28l-1.33-1.19-1.339.998c-.2.096-.42.13-.63.14l-.62.63-.473.472a2.754 2.754 0 0 0 2.37-.096l.613-.446.595.525c.648.446 1.357.665 2.04.665.77 0 1.504-.28 2.082-.85l.463-.463-3.745-3.797.018.017Z"></path></svg>`;
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
i([
|
|
19
|
+
n({ type: String, reflect: !0 })
|
|
20
|
+
], r.prototype, "size", 2);
|
|
21
|
+
i([
|
|
22
|
+
n({ type: String, reflect: !0 })
|
|
23
|
+
], r.prototype, "class", 2);
|
|
24
|
+
r = i([
|
|
25
|
+
f("icon-do-not-touch")
|
|
26
|
+
], r);
|
|
27
|
+
export {
|
|
28
|
+
r as IconDoNotTouch
|
|
29
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { LargeIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-do-not-touch-large";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-do-not-touch-large
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconDoNotTouchLarge extends PieIconComponent {
|
|
9
|
+
size: LargeIconSize;
|
|
10
|
+
protected defaultClasses: string;
|
|
11
|
+
class: string;
|
|
12
|
+
protected name: string;
|
|
13
|
+
render(): TemplateResult;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
[componentSelector]: IconDoNotTouchLarge;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=IconDoNotTouchLarge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconDoNotTouchLarge.d.ts","sourceRoot":"","sources":["../icons/IconDoNotTouchLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,4BAA4B,CAAC;AAEpD;;GAEG;AACH,qBACa,mBAAoB,SAAQ,gBAAgB;IAE9C,IAAI,EAAE,aAAa,CAAM;IAEhC,SAAS,CAAC,cAAc,SAA0C;IAI3D,KAAK,SAA0C;IAEtD,SAAS,CAAC,IAAI,SAAyB;IAEvC,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,mBAAmB,CAAC;KAC5C;CACJ"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { html as n } from "lit";
|
|
2
|
+
import { property as h } from "lit/decorators.js";
|
|
3
|
+
import { PieIconComponent as a } from "./PieIconComponent.js";
|
|
4
|
+
import { safeCustomElement as f } from "@justeattakeaway/pie-webc-core";
|
|
5
|
+
var m = Object.defineProperty, u = Object.getOwnPropertyDescriptor, p = (i, t, c, o) => {
|
|
6
|
+
for (var e = o > 1 ? void 0 : o ? u(t, c) : t, s = i.length - 1, l; s >= 0; s--)
|
|
7
|
+
(l = i[s]) && (e = (o ? l(t, c, e) : l(e)) || e);
|
|
8
|
+
return o && e && m(t, c, e), e;
|
|
9
|
+
};
|
|
10
|
+
let r = class extends a {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments), this.size = 32, this.defaultClasses = "c-pieIcon c-pieIcon--doNotTouchLarge", this.class = "c-pieIcon c-pieIcon--doNotTouchLarge", this.name = "IconDoNotTouchLarge";
|
|
13
|
+
}
|
|
14
|
+
render() {
|
|
15
|
+
return n`<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--doNotTouchLarge"><path fill-opacity=".76" d="m11.441 21.801 15.68-15.68h.035l.56-.56H25.17l-5.618 5.618a3.621 3.621 0 0 0-1.505-.648l-3.666-.62-4.069-3.518-1.146 1.32 2.188 1.89c-1.514.928-4.087 2.88-5.032 5.846L4.126 13.54 2.98 14.863l6.912 5.976-5.643 5.644h2.52l4.69-4.69-.018.008Zm-3.64-5.075c.569-3.185 3.745-5.24 4.953-5.915l.857.744 4.148.709c.192.035.367.105.534.184l-7.158 7.157-3.325-2.879h-.009Z"></path><path fill-opacity=".76" d="m22.073 16.184.07-1.479-.447-.691-1.338 1.339-.08 1.487 6.126 6.466c-1.418.534-3.037-.603-3.518-.988l-2.082-1.952-3.386 2.153c-1.155.56-2.46.411-3.404-.411l-.228-.193-1.242 1.243.323.28c1.48 1.277 3.58 1.522 5.364.63l2.363-1.497 1.137 1.068c1.103.884 2.511 1.566 3.903 1.566.945 0 1.89-.315 2.721-1.102l.639-.604-6.93-7.315h.009Z"></path></svg>`;
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
p([
|
|
19
|
+
h({ type: String, reflect: !0 })
|
|
20
|
+
], r.prototype, "size", 2);
|
|
21
|
+
p([
|
|
22
|
+
h({ type: String, reflect: !0 })
|
|
23
|
+
], r.prototype, "class", 2);
|
|
24
|
+
r = p([
|
|
25
|
+
f("icon-do-not-touch-large")
|
|
26
|
+
], r);
|
|
27
|
+
export {
|
|
28
|
+
r as IconDoNotTouchLarge
|
|
29
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-microphone-off";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-microphone-off
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconMicrophoneOff extends PieIconComponent {
|
|
9
|
+
size: RegularIconSize;
|
|
10
|
+
protected defaultClasses: string;
|
|
11
|
+
class: string;
|
|
12
|
+
protected name: string;
|
|
13
|
+
render(): TemplateResult;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
[componentSelector]: IconMicrophoneOff;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=IconMicrophoneOff.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconMicrophoneOff.d.ts","sourceRoot":"","sources":["../icons/IconMicrophoneOff.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,wBAAwB,CAAC;AAEhD;;GAEG;AACH,qBACa,iBAAkB,SAAQ,gBAAgB;IAE5C,IAAI,EAAE,eAAe,CAAQ;IAEpC,SAAS,CAAC,cAAc,SAAwC;IAIzD,KAAK,SAAwC;IAEpD,SAAS,CAAC,IAAI,SAAuB;IAErC,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;KAC1C;CACJ"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { html as a } from "lit";
|
|
2
|
+
import { property as h } from "lit/decorators.js";
|
|
3
|
+
import { PieIconComponent as f } from "./PieIconComponent.js";
|
|
4
|
+
import { safeCustomElement as n } from "@justeattakeaway/pie-webc-core";
|
|
5
|
+
var m = Object.defineProperty, v = Object.getOwnPropertyDescriptor, l = (s, e, r, o) => {
|
|
6
|
+
for (var t = o > 1 ? void 0 : o ? v(e, r) : e, i = s.length - 1, c; i >= 0; i--)
|
|
7
|
+
(c = s[i]) && (t = (o ? c(e, r, t) : c(t)) || t);
|
|
8
|
+
return o && t && m(e, r, t), t;
|
|
9
|
+
};
|
|
10
|
+
let p = class extends f {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments), this.size = "xs", this.defaultClasses = "c-pieIcon c-pieIcon--microphoneOff", this.class = "c-pieIcon c-pieIcon--microphoneOff", this.name = "IconMicrophoneOff";
|
|
13
|
+
}
|
|
14
|
+
render() {
|
|
15
|
+
return a`<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--microphoneOff"><path fill-opacity=".76" d="m6.556 8.341-.009-.009-.927.928.009.009.927-.928Z"></path><path fill-opacity=".76" d="m9.969 4.911 1.225-1.234V3.66L9.969 4.894v.017Z"></path><path fill-opacity=".76" d="m4.692 10.196-.918.928.008.008.92-.927-.01-.009Z"></path><path fill-opacity=".76" d="M9.969 7.011A1.972 1.972 0 0 1 8 8.98c-.079 0-.149-.018-.228-.026L6.705 10.02a3.282 3.282 0 0 0 4.568-3.019V5.42L9.96 6.74v.262l.009.01Z"></path><path fill-opacity=".76" d="M12.594 7.011A4.604 4.604 0 0 1 8 11.605a4.552 4.552 0 0 1-2.249-.613l-.954.963H4.78c.752.49 1.627.822 2.564.928v2.003h1.312v-2.003a5.913 5.913 0 0 0 5.25-5.872h-1.312Z"></path><path fill-opacity=".76" d="M6.547 8.332 9.97 4.894l1.225-1.234 2.537-2.555h-1.829l-1.294 1.304a3.273 3.273 0 0 0-2.6-1.304 3.282 3.282 0 0 0-3.28 3.281v2.625c0 .394.078.761.2 1.103l-.988.988c-.324-.63-.534-1.338-.534-2.1H2.094c0 1.13.315 2.18.866 3.08l-1.855 1.873h1.837l.832-.831 1.855-1.855.927-.928-.009-.009Zm-.516-3.946c0-1.085.884-1.969 1.969-1.969.7 0 1.321.377 1.662.928l-3.63 3.657V4.386Z"></path></svg>`;
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
l([
|
|
19
|
+
h({ type: String, reflect: !0 })
|
|
20
|
+
], p.prototype, "size", 2);
|
|
21
|
+
l([
|
|
22
|
+
h({ type: String, reflect: !0 })
|
|
23
|
+
], p.prototype, "class", 2);
|
|
24
|
+
p = l([
|
|
25
|
+
n("icon-microphone-off")
|
|
26
|
+
], p);
|
|
27
|
+
export {
|
|
28
|
+
p as IconMicrophoneOff
|
|
29
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { LargeIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-microphone-off-large";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-microphone-off-large
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconMicrophoneOffLarge extends PieIconComponent {
|
|
9
|
+
size: LargeIconSize;
|
|
10
|
+
protected defaultClasses: string;
|
|
11
|
+
class: string;
|
|
12
|
+
protected name: string;
|
|
13
|
+
render(): TemplateResult;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
[componentSelector]: IconMicrophoneOffLarge;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=IconMicrophoneOffLarge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconMicrophoneOffLarge.d.ts","sourceRoot":"","sources":["../icons/IconMicrophoneOffLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,8BAA8B,CAAC;AAEtD;;GAEG;AACH,qBACa,sBAAuB,SAAQ,gBAAgB;IAEjD,IAAI,EAAE,aAAa,CAAM;IAEhC,SAAS,CAAC,cAAc,SAA6C;IAI9D,KAAK,SAA6C;IAEzD,SAAS,CAAC,IAAI,SAA4B;IAE1C,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,sBAAsB,CAAC;KAC/C;CACJ"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { html as h } from "lit";
|
|
2
|
+
import { property as a } from "lit/decorators.js";
|
|
3
|
+
import { PieIconComponent as n } from "./PieIconComponent.js";
|
|
4
|
+
import { safeCustomElement as f } from "@justeattakeaway/pie-webc-core";
|
|
5
|
+
var m = Object.defineProperty, v = Object.getOwnPropertyDescriptor, s = (l, t, c, o) => {
|
|
6
|
+
for (var e = o > 1 ? void 0 : o ? v(t, c) : t, p = l.length - 1, i; p >= 0; p--)
|
|
7
|
+
(i = l[p]) && (e = (o ? i(t, c, e) : i(e)) || e);
|
|
8
|
+
return o && e && m(t, c, e), e;
|
|
9
|
+
};
|
|
10
|
+
let r = class extends n {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments), this.size = 32, this.defaultClasses = "c-pieIcon c-pieIcon--microphoneOffLarge", this.class = "c-pieIcon c-pieIcon--microphoneOffLarge", this.name = "IconMicrophoneOffLarge";
|
|
13
|
+
}
|
|
14
|
+
render() {
|
|
15
|
+
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 32 32" class="c-pieIcon c-pieIcon--microphoneOffLarge"><path fill-opacity=".76" d="m24.916 6.716 1.164-1.163h-2.476L21.87 7.285a6.134 6.134 0 0 0-5.88-4.41A6.132 6.132 0 0 0 9.866 9v5.25c0 1.409.49 2.704 1.295 3.736L9.298 19.85a8.697 8.697 0 0 1-2.057-5.609h-1.75c0 2.617.98 4.997 2.573 6.834l-2.161 2.161h2.476L24.908 6.707l.008.01ZM11.625 14.25V9A4.377 4.377 0 0 1 16 4.625c2.415 0 4.253 1.864 4.358 4.182l-7.937 7.937a4.297 4.297 0 0 1-.796-2.494Z"></path><path fill-opacity=".76" d="M20.375 14.25A4.377 4.377 0 0 1 16 18.625c-.166 0-.324-.035-.49-.052l-1.47 1.47c.613.21 1.278.323 1.96.323a6.132 6.132 0 0 0 6.125-6.125v-2.284l-1.75 1.75v.543Z"></path><path fill-opacity=".76" d="M26.5 14.25h-1.75c0 4.821-3.929 8.75-8.75 8.75a8.707 8.707 0 0 1-3.955-.954l-1.295 1.295a10.446 10.446 0 0 0 4.366 1.374v2.669h-2.625v1.75h7v-1.75h-2.625v-2.669c5.381-.446 9.625-4.961 9.625-10.456l.009-.009Z"></path></svg>`;
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
s([
|
|
19
|
+
a({ type: String, reflect: !0 })
|
|
20
|
+
], r.prototype, "size", 2);
|
|
21
|
+
s([
|
|
22
|
+
a({ type: String, reflect: !0 })
|
|
23
|
+
], r.prototype, "class", 2);
|
|
24
|
+
r = s([
|
|
25
|
+
f("icon-microphone-off-large")
|
|
26
|
+
], r);
|
|
27
|
+
export {
|
|
28
|
+
r as IconMicrophoneOffLarge
|
|
29
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-robot";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-robot
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconRobot extends PieIconComponent {
|
|
9
|
+
size: RegularIconSize;
|
|
10
|
+
protected defaultClasses: string;
|
|
11
|
+
class: string;
|
|
12
|
+
protected name: string;
|
|
13
|
+
render(): TemplateResult;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
[componentSelector]: IconRobot;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=IconRobot.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconRobot.d.ts","sourceRoot":"","sources":["../icons/IconRobot.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,eAAe,CAAC;AAEvC;;GAEG;AACH,qBACa,SAAU,SAAQ,gBAAgB;IAEpC,IAAI,EAAE,eAAe,CAAQ;IAEpC,SAAS,CAAC,cAAc,SAAgC;IAIjD,KAAK,SAAgC;IAE5C,SAAS,CAAC,IAAI,SAAe;IAE7B,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,SAAS,CAAC;KAClC;CACJ"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { html as n } from "lit";
|
|
2
|
+
import { property as l } from "lit/decorators.js";
|
|
3
|
+
import { PieIconComponent as h } from "./PieIconComponent.js";
|
|
4
|
+
import { safeCustomElement as f } from "@justeattakeaway/pie-webc-core";
|
|
5
|
+
var v = Object.defineProperty, m = Object.getOwnPropertyDescriptor, i = (a, o, c, e) => {
|
|
6
|
+
for (var t = e > 1 ? void 0 : e ? m(o, c) : o, p = a.length - 1, s; p >= 0; p--)
|
|
7
|
+
(s = a[p]) && (t = (e ? s(o, c, t) : s(t)) || t);
|
|
8
|
+
return e && t && v(o, c, t), t;
|
|
9
|
+
};
|
|
10
|
+
let r = class extends h {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments), this.size = "xs", this.defaultClasses = "c-pieIcon c-pieIcon--robot", this.class = "c-pieIcon c-pieIcon--robot", this.name = "IconRobot";
|
|
13
|
+
}
|
|
14
|
+
render() {
|
|
15
|
+
return n`<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--robot"><path fill-opacity=".76" d="M6.106 11.71v.656h3.772v-1.312H6.106v.656Z"></path><path fill-opacity=".76" d="M5.695 10.161a.753.753 0 1 0 0-1.505.753.753 0 0 0 0 1.505Z"></path><path fill-opacity=".76" d="M10.298 10.161a.753.753 0 1 0 0-1.505.753.753 0 0 0 0 1.505Z"></path><path fill-opacity=".76" d="M13.089 7.571A2.398 2.398 0 0 0 10.7 5.305H8.67v-.901A1.723 1.723 0 1 0 6.29 2.81c0 .718.438 1.339 1.068 1.593v.901H5.3A2.4 2.4 0 0 0 2.913 7.58c-1.085.341-1.864 1.33-1.864 2.502a2.64 2.64 0 0 0 1.837 2.503 2.4 2.4 0 0 0 2.398 2.336h5.399a2.405 2.405 0 0 0 2.397-2.327 2.628 2.628 0 0 0 1.864-2.511c0-1.19-.796-2.18-1.873-2.512h.018ZM2.886 11.124a1.326 1.326 0 0 1-.525-1.042c0-.42.21-.804.525-1.04v2.09-.008Zm8.9-3.378v4.769c0 .604-.49 1.094-1.095 1.094H5.293c-.604 0-1.094-.49-1.094-1.094V7.72c0-.604.49-1.094 1.094-1.094h5.398c.604 0 1.094.49 1.094 1.094v.035-.009Zm1.312 3.404V9.015c.332.245.542.63.542 1.067 0 .438-.219.823-.542 1.068Z"></path></svg>`;
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
i([
|
|
19
|
+
l({ type: String, reflect: !0 })
|
|
20
|
+
], r.prototype, "size", 2);
|
|
21
|
+
i([
|
|
22
|
+
l({ type: String, reflect: !0 })
|
|
23
|
+
], r.prototype, "class", 2);
|
|
24
|
+
r = i([
|
|
25
|
+
f("icon-robot")
|
|
26
|
+
], r);
|
|
27
|
+
export {
|
|
28
|
+
r as IconRobot
|
|
29
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { LargeIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-robot-large";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-robot-large
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconRobotLarge extends PieIconComponent {
|
|
9
|
+
size: LargeIconSize;
|
|
10
|
+
protected defaultClasses: string;
|
|
11
|
+
class: string;
|
|
12
|
+
protected name: string;
|
|
13
|
+
render(): TemplateResult;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
[componentSelector]: IconRobotLarge;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=IconRobotLarge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconRobotLarge.d.ts","sourceRoot":"","sources":["../icons/IconRobotLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,qBAAqB,CAAC;AAE7C;;GAEG;AACH,qBACa,cAAe,SAAQ,gBAAgB;IAEzC,IAAI,EAAE,aAAa,CAAM;IAEhC,SAAS,CAAC,cAAc,SAAqC;IAItD,KAAK,SAAqC;IAEjD,SAAS,CAAC,IAAI,SAAoB;IAElC,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,cAAc,CAAC;KACvC;CACJ"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { html as h } from "lit";
|
|
2
|
+
import { property as l } from "lit/decorators.js";
|
|
3
|
+
import { PieIconComponent as n } from "./PieIconComponent.js";
|
|
4
|
+
import { safeCustomElement as v } from "@justeattakeaway/pie-webc-core";
|
|
5
|
+
var f = Object.defineProperty, g = Object.getOwnPropertyDescriptor, s = (i, e, a, o) => {
|
|
6
|
+
for (var t = o > 1 ? void 0 : o ? g(e, a) : e, c = i.length - 1, p; c >= 0; c--)
|
|
7
|
+
(p = i[c]) && (t = (o ? p(e, a, t) : p(t)) || t);
|
|
8
|
+
return o && t && f(e, a, t), t;
|
|
9
|
+
};
|
|
10
|
+
let r = class extends n {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments), this.size = 32, this.defaultClasses = "c-pieIcon c-pieIcon--robotLarge", this.class = "c-pieIcon c-pieIcon--robotLarge", this.name = "IconRobotLarge";
|
|
13
|
+
}
|
|
14
|
+
render() {
|
|
15
|
+
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 32 32" class="c-pieIcon c-pieIcon--robotLarge"><path fill-opacity=".76" d="M24.3 15.431V14.33a2.633 2.633 0 0 0-2.625-2.625H16.88V9.857A2.685 2.685 0 0 0 18.7 7.32a2.696 2.696 0 0 0-5.39 0c0 1.181.761 2.17 1.82 2.537v1.847h-4.795a2.633 2.633 0 0 0-2.625 2.625v1.111a4.163 4.163 0 0 0-3.054 4.008c0 1.916 1.304 3.508 3.054 4.007v1.208a2.633 2.633 0 0 0 2.625 2.625h11.34a2.633 2.633 0 0 0 2.625-2.625v-1.2c1.776-.48 3.098-2.09 3.098-4.015 0-1.925-1.322-3.536-3.098-4.017ZM15.06 7.33c0-.516.42-.945.945-.945.525 0 .945.42.945.945 0 .525-.42.945-.945.945a.941.941 0 0 1-.945-.945ZM6.406 19.448c0-.928.534-1.733 1.304-2.136v4.28a2.415 2.415 0 0 1-1.304-2.136v-.008Zm16.144 5.215a.878.878 0 0 1-.875.875h-11.34a.878.878 0 0 1-.875-.875V14.329c0-.482.394-.875.875-.875h11.34c.481 0 .875.393.875.875v10.334Zm1.75-3.054v-4.323a2.417 2.417 0 0 1 1.348 2.162c0 .944-.552 1.767-1.348 2.16Z"></path><path fill-opacity=".76" d="M12.855 23.035h6.3v-1.75h-6.3v1.75Z"></path><path fill-opacity=".76" d="M13.432 18.328a1.26 1.26 0 1 0-2.52 0 1.26 1.26 0 0 0 2.52 0Z"></path><path fill-opacity=".76" d="M19.846 17.076a1.26 1.26 0 1 0 0 2.52 1.26 1.26 0 0 0 0-2.52Z"></path></svg>`;
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
s([
|
|
19
|
+
l({ type: String, reflect: !0 })
|
|
20
|
+
], r.prototype, "size", 2);
|
|
21
|
+
s([
|
|
22
|
+
l({ type: String, reflect: !0 })
|
|
23
|
+
], r.prototype, "class", 2);
|
|
24
|
+
r = s([
|
|
25
|
+
v("icon-robot-large")
|
|
26
|
+
], r);
|
|
27
|
+
export {
|
|
28
|
+
r as IconRobotLarge
|
|
29
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TemplateResult } from 'lit';
|
|
2
|
+
import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
|
|
3
|
+
import { PieIconComponent } from './PieIconComponent.ts';
|
|
4
|
+
declare const componentSelector = "icon-soundwave";
|
|
5
|
+
/**
|
|
6
|
+
* @tagname icon-soundwave
|
|
7
|
+
*/
|
|
8
|
+
export declare class IconSoundwave extends PieIconComponent {
|
|
9
|
+
size: RegularIconSize;
|
|
10
|
+
protected defaultClasses: string;
|
|
11
|
+
class: string;
|
|
12
|
+
protected name: string;
|
|
13
|
+
render(): TemplateResult;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
[componentSelector]: IconSoundwave;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=IconSoundwave.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconSoundwave.d.ts","sourceRoot":"","sources":["../icons/IconSoundwave.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,mBAAmB,CAAC;AAE3C;;GAEG;AACH,qBACa,aAAc,SAAQ,gBAAgB;IAExC,IAAI,EAAE,eAAe,CAAQ;IAEpC,SAAS,CAAC,cAAc,SAAoC;IAIrD,KAAK,SAAoC;IAEhD,SAAS,CAAC,IAAI,SAAmB;IAEjC,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,aAAa,CAAC;KACtC;CACJ"}
|