@justeattakeaway/pie-icons 4.9.2 → 4.14.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/README.md +11 -6
- package/dist/icons/coins-filled-large.svg +1 -0
- package/dist/icons/coins-filled.svg +1 -0
- package/dist/icons/coins-large.svg +1 -0
- package/dist/icons/coins.svg +1 -0
- package/dist/icons/conversion-rate-filled-large.svg +1 -0
- package/dist/icons/conversion-rate-filled.svg +1 -0
- package/dist/icons/payment/10bis.svg +1 -0
- package/dist/icons/payment/bank-of-ireland-uk.svg +1 -0
- package/dist/icons/payment/bank-of-scotland.svg +1 -0
- package/dist/icons/payment/barclays.svg +1 -0
- package/dist/icons/payment/danske-bank.svg +1 -0
- package/dist/icons/payment/first-direct.svg +1 -0
- package/dist/icons/payment/halifax.svg +1 -0
- package/dist/icons/payment/hsbc.svg +1 -0
- package/dist/icons/payment/lloyds.svg +1 -0
- package/dist/icons/payment/monzo.svg +1 -0
- package/dist/icons/payment/nationwide.svg +1 -0
- package/dist/icons/payment/natwest.svg +1 -0
- package/dist/icons/payment/revolut.svg +1 -0
- package/dist/icons/payment/royal-bank-of-scotland.svg +1 -0
- package/dist/icons/payment/santander.svg +1 -0
- package/dist/icons/payment/starling.svg +1 -0
- package/dist/icons/payment/tesco-bank.svg +1 -0
- package/dist/icons/payment/tsb.svg +1 -0
- package/dist/icons/payment/ulster-bank.svg +1 -0
- package/dist/icons/qr-code-large.svg +1 -0
- package/dist/icons/qr-code.svg +1 -0
- package/dist/icons/restricted-filled-large.svg +1 -0
- package/dist/icons/restricted-filled.svg +1 -0
- package/dist/icons.json +1 -1
- package/dist/pie-icons.js +5 -5
- package/dist/pie-icons.min.js +1 -1
- package/dist/pie-icons.min.js.map +1 -1
- package/package.json +3 -6
package/README.md
CHANGED
|
@@ -24,7 +24,8 @@ You can either use the pie-icons package using native JS, or hook into the compi
|
|
|
24
24
|
|
|
25
25
|
#### 1. Install
|
|
26
26
|
|
|
27
|
-
>
|
|
27
|
+
> [!NOTE]
|
|
28
|
+
> If you intend to use `pie-icons` with a CDN, you can skip this installation step.
|
|
28
29
|
|
|
29
30
|
Install with [npm](https://docs.npmjs.com/getting-started/what-is-npm) or Yarn.
|
|
30
31
|
|
|
@@ -44,7 +45,8 @@ Include `pie-icons.js` or `pie-icons.min.js` with a `<script>` tag:
|
|
|
44
45
|
<script src="path/to/dist/pie-icons.js"></script>
|
|
45
46
|
```
|
|
46
47
|
|
|
47
|
-
>
|
|
48
|
+
> [!NOTE]
|
|
49
|
+
> `pie-icons.js` and `pie-icons.min.js` are located in the `dist` directory of the npm package.
|
|
48
50
|
|
|
49
51
|
Or load the script from a CDN provider:
|
|
50
52
|
|
|
@@ -150,7 +152,8 @@ pieicons.icons.x.toString()
|
|
|
150
152
|
// '<line ... /><line ... />'
|
|
151
153
|
```
|
|
152
154
|
|
|
153
|
-
>
|
|
155
|
+
> [!NOTE]
|
|
156
|
+
> `x` in the above example can be replaced with any valid icon name. Icons with multi-word names (e.g. `arrow-right`) **cannot** be accessed using dot notation (e.g. `pieicons.icons.x`). Instead, use bracket notation (e.g. `pieicons.icons['arrow-right']`).
|
|
154
157
|
|
|
155
158
|
[View Source](https://github.com/justeat/pie-icons/blob/master/src/icons.js)
|
|
156
159
|
|
|
@@ -167,7 +170,8 @@ Returns an SVG string.
|
|
|
167
170
|
| `attrs` (optional) | Object | Key-value pairs in the `attrs` object will be mapped to HTML attributes on the `<svg>` tag (e.g. `{ foo: 'bar' }` maps to `foo="bar"`). All default attributes on the `<svg>` tag can be overridden with the `attrs` object. |
|
|
168
171
|
| `platform` (optional) | String | Defaults to 'default'. Can be changed to allow for specific attrs to be included/excluded. Current valid options are `"reactNative"` |
|
|
169
172
|
|
|
170
|
-
>
|
|
173
|
+
> [!NOTE]
|
|
174
|
+
> You might find these SVG attributes helpful for manipulating icons:
|
|
171
175
|
> * [`color`](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/color)
|
|
172
176
|
> * [`width`](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/width)
|
|
173
177
|
> * [`height`](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/height)
|
|
@@ -204,7 +208,8 @@ Replaces all elements that have a `data-pie-icons` attribute with SVG markup cor
|
|
|
204
208
|
|
|
205
209
|
#### Usage
|
|
206
210
|
|
|
207
|
-
>
|
|
211
|
+
> [!NOTE]
|
|
212
|
+
> `pieicons.replace()` only works in a browser environment.
|
|
208
213
|
|
|
209
214
|
Simple usage:
|
|
210
215
|
```html
|
|
@@ -252,4 +257,4 @@ All attributes on the placeholder element (i.e. `<i>`) will be copied to the `<s
|
|
|
252
257
|
|
|
253
258
|
## Credits
|
|
254
259
|
|
|
255
|
-
The `@justeattakeaway/pie-icons` project owes a great deal to the [Feather SVG Icon Library](https://github.com/feathericons/feather). This project started as a fork of that project for developers at Just Eat to build out icons, while giving us a great platform for the initial build and API that Feather had already built.
|
|
260
|
+
The `@justeattakeaway/pie-icons` project owes a great deal to the [Feather SVG Icon Library](https://github.com/feathericons/feather). This project started as a fork of that project for developers at Just Eat Takeaway.com to build out icons, while giving us a great platform for the initial build and API that Feather had already built.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--coinsFilledLarge"><path d="M15.335 10.076c1.278.551 3.211.875 5.311.875s4.034-.315 5.312-.866c1.46-.63 1.758-1.435 1.758-2.004s-.306-1.347-1.697-1.977a6.829 6.829 0 0 0-.779-.289 9.525 9.525 0 0 0-1.146-.289c-.123-.026-.245-.052-.376-.07a.59.59 0 0 1-.123-.017c-1.872-.307-4.165-.307-6.02.017-.219.035-.429.079-.639.123-.026 0-.043.008-.07.017a8.548 8.548 0 0 0-1.53.481 4.268 4.268 0 0 0-.49.245c-.885.5-1.19 1.077-1.252 1.54-.009.08-.018.15-.018.228 0 .569.307 1.374 1.76 2.004v-.018Z"></path><path d="M26.649 19.745c-.796.332-1.706.586-2.713.761a19.844 19.844 0 0 1-3.298.263c-.097 0-.193-.009-.29-.009v2.275c.097 0 .193.009.29.009 1.04 0 2.073-.079 3-.236a10.856 10.856 0 0 0 2.31-.64c1.453-.63 1.76-1.434 1.76-2.003v-1.006c-.307.21-.657.411-1.068.586h.009Z"></path><path d="M6.209 25.363c.647.27 1.426.49 2.301.638.919.158 1.96.236 3.001.236 1.042 0 2.065-.078 3.002-.236a10.855 10.855 0 0 0 2.31-.639c1.452-.63 1.758-1.434 1.758-2.003v-1.015c-.306.21-.656.411-1.067.586-.788.332-1.698.586-2.704.761a19.919 19.919 0 0 1-3.299.263c-1.155 0-2.257-.088-3.29-.263-1.015-.175-1.916-.428-2.695-.752a5.7 5.7 0 0 1-1.085-.613v1.024c0 .569.307 1.374 1.768 2.012Z"></path><path d="M16.823 13.287c-.613-.262-1.365-.472-2.24-.62a18.132 18.132 0 0 0-3.072-.246c-1.058 0-2.126.088-3.07.245-.885.149-1.637.359-2.24.621-1.462.63-1.768 1.444-1.768 2.004s.306 1.374 1.758 2.004c1.278.551 3.212.875 5.312.875s4.033-.315 5.31-.866c1.462-.63 1.768-1.435 1.768-2.004 0-.805-.62-1.514-1.758-2.004v-.008Z"></path><path d="M11.511 19.92c-2.327 0-4.523-.368-6.01-1.015a6.09 6.09 0 0 1-1.068-.586v.997c0 .569.306 1.374 1.776 2.013.647.271 1.417.49 2.301.639 1.864.314 4.121.314 6.003 0a10.489 10.489 0 0 0 2.31-.648c1.452-.63 1.758-1.435 1.758-2.004v-.997c-.306.21-.656.411-1.067.586-1.488.647-3.675 1.015-6.003 1.015Z"></path><path d="M26.649 15.711c-.788.333-1.698.586-2.704.761a19.842 19.842 0 0 1-3.299.263c-.096 0-.192-.009-.288-.009v2.284c1.128.017 2.275-.053 3.298-.228.875-.148 1.654-.367 2.31-.647 1.444-.621 1.75-1.426 1.75-1.995v-1.015c-.306.21-.656.411-1.067.586Z"></path><path d="M26.649 11.686c-1.488.648-3.675 1.015-6.003 1.015-.455 0-.9-.017-1.338-.043.83.857 1.015 1.776 1.04 2.31 1.13.017 2.276-.053 3.3-.228.875-.149 1.653-.367 2.31-.648 1.452-.63 1.75-1.434 1.75-2.003v-.998c-.307.21-.657.412-1.068.587l.009.008Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--coinsFilled"><path d="M12.786 7.527c-1.18.517-2.922.805-4.786.805-1.864 0-3.605-.297-4.786-.805a4.7 4.7 0 0 1-.866-.49v.954c0 .648.472 1.173 1.4 1.575a8.024 8.024 0 0 0 1.846.508c1.496.254 3.316.254 4.83 0 .7-.123 1.321-.289 1.855-.517.919-.393 1.382-.927 1.382-1.566V7.03a4.516 4.516 0 0 1-.875.49v.008Z"></path><path d="M3.73 6.32c1.024.446 2.581.7 4.27.7 1.689 0 3.238-.254 4.261-.7.928-.403 1.392-.928 1.392-1.575 0-.149-.035-.298-.088-.446 0 0 0-.018-.009-.027a1.815 1.815 0 0 0-.253-.402l-.01-.009a2.808 2.808 0 0 0-.41-.359 4.73 4.73 0 0 0-.604-.333 7.295 7.295 0 0 0-1.208-.375c-.192-.044-.376-.097-.586-.132-1.522-.262-3.421-.262-4.944 0-.708.123-1.312.29-1.793.5a4.263 4.263 0 0 0-.57.305c-.008 0-.025.018-.034.027a2.18 2.18 0 0 0-.42.367 1.488 1.488 0 0 0-.263.411v.018c-.06.14-.087.289-.087.446 0 .648.464 1.173 1.391 1.575l-.035.009Z"></path><path d="M12.786 10.765c-.63.262-1.347.464-2.152.604-.831.14-1.715.21-2.634.21-.919 0-1.802-.07-2.625-.21a10.395 10.395 0 0 1-2.144-.595 4.605 4.605 0 0 1-.883-.499v.971c0 .447.245 1.076 1.39 1.575a8.758 8.758 0 0 0 1.847.517A15.09 15.09 0 0 0 8 13.53c.84 0 1.663-.061 2.415-.192.7-.123 1.321-.29 1.846-.517 1.147-.498 1.392-1.128 1.392-1.575v-.971a4.519 4.519 0 0 1-.875.49h.008Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--coinsLarge"><path d="M27.716 8.073c0-.57-.306-1.374-1.759-2.004-.612-.263-1.365-.473-2.24-.621-1.89-.324-4.252-.324-6.142 0-.884.148-1.636.358-2.24.62-1.453.63-1.759 1.436-1.759 2.005v2.677c.446.044.893.088 1.304.158.149.026.297.06.446.087v-.919h.009c1.277.551 3.211.875 5.311.875.368 0 .735-.017 1.094-.035 1.662-.087 3.167-.385 4.217-.84h.018v1.96c-.018.053-.201.245-.7.464-.516.219-1.181.402-1.908.525-1.137.192-2.476.236-3.745.166.517.665.683 1.33.727 1.794h.306c2.1 0 4.034-.315 5.311-.875h.018v1.96c-.018.052-.202.245-.7.464-.49.21-1.112.376-1.785.498l-.15.027c-.91.148-1.95.21-2.974.192v1.759c.087 0 .175.009.271.009h.053c.516 0 1.023-.018 1.513-.061h.044c.499-.035.971-.097 1.426-.175h.018c.884-.15 1.671-.36 2.292-.63h.018v1.96c-.018.052-.201.245-.7.463-.516.219-1.181.403-1.908.525-.918.149-1.968.21-3 .193v1.75c.095 0 .192.008.288.008 1.05 0 2.065-.078 3.001-.236a10.856 10.856 0 0 0 2.31-.639c1.453-.63 1.759-1.434 1.759-2.003V8.08l-.044-.008Zm-1.899.096s-.035.026-.043.035a.977.977 0 0 1-.14.087c-.027.018-.053.027-.08.044a3.643 3.643 0 0 1-.262.131c-.008 0-.017 0-.026.009-1.05.455-2.774.726-4.611.726-1.838 0-3.57-.271-4.62-.726-.114-.052-.21-.096-.289-.14-.035-.017-.061-.035-.096-.052a.354.354 0 0 0-.079-.044 1.149 1.149 0 0 1-.201-.158c.087-.087.289-.236.665-.402.472-.201 1.102-.376 1.837-.499 1.707-.289 3.85-.289 5.557 0 .726.123 1.365.298 1.837.508.376.166.569.315.665.402-.026.026-.061.061-.105.088l-.009-.01Z"></path><path d="M11.511 26.229c-1.041 0-2.074-.079-3.001-.236-.875-.15-1.654-.368-2.301-.64-1.462-.63-1.768-1.443-1.768-2.012v-8.059c0-.568.306-1.373 1.759-2.003.604-.263 1.356-.473 2.24-.621 1.89-.324 4.252-.324 6.142 0 .875.148 1.637.358 2.24.62 1.453.63 1.76 1.436 1.76 2.005v8.058c0 .569-.307 1.374-1.76 2.004-.656.28-1.426.49-2.31.639-.945.157-1.95.236-3 .236v.009Zm-5.32-2.879s.21.184.7.402c.508.22 1.173.394 1.908.526 1.653.27 3.762.27 5.425 0 .726-.123 1.39-.307 1.907-.525.499-.22.683-.412.709-.464v-1.96h-.026c-1.278.551-3.212.875-5.312.875s-4.033-.315-5.31-.875h-.01v2.021h.01Zm0-4.034s.21.184.7.403c.516.218 1.173.402 1.908.525 1.653.271 3.762.271 5.425 0 .726-.123 1.39-.306 1.907-.525.499-.219.683-.412.709-.464v-1.96h-.026c-1.252.542-3.142.857-5.19.875h-.113c-2.1 0-4.034-.315-5.311-.875H6.19v2.021Zm.7-3.622c1.05.455 2.774.726 4.62.726s3.57-.271 4.611-.726c0 0 .018 0 .018-.009.367-.158.551-.306.639-.385-.088-.088-.29-.236-.665-.402-.473-.21-1.112-.386-1.838-.508-1.706-.289-3.859-.289-5.556 0-.735.122-1.365.297-1.838.499-.376.166-.577.315-.665.402.088.088.28.228.64.385l.034.018Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--coins"><path d="M13.653 4.745c0-.376-.184-.901-.954-1.347-.018-.01-.026-.018-.044-.027a2.754 2.754 0 0 0-.394-.192c-.148-.07-.332-.123-.507-.175-.105-.035-.193-.079-.306-.105a9.066 9.066 0 0 0-.98-.219c-1.523-.262-3.422-.262-4.944 0-.709.123-1.313.289-1.794.499-1.146.499-1.391 1.129-1.391 1.575V11.255c0 .446.245 1.076 1.391 1.575a8.758 8.758 0 0 0 1.846.516 15.09 15.09 0 0 0 2.415.193c.84 0 1.672-.062 2.415-.193.7-.122 1.322-.289 1.847-.516 1.146-.499 1.39-1.129 1.39-1.575V4.754l.01-.009Zm-1.304 3.211s-.088.175-.595.394a7.62 7.62 0 0 1-1.558.429c-1.347.227-3.053.227-4.392 0a7.526 7.526 0 0 1-1.549-.429c-.472-.21-.586-.367-.595-.367V6.276s.044.027.079.044c1.024.446 2.581.7 4.27.7 1.689 0 3.246-.254 4.27-.7a.354.354 0 0 0 .079-.044v1.68h-.01ZM3.783 4.65s.07-.044.105-.07c.026-.018.043-.035.078-.053.08-.043.175-.096.29-.148.384-.167.9-.307 1.495-.412.097-.017.21-.026.315-.035 1.322-.183 2.905-.183 4.183.035.297.053.569.114.822.184.088.026.15.053.228.079.157.052.315.096.437.149.018 0 .027.008.035.017.088.044.167.079.228.114.035.026.07.044.105.061.017.018.044.026.061.044a.858.858 0 0 1 .149.131c-.053.061-.193.201-.578.368-.848.367-2.248.586-3.745.586-1.496 0-2.887-.219-3.745-.595-.428-.184-.56-.341-.595-.35 0 0 .018-.018.027-.035l.043-.044c.018-.017.035-.026.053-.044l.009.018Zm7.962 6.965c-.42.175-.962.323-1.549.428-1.347.228-3.053.228-4.392 0-.595-.104-1.129-.245-1.549-.428-.472-.21-.586-.368-.595-.368V9.54s.053.026.079.035c1.024.446 2.581.7 4.27.7 1.689 0 3.246-.254 4.27-.7.026-.009.052-.026.079-.035v1.68s-.088.175-.595.394h-.018Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--conversionRateFilledLarge"><path d="M19.692 16.332A5.706 5.706 0 0 1 16.28 20c-.35.14-.718.236-1.103.297a3.936 3.936 0 0 0 2.564.963 3.943 3.943 0 0 0 3.938-3.938c0-1.382-.718-2.59-1.794-3.29.026.219.044.446.044.665 0 .158-.009.306-.026.464a5.751 5.751 0 0 1-.22 1.181l.01-.009Z"></path><path d="M17.951 13.393a3.929 3.929 0 0 0-3.701-2.643 3.943 3.943 0 0 0-3.938 3.938c0 2.17 1.654 3.806 3.728 3.92.07 0 .14.017.21.017.245 0 .481-.026.709-.07.289-.052.577-.131.84-.254a3.942 3.942 0 0 0 2.336-3.141c.017-.158.052-.315.052-.473 0-.14-.026-.262-.043-.393a4.258 4.258 0 0 0-.193-.893v-.008Z"></path><path d="M27.944 12.238 26.28 13.9a10.415 10.415 0 0 0-2.861-5.329c-4.095-4.095-10.754-4.095-14.849 0l1.234 1.234c3.412-3.412 8.96-3.412 12.372 0a8.679 8.679 0 0 1 2.276 3.99l-1.558-1.557-1.234 1.233 3.141 3.142a.86.86 0 0 0 .622.253.897.897 0 0 0 .621-.253l3.141-3.142-1.233-1.233h-.01Z"></path><path d="M9.814 22.186a8.679 8.679 0 0 1-2.275-3.99l1.557 1.558 1.234-1.234-3.141-3.141a.871.871 0 0 0-1.234 0L2.814 18.52l1.233 1.234L5.71 18.09a10.415 10.415 0 0 0 2.861 5.329A10.466 10.466 0 0 0 16 26.491c2.695 0 5.381-1.023 7.429-3.071l-1.234-1.234c-3.413 3.413-8.96 3.413-12.373 0h-.008Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--conversionRateFilled"><path d="M7.921 10.485a2.327 2.327 0 1 0 0-4.655 2.327 2.327 0 0 0 0 4.655Z"></path><path d="M13.836 7.125a5.864 5.864 0 0 0-1.654-3.299A5.843 5.843 0 0 0 8.01 2.094a5.843 5.843 0 0 0-4.174 1.732l.928.928a4.568 4.568 0 0 1 3.246-1.348c1.225 0 2.38.482 3.246 1.348a4.509 4.509 0 0 1 1.251 2.371H11.23l2.03 2.625 1.75-2.625h-1.173Z"></path><path d="M8 12.594a4.568 4.568 0 0 1-3.246-1.348 4.51 4.51 0 0 1-1.251-2.371H4.78L2.75 6.25 1 8.875h1.164a5.863 5.863 0 0 0 1.653 3.299 5.843 5.843 0 0 0 4.174 1.732 5.843 5.843 0 0 0 4.174-1.732l-.927-.928a4.568 4.568 0 0 1-3.247 1.348H8Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--10bis"><path fill="#F36805" fill-rule="evenodd" d="M4 7.543C4 6.691 4.69 6 5.543 6h12.914C19.309 6 20 6.69 20 7.543v8.25c0 .851-.69 1.542-1.543 1.542H5.543c-.852 0-1.543-.69-1.543-1.543V7.543Zm1.143 5.116v3.265c0 .2.162.362.361.362h12.992c.2 0 .361-.162.361-.362v-2.003L5.143 12.659Zm11.662-4.951a.233.233 0 0 0-.254 0c-1.24.751-1.838 1.863-1.838 1.863a.112.112 0 0 0 .07.165c.067.016.343.041.343.041a.08.08 0 0 1 .066.087c-.016.66.083 1.492.1 1.593.02.109.11.103.11.103l.54-.015c.035 0 .027-.038.027-.038-.022-.16-.046-.66-.046-.66 0-.027-.032-.045-.032-.045-.215-.115-.21-.399-.21-.399-.007-.276.036-1.216.036-1.216V9.18a.062.062 0 0 1 .07-.052h.007c.035.005.06.037.056.072a55.29 55.29 0 0 0-.033.847c.005.125.1.114.1.114.116.005.103-.136.103-.136-.009-.29.036-.84.036-.84v-.004a.064.064 0 0 1 .074-.052c.033.003.058.03.057.062-.025.284-.033.858-.033.858.005.127.11.111.11.111.108-.002.093-.155.093-.155-.01-.235.036-.826.036-.826l.001-.005a.06.06 0 0 1 .073-.044c.065.01.06.058.06.058-.007.143-.033 1.039-.033 1.039.006.218-.004.267-.004.267a.41.41 0 0 1-.195.303.042.042 0 0 0-.025.04c-.001.084.04.666.048.686.007.02.04.017.04.017.08-.005.781 0 .781 0 .05.002.056-.014.056-.014a.163.163 0 0 0 .012-.055c.01-.083.047-.55.047-.55.002-.038-.027-.038-.027-.038l-.16-.02c-.125-.01-.15-.055-.15-.055-.04-.065-.03-.32-.03-.32-.002-.838.48-1.436.48-1.436.07-.095.144-.066.144-.066.082.022.086.126.086.126.105.804-.05 2.396-.05 2.396-.005.042.026.04.026.04.07-.003.374.007.374.007.111.005.13-.19.13-.19.077-.49.093-1.51.093-1.51v-.002a.072.072 0 0 1 .066-.078c.028-.007.324-.036.324-.036.162-.02.086-.174.086-.174-.04-.087-.361-.529-.361-.529-.16-.182-.177-.29-.177-.29-.02-.211-.11-.798-.11-.798a.135.135 0 0 0-.116-.121c-.14-.019-.36-.03-.36-.03a.1.1 0 0 0-.094.067c-.02.05-.012.215-.012.215-.002.056-.05.023-.05.023a5.559 5.559 0 0 0-.561-.395Zm-6.986 2.738h.115c.071 0 .129.057.129.127v.204c0 .079-.066.143-.147.143H8.39a.13.13 0 0 1-.13-.128v-.217a.13.13 0 0 1 .13-.129h.88v-.664c0-.25-.11-.353-.383-.353h-.468a.08.08 0 0 1-.081-.08v-.312c0-.046.037-.082.083-.082h.529c.577 0 .87.223.87.785v.706ZM13 8.955h-1.21a.035.035 0 0 0-.035.034v.403c0 .02.017.037.038.037h.216v.92c0 .126-.065.126-.096.126h-.146a.038.038 0 0 0-.038.038v.309c0 .07.058.128.13.128h.08c.394 0 .62-.218.62-.598v-.923h.378c.273 0 .287.247.287.5v.867c0 .069.056.124.127.124h.295c.07 0 .127-.056.127-.124v-1.04c0-.562-.195-.801-.773-.801Zm-5.323 0h.01c.237 0 .43.188.43.421v.562a.13.13 0 0 1-.132.13H7.7a.13.13 0 0 1-.132-.13v-.51H7.43a.042.042 0 0 1-.043-.041v-.39c0-.024.02-.042.043-.042h.249Zm3.42 0H10.748a.043.043 0 0 0-.043.042v.393a.04.04 0 0 0 .04.039h.213v1.955c0 .074.062.135.138.135h.272c.077 0 .14-.061.14-.137V9.358a.407.407 0 0 0-.412-.403Zm-4.809 1.533a.442.442 0 0 0 .446-.438v-.188a.487.487 0 0 0-.491-.481h-.4v.67c0 .24.2.437.445.437Zm-.8-1.573h.756c.552 0 1 .439 1 .98v.127a.946.946 0 0 1-.955.936.946.946 0 0 1-.955-.936v-.957c0-.083.069-.15.153-.15Z" clip-rule="evenodd"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--bankOfIrelandUk"><path fill="#00F" fill-rule="evenodd" d="M20 4.94v1.817c0 2.165-7.753 1.966-7.914 4.051h-.171C11.765 8.723 4 8.925 4 6.758V4.94h.175c0 1.742 7.746 1.932 7.746 3.803h.17c0-1.871 7.75-2.06 7.75-3.803H20Zm-.162 4.123c0 1.741-7.745 1.932-7.745 3.803h-.171c0-1.871-7.746-2.062-7.746-3.803h-.175v1.817c0 2.169 7.76 1.966 7.914 4.055h.171C12.244 12.846 20 13.045 20 10.88V9.063h-.162Zm0 4.123c0 1.742-7.745 1.932-7.745 3.807h-.172c0-1.875-7.746-2.065-7.746-3.807H4v1.817c0 2.176 7.763 1.97 7.914 4.055h.171c.162-2.086 7.914-1.89 7.914-4.055v-1.817h-.16Z" clip-rule="evenodd"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--bankOfScotland"><path fill="#273879" d="M13.563 7.152a1.612 1.612 0 0 0-1.66-1.611 1.624 1.624 0 0 0 0 3.247 1.612 1.612 0 0 0 1.66-1.636Z"></path><path fill="#273879" d="M13.563 16.846a1.61 1.61 0 0 0-1.66-1.636 1.624 1.624 0 0 0 0 3.248 1.611 1.611 0 0 0 1.66-1.612Z"></path><path fill="#273879" d="M5.747 12a1.612 1.612 0 0 0-1.623-1.624 1.624 1.624 0 0 0 0 3.247 1.612 1.612 0 0 0 1.623-1.624Z"></path><path fill="#273879" d="M21.5 12a1.624 1.624 0 1 0-1.624 1.623 1.612 1.612 0 0 0 1.624-1.624Z"></path><path fill="#273879" d="M19.282 9.127V6.086l-7.27 4.41-7.27-4.434v3.041L9.48 12l-4.847 2.896v3.042l7.27-4.435 7.343 4.435v-3.03L14.4 12.011l4.883-2.884Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--barclays"><path fill="#009DDF" d="M10.859 3.648c-.474-.05-.76 0-.919.03a1.52 1.52 0 0 0-.672.286.883.883 0 0 0-.197.217c.573-.286 1.432.06 1.748.405.376.415.356 1.137.297 1.551-.06.455-.356 1.68-1.739 1.917-.504.089-1.897.04-2.163-1.146.424.06.859-.445.533-.909-.316-.464-1.106-.444-1.66-.296-.681.187-1.244.899-1.491 1.393-.307.622-.524 1.492-.564 2.173-.049.751-.039 1.59.01 2.213.07.78.247 1.58.514 2.272.267.702.583 1.314.919 1.956l.03.06a12.293 12.293 0 0 0 .672-.81c.118-.168.513-.86.622-1.107.523.346.612.583.632.919.02.365-.287 1.175-.77 2.035-.03.05-.07.128-.11.188a11.337 11.337 0 0 0 1.087-1.324c.405-.583.969-1.512 1.275-2.342.415.168.593.405.701.633.148.316.03.998-.395 2.005-.296.702-.711 1.354-1.195 2.035-.06.08-.139.198-.198.267l.148.119c.544.414 1.196.869 1.818 1.234.672.386 1.531.8 2.203.959.672-.158 1.531-.573 2.203-.959.613-.355 1.274-.81 1.818-1.234l.148-.119c-.05-.07-.138-.188-.198-.267-.474-.681-.889-1.333-1.185-2.035-.435-1.008-.553-1.699-.395-2.005.109-.227.286-.455.701-.633.306.83.87 1.759 1.275 2.342.405.573.82 1.037.928 1.156.09.098.129.138.158.168-.03-.07-.079-.139-.108-.188-.484-.86-.79-1.67-.77-2.035.019-.346.108-.573.631-.919.119.247.504.939.623 1.107.118.167.425.533.563.691.05.06.099.109.108.119l.03-.06c.336-.642.652-1.254.919-1.956a8.958 8.958 0 0 0 .514-2.272c.049-.622.059-1.462.01-2.213-.04-.681-.257-1.55-.564-2.173-.237-.494-.81-1.196-1.491-1.393-.563-.158-1.344-.178-1.66.296-.326.474.119.978.533.909-.128.593-.671 1.176-1.798 1.176-.523 0-1.225-.297-1.55-.84-.425-.721-.406-1.442-.465-2.055-.04-.336-.06-.682-.168-1.008-.108-.326-.316-.543-.622-.632a3.555 3.555 0 0 0-.78-.138h-.11c-.236-.01-.385.069-.434.237Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--danskeBank"><path fill="#03426A" d="M22 10.53h-7.16v2.932H22V10.53Zm-.077.074v2.782h-7.007v-2.782h7.007Z"></path><path fill="#03426A" d="M2 13.462h12.53V10.53H2v2.932Z"></path><path fill="#fff" d="M21.923 10.604v2.782h-7.007v-2.782h7.007Z"></path><path fill="#fff" d="M6.328 12.194c0 .288-.16.43-.516.43H5.25v-1.079h.544c.43 0 .534.204.534.427v.222Zm.23-.009V12c0-.589-.478-.611-.799-.611h-.74v1.396h.804c.631 0 .735-.333.735-.6Z"></path><path fill="#fff" d="M7.81 12.44c0 .08-.007.155-.103.188a.81.81 0 0 1-.27.028c-.134 0-.213-.012-.26-.042-.033-.02-.046-.05-.046-.118 0-.084.022-.132.064-.151.041-.02.094-.023.257-.023h.358v.118Zm.218.345v-.549c0-.104 0-.176-.01-.229a.185.185 0 0 0-.074-.126c-.105-.08-.362-.081-.488-.081-.096 0-.357.01-.453.09-.033.026-.04.058-.04.096 0 .025.004.058.006.102h.211c.004-.024.01-.084.033-.109.029-.026.078-.037.223-.037.166 0 .282.006.33.032.046.025.044.077.044.118v.095h-.488c-.133 0-.285.003-.368.114a.29.29 0 0 0-.054.188c0 .232.146.31.523.31.195 0 .324-.03.402-.095l.02.08h.183Z"></path><path fill="#fff" d="M9.338 12.785v-.535c0-.184-.009-.223-.054-.257-.043-.031-.13-.05-.262-.05-.116 0-.236.013-.348.043v.799h-.215v-.978h.193l.015.07c.043-.023.076-.04.121-.053.072-.02.163-.031.284-.031.138 0 .245.021.326.056a.23.23 0 0 1 .14.17c.01.052.016.096.016.207v.559h-.216Z"></path><path fill="#fff" d="M10.937 12.725c-.1.05-.262.07-.474.07-.147 0-.268-.01-.362-.035-.102-.023-.152-.069-.158-.153a.704.704 0 0 1 .006-.135h.208c.007.049.007.065.009.075.007.046.003.07.06.088a1 1 0 0 0 .251.023.766.766 0 0 0 .297-.042c.045-.02.067-.055.067-.121 0-.078-.016-.11-.1-.122-.025-.005-.05-.005-.077-.007-.015-.002-.062-.002-.138-.003-.036 0-.078-.004-.127-.006-.215-.01-.443-.019-.443-.263 0-.222.14-.3.523-.3.098 0 .217.008.29.016.083.011.146.025.191.05.051.028.067.072.067.15 0 .02 0 .041-.003.075h-.21l-.01-.044c-.01-.053-.014-.064-.032-.076-.03-.023-.123-.033-.253-.033a.814.814 0 0 0-.264.026c-.057.02-.082.055-.082.125 0 .047.018.083.042.098.056.034.353.03.454.032.109.002.18.01.24.032.111.037.155.107.155.25 0 .114-.038.186-.127.23Z"></path><path fill="#fff" d="m12.266 12.785-.52-.463h-.076v.463h-.217v-1.396h.217v.794h.076l.431-.376h.254l-.502.43.625.548h-.288Z"></path><path fill="#fff" d="M13.626 12.2h-.694c.007-.122.034-.177.083-.212.051-.035.143-.053.28-.053.188 0 .276.04.309.125a.365.365 0 0 1 .022.14Zm.199.279h-.214c-.007.03-.01.105-.04.133-.032.032-.098.046-.271.046-.172 0-.267-.023-.315-.07-.037-.035-.058-.11-.058-.224v-.026h.903c.002-.047.005-.06.005-.098 0-.162-.023-.252-.096-.32-.08-.083-.238-.124-.456-.124-.277 0-.447.062-.518.197a.689.689 0 0 0-.065.322c0 .213.058.347.187.413.08.043.217.067.393.069.146 0 .264-.007.393-.044.124-.039.155-.107.155-.165 0-.014 0-.062-.003-.11Z"></path><path fill="#03426A" d="M16.678 11.74c0 .206-.12.248-.366.248h-.545v-.443h.572c.22 0 .339.02.339.195Zm.284.65c0-.172-.101-.298-.344-.335v-.004c.188-.047.29-.142.29-.292 0-.246-.123-.37-.473-.37h-.9v1.396h.936c.316 0 .491-.14.491-.394Zm-.232.017c0 .198-.145.218-.369.218h-.594v-.479h.623c.266 0 .34.083.34.26Z"></path><path fill="#03426A" d="M18.137 12.44c0 .08-.005.155-.101.188a.81.81 0 0 1-.27.028c-.134 0-.214-.012-.26-.042-.033-.02-.046-.05-.046-.118 0-.084.022-.132.065-.151.04-.02.093-.023.257-.023h.355v.118Zm.22.345v-.549c0-.104 0-.176-.01-.229a.186.186 0 0 0-.074-.126c-.105-.08-.362-.081-.489-.081-.096 0-.357.01-.453.09-.032.026-.04.058-.04.096 0 .025.004.058.006.102h.212c.005-.024.009-.084.032-.109.03-.026.078-.037.223-.037.167 0 .283.006.331.032.046.025.042.077.042.118v.095h-.487c-.132 0-.284.003-.367.114a.3.3 0 0 0-.055.188c0 .232.147.31.523.31.198 0 .325-.03.402-.095l.02.08h.183Z"></path><path fill="#03426A" d="M19.613 12.785v-.535c0-.184-.01-.223-.055-.257-.043-.031-.13-.05-.262-.05-.116 0-.236.013-.348.043v.799h-.215v-.978h.193l.017.07a.496.496 0 0 1 .121-.053 1 1 0 0 1 .282-.031c.138 0 .245.021.326.056.08.034.123.097.142.17.01.052.014.096.014.207v.559h-.215Z"></path><path fill="#03426A" d="m21.017 12.785-.52-.463h-.077v.463h-.215v-1.396h.215v.794h.078l.43-.376h.252l-.501.43.625.548h-.287Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--firstDirect"><path fill="#000" d="M4.5 9.274v1.583h1.405v6.874H8.25v-6.874h1.618V9.274H8.25v-.508c0-.377.058-.589.206-.745.138-.147.379-.221.726-.221.297 0 .607.025.818.05V6.114a15.652 15.652 0 0 0-1.24-.065c-.957 0-1.673.24-2.146.72-.473.48-.71 1.096-.71 1.849v.655H4.5Z"></path><path fill="#000" fill-rule="evenodd" d="M17.156 10.305V6.05H19.5v11.681h-2.228v-1.079h-.034c-.546.923-1.503 1.298-2.615 1.298-2.314 0-3.8-1.746-3.8-4.514 0-3.138 2.074-4.392 3.673-4.392 1.054 0 2.053.369 2.628 1.26h.032Zm-3.995 3.199c0 1.67.78 2.707 2.037 2.707 1.302 0 2.037-.977 2.037-2.707s-.735-2.707-2.037-2.707c-1.256 0-2.037 1.038-2.037 2.707Z" clip-rule="evenodd"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--halifax"><path fill="#005D9D" d="M2.5 5.96h6.94l3.495 3.633h-6.6L2.5 5.96Z"></path><path fill="#005D9D" d="M12.396 8.171 14.56 5.96h6.94l-3.835 3.633h-3.902l-1.367-1.422Z"></path><path fill="#005D9D" d="m13.763 14.393-1.367 1.422 2.164 2.211h6.94l-3.835-3.633h-3.902Z"></path><path fill="#005D9D" d="M12.935 14.393h-6.6l-3.833 3.631 6.938.002 3.495-3.633Z"></path><path fill="#005D9D" d="M3.385 11.683h1.19v-1.41h.817v3.44h-.816V12.41h-1.19v1.305h-.813v-3.442h.812v1.411Z"></path><path fill="#005D9D" d="M9.18 10.272h.816v2.716h1.268v.726H9.18v-3.442Z"></path><path fill="#005D9D" d="M11.642 13.714h.827v-3.442h-.827v3.442Z"></path><path fill="#005D9D" d="M15.29 10.998h-1.539v.685h1.275v.726h-1.275v1.305h-.816v-3.442h2.355v.726Z"></path><path fill="#005D9D" fill-rule="evenodd" d="m6.84 10.272-1.183 3.442h.84l.2-.626h1.179l.2.626h.84l-1.182-3.442h-.895Zm.074 2.137.372-1.164.372 1.164h-.744Z" clip-rule="evenodd"></path><path fill="#005D9D" fill-rule="evenodd" d="M20.412 10.272h.926l-1.14 1.721 1.14 1.72h-.926l-.658-1.039-.659 1.04H17.46l-.2-.626h-1.18l-.2.626h-.839l1.183-3.442h.894l1.137 3.313 1.055-1.592-1.14-1.72h.926l.659 1.04.658-1.04Zm-3.743.973-.372 1.164h.744l-.372-1.164Z" clip-rule="evenodd"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--hsbc"><path fill="#fff" d="M7.01 6.88h9.993v10.224H7.009V6.88Z"></path><path fill="#DB0011" d="M17.003 17.116V6.88L22 12.005l-4.997 5.11Z"></path><path fill="#DB0011" d="M7.01 6.88h9.993l-4.996 5.125L7.009 6.88Z"></path><path fill="#DB0011" d="M7.01 6.88v10.236L2 12.005 7.01 6.88Z"></path><path fill="#DB0011" d="M17.003 17.116H7.009l4.998-5.111 4.996 5.11Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--lloyds"><path fill="#231F20" fill-rule="evenodd" d="M19.845 12.378c.322.233.655.405.655.776 0 .108-.14.215-.451.215-.237 0-.495-.065-.613-.236-.097-.128.043-.298-.043-.425-.065-.107-.215-.054-.313-.107-.117-.064-.127-.116-.203-.276-.085-.191-.377-.51-.72-.85-.29-.288-.602-.437-.742-.425-.098.01-.13.01-.227.01-.247 0-.462.234-.818.382-.246.107-.386.17-.547.192l-.054.064.322-.01c.3 0 .7-.044 1-.044.313 0 .464.277.582.564.237.585.592 1.425 1.01 2.127.205.33.377.543.377.948 0 .128-.01.298-.183.298-.237 0-.838-.244-.838-.511 0-.203.16-.288.16-.49 0-.127-.193-.106-.235-.223-.152-.627-.334-1.245-.69-1.618-.183-.19-.204-.276-.387-.276a.816.816 0 0 0-.28.054c-.494.18-1.15.724-1.966.968-.313.096-.367-.085-.688-.02h.021c-.26.052-.464.2-.819.296-.494.14-1.343.203-2.021.118-.483-.064-1.108-.16-1.377-.149-.204.585-.645 1.35-1.29 1.65-.343.148-.45.36-.343.743.128.478.559.829.784 1.234.204.35.538.904.892 1.084.355.18.571.447.571.669 0 .107-.044.17-.151.17h-.71a.195.195 0 0 1-.183-.107c-.096-.18-.033-.35-.16-.509-.098-.117-.173-.085-.292-.18-.215-.202-.053-.319-.215-.576-.451-.7-.644-.87-1.02-1.37-.215-.266-.473-.394-.473-.745 0-.424.429-.499.419-.926a2.26 2.26 0 0 1-1.098.427c-.065.01-.236.138-.312.224-.172.169-.236.339-.258.595-.054.573-.172 1.158-.097 1.732.097.373.162.5.473.702.194.127.42.308.442.574 0 .074-.022.16-.13.16h-.763a.196.196 0 0 1-.162-.096c-.086-.15-.032-.255-.064-.425-.076-.35-.473-.33-.473-.69 0-.108.065-.246.076-.47.021-.488.171-1.275.021-2.231-.065-.555.515-.576.817-1.065.182-.277.129-.16.236-.362.108-.212.086-.361.076-.489 0-.16-.162-.501-.053-1.192.042-.309.192-.617.397-.882 0-.012 0-.054-.065-.054-.301.022-.301-.053-.505-.053a.445.445 0 0 0-.376.244.248.248 0 0 1-.14-.212c0-.107.02-.202.128-.308.044-.042 0-.064-.052-.064-.238 0-.463.287-.517.489-.14-.021-.15-.202-.215-.202-.064 0-.107.096-.107.192 0 .68 1.118.83 1.118 1.722 0 1.033-1.258.82-1.258 1.192 0 .074.053.138.15.181-.043.096-.15.138-.268.138a.466.466 0 0 1-.484-.478c0-.564.763-.575.763-1 0-.203-.129-.268-.248-.362-.73-.511-1.138-1.022-1.138-1.861 0-.904.633-1.597 1.462-1.597 1.203 0 1.236 1.373 2.334 1.49A2.475 2.475 0 0 1 8.66 10.4c.71 0 1.022.181 1.775.181.302 0 .808-.085 1.41-.489.224-.149.322-.18.526-.362.473-.405.914-1.191.914-1.755v.031c0-.18-.044-.286-.13-.286-.258 0-.483.234-.742.479-.16.17.087.244-.279.446-.128.064-.28-.054-.419-.054-.29 0-.42-.339-.42-.637 0-.149.12-.192.183-.33.151-.287.14-.392.28-.68.086-.192.236-.32.226-.457 0-.053-.043-.086-.043-.138 0-.29.387-.48.387-.767 0-.16-.183-.234-.226-.362-.043-.128-.01-.159-.01-.159a.056.056 0 0 1 .053-.032c.15 0 .216.16.355.245.01-.192-.054-.235-.054-.373 0-.074-.01-.191.065-.191.096 0 .085.128.171.191.108.085.205.075.323.15.15.095.236.254.29.265.15.021.194-.16.119-.266.171-.01.344.128.57.128.355 0 .474.096.538.148.226.192.269.34.516.34.13 0 .194-.105.226-.148.172.127.183.446 0 .712.075.226.397.246.549.352.15.107.128.16.236.224.086.053.161.042.225 0 .076.297-.183.563-.494.606.011.382.419.616.602.712-.108.234-.302.308-.473.35.054.235.311.575.182.883-.117-.053-.29 0-.29.17 0 .192.248.29-.01.427-.119.064-.14.234.074.394.28-.075.55-.065.86-.065.194 0 .452-.053.625-.053.323 0 .516.128.754.384.591.637 1.128 1.307 1.74 1.764Z" clip-rule="evenodd"></path><path fill="#6D6E70" fill-rule="evenodd" d="M3.843 10.518c.065-.553.603-1.012 1.118-1.012.516 0 .882.31 1 .64.043.149-.065.095-.118.084a1.32 1.32 0 0 0-.356-.042c-.482 0-.569.255-.687.255-.043 0-.053-.032-.053-.053 0-.128.16-.212.16-.309 0-.052-.031-.106-.171-.106-.484 0-.72.702-.85.702-.053 0-.053-.063-.043-.159Z" clip-rule="evenodd"></path><path fill="#6D6E70" fill-rule="evenodd" d="M12.908 6.498c-.28-.097-.42.095-.58.361-.195.308-.258.478-.312.786-.054.34.161.426.021.533-.15.116-.194.074-.14-.033.065-.149.055-.362-.129-.298-.171.054-.323.043-.258-.042.054-.095.13-.138.226-.436.107-.288.16-.372.387-.776.13-.244-.053-.223-.011-.373.043-.117.184-.256.269-.373.096-.105.194-.149.269-.127.086.022.075.096.043.276-.043.17-.022.245.118.3.151.063.204.254.097.202Z" clip-rule="evenodd"></path><path fill="#6D6E70" fill-rule="evenodd" d="M18.511 15.187c0-.096.108-.245.14-.469.118.096.204.32.204.469 0 .064-.01.14-.064.14-.076 0-.28-.065-.28-.14Z" clip-rule="evenodd"></path><path fill="#6D6E70" fill-rule="evenodd" d="M19.973 12.686c.173.053.366.277.366.405 0 .063-.13.095-.215.095-.15 0-.032-.277-.15-.5Z" clip-rule="evenodd"></path><path fill="#6D6E70" fill-rule="evenodd" d="M13.995 9.719c.967-.914 1.29-2.797.237-3.49-.204-.137-.378-.19-.378-.222s.151-.032.335.043c1.58.671 1.247 2.585.72 3.851-.13.32 0 .223.333.606.43.478.27.978.227 1.084-.11.256-.033-.754-1.248-1.308-.4-.18-.55-.254-.226-.564Z" clip-rule="evenodd"></path><path fill="#6D6E70" fill-rule="evenodd" d="M9.918 19.099c-.128 0-.14-.318-.172-.446.119.053.259.139.334.266.031.053.075.18-.011.18h-.15Z" clip-rule="evenodd"></path><path fill="#6D6E70" fill-rule="evenodd" d="M6.23 19.099c-.129 0-.151-.307-.183-.435.118.053.268.128.345.255.031.053.096.18.01.18H6.23Z" clip-rule="evenodd"></path><path fill="#6D6E70" fill-rule="evenodd" d="M10.241 11.772c-.021-.17.27-.181.27-.351 0-.085-.281-.308-.969-.308-.946 0-1.612.329-2.225.904-.419.392-.518.84-.636.84-.043 0-.064-.01-.075-.128-.087-.754.54-2.052 2.216-2.052.559 0 1.085.18 1.7.18.29 0 1.01-.159 1.482-.49.098-.072.323-.221.398-.275.054-.02.033.031 0 .096-.096.159-.192.244-.29.35-.15.16-.323.405-.376.638-.118.5-.226.648-.892.723-.44.053-.603-.075-.603-.127Z" clip-rule="evenodd"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--monzo"><path fill="#E83860" d="M19.5 15.082a.695.695 0 0 1-.203.491l-3.11 3.11a.278.278 0 0 1-.475-.196v-6.97l3.745-3.723h.043v7.288Z"></path><path fill="#DFC586" d="M17.018 5.311a.278.278 0 0 0-.393 0L12 9.936h-.064v5.22l.064.138 7.5-7.5-2.482-2.483Z"></path><path fill="#327787" d="M4.5 15.082c0 .184.073.36.203.491l3.11 3.11a.278.278 0 0 0 .475-.196v-6.97L4.543 7.795H4.5v7.288Z"></path><path fill="#8ABB9C" d="M7.375 5.311a.278.278 0 0 0-.393 0L4.5 7.794l7.5 7.5V9.936L7.375 5.311Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--nationwide"><path fill="#fff" d="M16.62 8.513V4.22H11.7v1.862h-1.676v.775a5.152 5.152 0 0 0-.388-.016c-2.82 0-5.116 2.316-5.116 5.162 0 1.668.931 3.236 2.491 4.199l.248.152v3.426h9.359v-1.872h2.864v-6.504l-2.862-2.89Z"></path><path fill="#004890" d="M15.17 15.698h.79V14.13h-.79v1.568Zm-3.357 2.678H8.72v-2.34h3.093v2.34Zm4.135-9.622V4.818h-3.47v1.91H10.76v.937a4.456 4.456 0 0 0-1.182-.16c-2.467 0-4.459 2.015-4.459 4.497 0 1.528.926 2.856 2.178 3.628l2.791-4.437h3.884a4.497 4.497 0 0 0-2.415-3.221v-.44h1.717v-1.91h1.879V12h2.936v4.459h-2.936v1.919h-2.543v-2.371l2.543-4.007h-4.628l-2.6 4.131v3.052h8.024v-1.918h2.935v-5.546L15.95 8.754Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--natwest"><path fill="#471563" d="M21 12c0 8.347-.653 9-9 9s-9-.653-9-9 .653-9 9-9 9 .653 9 9Z"></path><path fill="#E3000A" d="M14.691 13.978H11.11l1.79 3.104h3.582l-1.79-3.104Z"></path><path fill="#C30203" d="m16.479 10.88 1.79 3.101-1.79 3.102-1.79-3.103 1.79-3.1Z"></path><path fill="#E3000A" d="m9.316 13.978 1.79-3.1H7.524l-1.79 3.1v.001h3.582Z"></path><path fill="#C30203" d="M11.107 17.082H7.525L5.734 13.98v-.002h3.582l1.79 3.104Z"></path><path fill="#E3000A" d="M13.793 6.225H10.21l-1.79 3.1h3.582l1.79-3.1Z"></path><path fill="#C30203" d="m12.002 9.323 1.791 3.103 1.79-3.101-1.79-3.102-1.791 3.1Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--revolut"><path fill="#000" fill-rule="evenodd" d="M11.65 7.961c-.18 1.217-.323 2.242-.58 3.837.697-.015 2.281.253 2.63-1.927.288-1.814-.998-1.982-2.05-1.91Z" clip-rule="evenodd"></path><path fill="#000" fill-rule="evenodd" d="M17.694 16.733c.272.583-.002 1.32-.568 1.616-.325.17-.697.328-1.067.417-.613.141-1.238.22-1.867.234-1.007 0-2.015-.555-2.45-1.23-.112.232-.518.701-1.228.921-.45.14-.99.309-2.12.308-1.013 0-1.59-.443-1.895-.815-.486-.59-.558-1.34-.463-1.845l.005-.025c.382-1.847.905-5.206 1.145-6.889l.003-.016c.065-.467.132-.934.172-1.404.02-.237.033-.475.035-.712.003-.225-.018-.449-.017-.673.003-.212.038-.426.141-.614.168-.302.474-.54.798-.645.356-.114.727-.16 1.096-.201.378-.044.757-.08 1.136-.11.462-.033.926-.05 1.39-.05.793 0 1.591.012 2.373.167.796.159 1.6.461 2.23.991.43.364.772.822 1.029 1.324.225.442.316.907.37 1.262a5.092 5.092 0 0 1-.075 1.917c-.115.459-.31.895-.576 1.292a5.43 5.43 0 0 1-1.173 1.241c.298.834 1.075 2.463 1.576 3.54ZM8.785 6.704c.02.31.022.621.008.932a13.23 13.23 0 0 1-.079.948c-.036.314-.08.627-.124.94l-.014.102c-.14.978-.286 1.955-.44 2.93-.161 1.025-.342 2.045-.524 3.066-.084.476-.272 1.086-.014 1.54.23.405.82.454 1.23.414 1.498-.148 1.737-.468 1.737-.468-.3-.32-.04-1.773.26-3.727h1.065l1.114 3.247s.329 1.007 1.241.958c1.17-.062 2.03-.32 2.153-.463-.36-.193-1.39-2.674-1.95-4.496.272-.16.535-.333.783-.527.34-.267.654-.574.894-.935.174-.26.306-.545.381-.848a3.65 3.65 0 0 0 .048-1.358c-.041-.275-.104-.581-.231-.83-.237-.464-.573-.87-1.03-1.129-.772-.437-1.661-.52-2.528-.566-.94-.05-1.884-.02-2.819.089-.105.012-1.165.102-1.16.181Z" clip-rule="evenodd"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--royalBankOfScotland"><path fill="#14366E" d="M7.727 11.769h-.87c-.182 0-.356-.106-.414-.269-.158-.455-.614-.61-.614-.61a.435.435 0 0 1-.29-.407V9.63c0-.236.2-.423.44-.423a.42.42 0 0 1 .43.423l-.008.691 1.011-.992a.441.441 0 0 1 .622 0 .422.422 0 0 1 0 .61l-.995.968h.68c.24 0 .44.196.44.432a.436.436 0 0 1-.432.43ZM7.72 12.81l-.705-.008 1.012.993c.174.17.174.44 0 .61a.44.44 0 0 1-.622 0l-.995-.976v.675a.428.428 0 0 1-.439.431.438.438 0 0 1-.44-.431v-.862c0-.18.117-.35.283-.407.464-.155.621-.602.621-.602a.442.442 0 0 1 .415-.285h.87c.24 0 .44.195.44.431a.423.423 0 0 1-.44.431Zm-2.81 1.709c-.24 0-.43-.155-.422-.423l.008-.692-1.011 1.001a.44.44 0 0 1-.622 0 .422.422 0 0 1 0-.61l.986-.977h-.68a.433.433 0 0 1-.439-.43c0-.237.191-.432.44-.432h.87c.182 0 .348.106.414.268.158.456.605.61.605.61.174.058.29.22.29.408v.854c0 .236-.19.423-.439.423Zm.158-3.62c-.464.162-.622.601-.622.601a.442.442 0 0 1-.414.285h-.87a.438.438 0 0 1-.44-.431c0-.236.166-.423.44-.423l.704.008-1.011-1a.422.422 0 0 1 0-.611.441.441 0 0 1 .621 0l.995.976V9.63c0-.236.19-.431.44-.431.24 0 .43.195.43.43v.863c0 .18-.108.35-.273.407Z"></path><path fill="#14366E" d="M19.256 14.56c-.464 0-1.06-.074-1.35-.163l.232-.944c.215.098.688.244 1.118.244.523 0 .912-.22.912-.675 0-.383-.24-.586-.912-.846-.687-.26-1.26-.586-1.26-1.546 0-.936.755-1.457 1.907-1.457.489 0 .978.098 1.276.187l-.223.92a2.328 2.328 0 0 0-1.053-.244c-.555 0-.804.211-.804.57 0 .365.274.496.87.756.82.342 1.343.692 1.343 1.595 0 .992-.812 1.603-2.056 1.603Zm-3.688-2.36h-.63v1.513h.663c.522 0 .929-.203.929-.764 0-.513-.382-.749-.962-.749Zm.008-2.156h-.638v1.367h.589c.447 0 .829-.236.829-.708.008-.44-.266-.66-.78-.66Zm.058 4.467h-1.732V9.247h1.824c1.044 0 1.732.496 1.732 1.375 0 .618-.423.968-.82 1.122.546.139.994.513.994 1.205 0 .919-.721 1.562-1.998 1.562Zm-4.384-4.459h-.53v1.505h.414c.555 0 .961-.236.961-.748 0-.456-.298-.757-.845-.757Zm.995 4.459a26.91 26.91 0 0 0-1.252-2.18h-.274v2.18H9.692V9.247h1.699c1.119 0 1.782.528 1.782 1.578 0 .724-.53 1.164-1.086 1.35.356.48 1.044 1.652 1.384 2.344l-1.226-.008Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--santander"><path fill="#EA1D25" fill-rule="evenodd" d="M20 15.25c0 2.425-3.58 4.374-8 4.374s-8-1.95-8-4.374c0-1.727 1.86-3.236 4.528-3.933 0 .663.147 1.32.476 1.91l2.524 4.373c.182.331.324.697.398 1.07l.113-.184a3.518 3.518 0 0 0 0-3.493l-2.013-3.494c-.62-1.103-.62-2.424 0-3.493l.113-.182c.074.37.215.736.402 1.069l1.17 2.058 1.826 3.196c.182.331.33.697.397 1.063l.114-.183a3.506 3.506 0 0 0 0-3.487l-2.009-3.493a3.493 3.493 0 0 1 0-3.494l.108-.183c.074.366.222.738.403 1.064l2.485 4.374c.289.48.437 1.028.471 1.583 2.706.697 4.533 2.207 4.493 3.86Z" clip-rule="evenodd"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--starling"><path fill="#6935D3" fill-rule="evenodd" d="M12 20.99c-4.977 0-9-4.02-9-8.996A8.989 8.989 0 0 1 12 3c4.977 0 9 4.02 9 8.994a8.989 8.989 0 0 1-9 8.995Z" clip-rule="evenodd"></path><path fill="#fff" fill-rule="evenodd" d="M8.42 11.995v-.5a5.638 5.638 0 0 1 5.633-5.63h.5v2.041h-.5a3.594 3.594 0 0 0-3.59 3.59v.5H8.418Z" clip-rule="evenodd"></path><path fill="#fff" fill-rule="evenodd" d="M15.58 11.994v.5a5.639 5.639 0 0 1-5.633 5.63h-.5v-2.04h.5c1.98 0 3.59-1.611 3.59-3.59v-.5h2.044Z" clip-rule="evenodd"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--tescoBank"><rect width="20" height="14" x="2" y="5" fill="#fff"></rect><path fill="#E3000F" d="M3.64 7.676h3.45v.752c-.244-.205-.765-.289-1.32-.289v2.052c0 .306.026.39.144.547H4.816c.118-.158.144-.24.144-.547V8.139c-.555 0-1.076.083-1.32.289v-.752Zm0 0h3.45v.752c-.244-.205-.765-.289-1.32-.289v2.052c0 .306.026.39.144.547H4.816c.118-.158.144-.24.144-.547V8.139c-.555 0-1.076.083-1.32.289v-.752Zm0 0h3.45v.752c-.244-.205-.765-.289-1.32-.289v2.052c0 .306.026.39.144.547H4.816c.118-.158.144-.24.144-.547V8.139c-.555 0-1.076.083-1.32.289v-.752Zm0 0h3.45v.752c-.244-.205-.765-.289-1.32-.289v2.052c0 .306.026.39.144.547H4.816c.118-.158.144-.24.144-.547V8.139c-.555 0-1.076.083-1.32.289v-.752Zm5.108 2.598c.355 0 .945-.083 1.177-.289v.753H7.41c.123-.144.144-.24.144-.534V8.21c0-.293-.021-.39-.144-.534h2.384v.753c-.232-.206-.822-.289-1.177-.289h-.28v.814h.206c.2 0 .512-.009.717-.083v.604c-.205-.075-.516-.084-.717-.084h-.206v.884h.411Zm3.299-1.422c.6.083 1.098.294 1.098.945 0 .766-.726 1.01-1.51 1.006-.546-.004-1.01-.057-1.351-.192v-.687c.486.315.984.416 1.352.416.38 0 .73-.092.73-.38 0-.29-.324-.36-.988-.46-.573-.088-1.094-.333-1.098-.897-.005-.761.717-.993 1.408-.993.446 0 .88.053 1.277.184v.74c-.332-.294-.826-.46-1.312-.46-.328 0-.639.105-.639.35 0 .306.46.35 1.033.428Zm3.416-1.242c.359 0 .67.044.919.11v.76c-.245-.249-.534-.406-.914-.406-.696 0-1.16.485-1.16 1.133 0 .647.464 1.133 1.16 1.133.38 0 .67-.158.914-.407v.761a3.63 3.63 0 0 1-.919.114c-1.202 0-2.073-.6-2.073-1.601 0-1.002.87-1.597 2.073-1.597Z"></path><path fill="#E3000F" d="M18.55 7.61c-1.243 0-1.952.722-1.952 1.597 0 .87.709 1.596 1.951 1.596 1.243 0 1.951-.726 1.951-1.596 0-.875-.708-1.597-1.95-1.597Zm0 2.73c-.626 0-1.033-.517-1.033-1.133 0-.621.407-1.133 1.032-1.133.626 0 1.032.512 1.032 1.133 0 .616-.406 1.133-1.032 1.133Z"></path><path fill="#004997" d="M18.378 11.57h2.09v.001l.002.001c.004.004.004.012-.002.018a.02.02 0 0 1-.005.004l-.004.001c-.242.11-.566.447-.566.447-.243.23-.424.376-.812.376h-1.987c-.006 0-.009-.006-.01-.011 0-.004.003-.008.005-.01a.044.044 0 0 1 .007-.004c.218-.122.543-.46.543-.46.133-.157.4-.363.739-.363Z"></path><path fill="#004997" d="M14.982 11.57h2.09v.001l.002.001c.004.004.004.012-.002.018a.02.02 0 0 1-.005.004l-.004.001c-.242.11-.566.447-.566.447-.243.23-.424.376-.812.376h-1.987c-.006 0-.01-.006-.01-.011 0-.004.002-.008.005-.01a.043.043 0 0 1 .006-.004c.218-.122.544-.46.544-.46.133-.157.4-.363.739-.363Z"></path><path fill="#004997" d="M11.586 11.57h2.09v.001l.002.001c.004.004.004.012-.002.018a.018.018 0 0 1-.005.004l-.004.001c-.242.11-.566.447-.566.447-.243.23-.424.376-.812.376H10.3c-.005 0-.008-.006-.008-.011 0-.004.001-.008.004-.01l.006-.004c.218-.122.544-.46.544-.46.133-.157.4-.363.739-.363Z"></path><path fill="#004997" d="M8.19 11.57h2.089v.001l.002.001c.005.004.005.012-.002.018a.022.022 0 0 1-.005.004l-.003.001c-.242.11-.566.447-.566.447-.243.23-.425.376-.813.376H6.905c-.005 0-.008-.006-.009-.011 0-.004.002-.008.004-.01a.044.044 0 0 1 .007-.004c.218-.122.543-.46.543-.46.134-.157.4-.363.74-.363Z"></path><path fill="#004997" d="M4.794 11.57h2.09v.001l.001.001c.005.004.005.012-.001.018a.02.02 0 0 1-.005.004l-.004.001c-.242.11-.567.447-.567.447-.242.23-.424.376-.812.376H3.51c-.005 0-.008-.006-.009-.011 0-.004.002-.008.004-.01a.044.044 0 0 1 .007-.004c.218-.122.543-.46.543-.46.134-.157.4-.363.74-.363Z"></path><path fill="#004997" d="M4.685 13.298c.266 0 .474.069.626.207.151.139.227.328.227.567a.688.688 0 0 1-.35.612c.16.061.286.156.378.286a.83.83 0 0 1 .138.492c0 .277-.087.495-.26.656-.174.16-.409.24-.706.24H3.63v-3.06h1.054Zm-.013 1.259c.158 0 .279-.038.363-.114.085-.075.127-.188.127-.336 0-.15-.042-.261-.127-.337-.084-.076-.207-.114-.367-.114h-.652v.901h.656ZM4.69 16c.198 0 .352-.045.461-.136.11-.09.164-.226.164-.406 0-.184-.054-.32-.162-.41-.107-.088-.262-.133-.463-.133h-.673V16h.673Z"></path><path fill="#004997" d="M6.389 16.313a.653.653 0 0 1-.271-.232.618.618 0 0 1-.101-.352c0-.236.09-.419.271-.549.18-.13.421-.195.721-.195h.481v-.113a.431.431 0 0 0-.153-.348.59.59 0 0 0-.393-.129.626.626 0 0 0-.357.101.69.69 0 0 0-.234.262l-.284-.17a.945.945 0 0 1 .875-.52c.274 0 .494.071.662.214.168.143.252.34.252.594v1.483h-.294l-.065-.341a.82.82 0 0 1-.304.27.892.892 0 0 1-.43.105.868.868 0 0 1-.376-.08Zm.758-.326a.612.612 0 0 0 .25-.234.691.691 0 0 0 .093-.365V15.3h-.472c-.2 0-.355.037-.461.11a.342.342 0 0 0-.16.297c0 .114.038.202.114.264a.465.465 0 0 0 .306.095.719.719 0 0 0 .33-.08Z"></path><path fill="#004997" d="M8.387 14.102h.367v.425a.802.802 0 0 1 .73-.46c.225 0 .403.067.534.2.131.132.197.317.197.553v1.539h-.367v-1.47c0-.154-.038-.273-.114-.356-.076-.083-.187-.125-.332-.125a.533.533 0 0 0-.337.116.735.735 0 0 0-.23.33 1.41 1.41 0 0 0-.08.499v1.005h-.368v-2.256Z"></path><path fill="#004997" d="m11.147 15.064.87-.962h.46l-.936 1.037 1.001 1.22h-.454l-.94-1.146v1.146h-.368v-3.096h.367v1.801Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--tsb"><path fill="#243887" d="M18.327 8.329a3.66 3.66 0 0 0-3.162 1.811 3.675 3.675 0 0 1 0 3.723 3.674 3.674 0 0 0 5.026 1.303 3.674 3.674 0 0 0-1.864-6.837Z"></path><path fill="#0968B2" d="M15.165 10.135a3.67 3.67 0 0 0-6.329 0 3.675 3.675 0 0 1 0 3.723 3.67 3.67 0 0 0 6.329 0 3.675 3.675 0 0 1 0-3.723Z"></path><path fill="#37BDED" d="M8.836 10.135A3.67 3.67 0 0 0 3.81 8.833a3.67 3.67 0 0 0-1.302 5.025 3.67 3.67 0 0 0 6.328 0 3.675 3.675 0 0 1 0-3.723Z"></path><path fill="#025D9E" d="M8.836 10.135a3.675 3.675 0 0 1 0 3.723 3.675 3.675 0 0 1 0-3.723Z"></path><path fill="#5E5E5E" d="M8.836 13.858a3.675 3.675 0 0 1 0-3.723 3.675 3.675 0 0 1 0 3.723Zm0-3.718a3.666 3.666 0 0 0 0 3.718 3.666 3.666 0 0 0 0-3.718Z"></path><path fill="#1D335A" d="M15.165 13.858a3.675 3.675 0 0 0 0-3.723 3.675 3.675 0 0 0 0 3.723Z"></path><path fill="#fff" d="M7.053 10.715h-1.07v3.272h-.737v-3.272H4.2v-.67h2.848l.005.67Z"></path><path fill="#fff" d="M17.052 10.045h1.38c.522.005.665.01.855.067a.964.964 0 0 1 .523 1.435.746.746 0 0 1-.49.286.985.985 0 0 1 .814 1.036c.033.452-.248.87-.675 1.023-.253.09-.447.095-.894.095h-1.513v-3.942Zm.728.604v.984h.228c.205 0 .357 0 .447-.005.171.015.343-.014.504-.076.224-.104.323-.366.224-.594a.44.44 0 0 0-.19-.204c-.157-.09-.233-.096-.77-.1h-.443v-.005Zm0 1.536v1.165h.704c.437 0 .551 0 .741-.133a.525.525 0 0 0 .181-.414.628.628 0 0 0-.071-.295c-.18-.319-.59-.323-.842-.323h-.713Z"></path><path fill="#fff" d="m12.379 11.652-.405-.09c-.356-.067-.718-.133-.718-.466 0-.3.343-.476.737-.476.405-.01.785.2.994.552l.58-.466a1.798 1.798 0 0 0-1.53-.747c-.919 0-1.546.476-1.546 1.218a.99.99 0 0 0 .66.955c.162.057.324.105.495.138l.471.1c.152.029.304.071.456.124a.397.397 0 0 1 .295.385c0 .204-.133.39-.333.447a1.143 1.143 0 0 1-.423.066c-.784 0-1.089-.404-1.198-.57l-.594.456c.233.343.58.59.98.694.227.062.46.09.698.09.832 0 1.66-.36 1.66-1.254-.01-.828-.752-1.046-1.28-1.156Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 24 24" class="c-pieIcon c-pieIcon--ulsterBank"><path fill="#02296A" d="M14.282 15.316h-.9v-2.92h.952c.573 0 .952.287.952.756 0 .287-.17.548-.444.639a.66.66 0 0 1 .548.665c-.013.508-.404.86-1.108.86Zm.013-2.516h-.392v.808h.352c.261 0 .47-.156.47-.417 0-.26-.157-.391-.43-.391Zm0 1.226h-.392v.873h.418c.287 0 .508-.13.508-.443-.013-.287-.221-.43-.534-.43Zm3.129.69v-.873c0-.508-.261-.743-.86-.743-.262 0-.51.052-.757.143l-.013.013.052.444.04-.013c.182-.118.403-.17.625-.17.3 0 .417.104.417.378V14c-.782 0-1.251.3-1.251.796 0 .352.234.56.612.56a.762.762 0 0 0 .678-.352c-.013.092-.013.196-.013.287v.04h.496v-.027c-.026-.17-.026-.39-.026-.586Zm-1.004.248a.235.235 0 0 1-.26-.208v-.026c0-.235.26-.352.768-.365v.013c-.013.286-.195.586-.508.586Zm2.62-1.851a.787.787 0 0 0-.704.365c.013-.104.013-.209.013-.3v-.026h-.482v2.177h.508v-1.043c0-.43.222-.743.522-.743.209 0 .3.118.3.391v1.395h.495v-1.512c0-.456-.221-.704-.652-.704Zm2.087 1.043c.013-.013.208-.26.404-.508.117-.144.247-.3.39-.483h-.599c-.104.144-.209.274-.3.391l-.352.47v-1.63h-.508v2.933h.508v-1.017c.04.053.209.313.378.561.105.144.196.3.313.47H22c-.157-.21-.3-.405-.43-.574-.209-.3-.43-.6-.444-.613Z"></path><path fill="#02296A" d="M11.791 9.606a.657.657 0 0 0-.26.195c-.026.04-.053.079-.079.13-.039.092-.117.157-.208.157h-.47a.234.234 0 0 1-.234-.235c0-.13.091-.234.221-.234h.392l-.535-.535a.228.228 0 0 1 0-.326.228.228 0 0 1 .326 0l.534.535v-.378c0-.13.105-.235.222-.235h.013c.13 0 .235.104.235.235v.47c0 .103-.065.182-.157.22Z"></path><path fill="#02296A" d="M11.713 11.575a.199.199 0 0 1-.221-.196v-.404l-.535.534a.244.244 0 0 1-.339 0c-.091-.091-.091-.234 0-.339l.534-.534h-.364a.234.234 0 0 1-.235-.235c0-.13.104-.235.234-.235h.47c.091 0 .182.053.222.144.052.143.169.274.325.326.105.026.157.117.157.221v.47c-.013.143-.117.248-.248.248Z"></path><path fill="#02296A" d="m13.213 10.649-.379-.013.535.534c.091.092.091.235 0 .34a.228.228 0 0 1-.326 0l-.534-.535v.365c0 .13-.105.235-.222.235h-.013a.234.234 0 0 1-.235-.235v-.457c0-.104.065-.182.157-.221a.556.556 0 0 0 .26-.196 1.15 1.15 0 0 0 .079-.13c.039-.091.117-.143.221-.157h.457c.13 0 .234.105.234.235s-.104.235-.221.235h-.014Z"></path><path fill="#02296A" d="M13.213 10.088h-.47a.241.241 0 0 1-.222-.143.555.555 0 0 0-.195-.261c-.04-.026-.078-.052-.13-.078-.092-.04-.157-.118-.157-.222v-.47c0-.13.104-.234.222-.234.13 0 .234.091.234.222v.391l.535-.535a.228.228 0 0 1 .326 0c.091.092.091.235 0 .34l-.535.534h.392c.13 0 .234.104.234.234 0 .105-.104.222-.234.222Z"></path><path fill="#02296A" d="M3.812 12.396v1.708c0 .104 0 .208-.013.313-.039.365-.221.521-.639.521-.378 0-.56-.143-.612-.43a1.618 1.618 0 0 1-.04-.352v-1.76H2v1.8c0 .143.013.286.04.43.103.482.455.742 1.081.742.691 0 1.082-.286 1.174-.834.013-.143.026-.274.026-.417v-1.721h-.509Z"></path><path fill="#02296A" d="M5.299 12.396H4.79v2.933H5.3v-2.933Z"></path><path fill="#02296A" d="M6.563 14.039c-.221-.092-.352-.157-.352-.313 0-.183.17-.235.365-.235.144 0 .287.026.417.065v-.43c-.143-.026-.3-.04-.443-.04-.521 0-.86.249-.86.653 0 .39.247.521.573.652.222.09.365.143.365.3 0 .156-.117.234-.365.234a1.35 1.35 0 0 1-.508-.091l-.052.443c.17.04.352.065.521.065.56 0 .926-.247.926-.69-.013-.392-.3-.496-.587-.613Z"></path><path fill="#02296A" d="m8.154 12.383-.496.143v.626h-.404v.417h.404v1.108c0 .496.17.678.613.678.144 0 .287-.013.43-.052h.013v-.43c-.104.026-.195.04-.3.04-.182 0-.247-.053-.247-.379v-.978h.56v-.417h-.56v-.756h-.013Z"></path><path fill="#02296A" d="m10.8 14.286.014-.234c0-.6-.326-.94-.887-.94-.6 0-.99.444-.99 1.135 0 .743.351 1.108 1.042 1.108.26 0 .509-.039.756-.143l-.039-.404-.039.013c-.196.091-.391.13-.613.13a.596.596 0 0 1-.456-.156.687.687 0 0 1-.156-.496v-.013H10.8Zm-.9-.795c.105 0 .21.04.288.117a.444.444 0 0 1 .117.313h-.847c.052-.26.208-.43.443-.43Z"></path><path fill="#02296A" d="M11.674 13.491c.013-.104.026-.209.026-.313v-.026h-.482v2.177h.508v-.886c0-.391.078-.639.222-.756a.398.398 0 0 1 .26-.092c.053 0 .105.013.157.013l.013-.508h-.104c-.274.013-.509.17-.6.391Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--qrCodeLarge"><path d="M15.125 15.125h-4.883v-4.883h4.883v4.883Zm-3.133-1.75h1.383v-1.383h-1.383v1.383Z"></path><path d="M21.775 15.125h-4.883v-4.883h4.883v4.883Zm-3.133-1.75h1.383v-1.383h-1.383v1.383Z"></path><path d="M15.125 21.775h-4.883v-4.883h4.883v4.883Zm-3.133-1.75h1.383v-1.383h-1.383v1.383Z"></path><path d="M21.775 18.52v-1.628h-1.627v1.628h1.627Z"></path><path d="M18.52 18.52v-1.628h-1.628v1.628h1.628Z"></path><path d="M20.148 20.148V18.52H18.52v1.628h1.628Z"></path><path d="M21.775 21.775v-1.627h-1.627v1.627h1.627Z"></path><path d="M18.52 21.775v-1.627h-1.628v1.627h1.628Z"></path><path d="M25.625 5.5h-5.25v1.75h4.375v4.375h1.75v-5.25a.878.878 0 0 0-.875-.875ZM5.5 6.375v5.25h1.75V7.25h4.375V5.5h-5.25a.878.878 0 0 0-.875.875Zm1.75 14H5.5v5.25c0 .481.394.875.875.875h5.25v-1.75H7.25v-4.375Zm17.5 4.375h-4.375v1.75h5.25a.878.878 0 0 0 .875-.875v-5.25h-1.75v4.375Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--qrCode"><path d="M7.344 11.159V8.656H4.84v2.503h2.503Z"></path><path d="M4.841 7.344h2.503V4.84H4.84v2.503Z"></path><path d="M8.656 7.344h2.503V4.84H8.656v2.503Z"></path><path d="M11.159 9.488v-.832h-.832v.832h.832Z"></path><path d="M9.488 9.488v-.832h-.832v.832h.832Z"></path><path d="M10.328 10.319v-.832h-.832v.832h.832Z"></path><path d="M11.159 11.159v-.832h-.832v.832h.832Z"></path><path d="M9.496 11.15v-.831h-.831v.831h.831Z"></path><path d="M13.906 4.955h-1.312V3.406h-1.549V2.094h2.205c.359 0 .656.297.656.656v2.205Z"></path><path d="M4.955 13.906H2.75a.661.661 0 0 1-.656-.656v-2.205h1.312v1.549h1.549v1.312Z"></path><path d="M13.25 13.906h-2.205v-1.312h1.549v-1.549h1.312v2.205a.661.661 0 0 1-.656.656Z"></path><path d="M3.406 4.955H2.094V2.75c0-.359.297-.656.656-.656h2.205v1.312H3.406v1.549Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--restrictedFilledLarge"><path d="M16 9c-3.859 0-7 3.141-7 7 0 1.663.586 3.194 1.557 4.392l9.835-9.835A6.969 6.969 0 0 0 15.992 9H16Z"></path><path d="M16 3.75C9.245 3.75 3.75 9.245 3.75 16S9.245 28.25 16 28.25 28.25 22.755 28.25 16 22.755 3.75 16 3.75Zm0 21c-4.821 0-8.75-3.929-8.75-8.75S11.179 7.25 16 7.25s8.75 3.929 8.75 8.75-3.929 8.75-8.75 8.75Z"></path><path d="m21.609 11.826-9.783 9.783A6.917 6.917 0 0 0 16 23c3.859 0 7-3.141 7-7 0-1.566-.525-3.01-1.391-4.174Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--restrictedFilled"><path d="M11.102 5.944 5.95 11.098a3.676 3.676 0 0 0 2.056.62A3.727 3.727 0 0 0 11.723 8c0-.761-.227-1.47-.62-2.056Z"></path><path d="M8.005 4.281A3.727 3.727 0 0 0 4.286 8c0 .814.271 1.566.718 2.179l5.18-5.18a3.693 3.693 0 0 0-2.18-.718Z"></path><path d="M8.005 1.219C4.269 1.219 1.224 4.264 1.224 8c0 3.736 3.045 6.781 6.78 6.781 3.737 0 6.782-3.045 6.782-6.781 0-3.736-3.045-6.781-6.781-6.781Zm0 11.812A5.038 5.038 0 0 1 2.974 8a5.038 5.038 0 0 1 5.03-5.031A5.038 5.038 0 0 1 13.037 8a5.037 5.037 0 0 1-5.031 5.031Z"></path></svg>
|