@westpac/ui 0.27.0 → 0.29.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/CHANGELOG.md +14 -0
- package/assets/icons/filled/arrow-back-circle-filled.svg +1 -0
- package/assets/icons/filled/arrow-down-circle-filled.svg +1 -0
- package/assets/icons/filled/arrow-forward-circle-filled.svg +1 -0
- package/assets/icons/filled/arrow-up-circle-filled.svg +1 -0
- package/assets/icons/outlined/arrow-back-circle-outlined.svg +1 -0
- package/assets/icons/outlined/arrow-down-circle-outlined.svg +1 -0
- package/assets/icons/outlined/arrow-forward-circle-outlined.svg +1 -0
- package/assets/icons/outlined/arrow-up-circle-outlined.svg +1 -0
- package/dist/component-type.json +1 -1
- package/dist/components/alert/alert.styles.js +1 -1
- package/dist/components/autocomplete/autocomplete.component.js +2 -13
- package/dist/components/badge/badge.styles.d.ts +2 -2
- package/dist/components/badge/badge.styles.js +2 -2
- package/dist/components/button/button.styles.js +4 -4
- package/dist/components/button-group/components/button-group-button/button-group-button.component.js +6 -2
- package/dist/components/button-group/components/button-group-button/button-group-button.styles.d.ts +24 -0
- package/dist/components/button-group/components/button-group-button/button-group-button.styles.js +9 -1
- package/dist/components/error-message/error-message.styles.js +1 -1
- package/dist/components/filter/components/filter-buttons/filter-buttons.styles.js +1 -1
- package/dist/components/header/header.component.js +1 -1
- package/dist/components/header/header.styles.js +1 -1
- package/dist/components/icon/components/arrow-back-circle-icon.d.ts +2 -0
- package/dist/components/icon/components/arrow-back-circle-icon.js +35 -0
- package/dist/components/icon/components/arrow-down-circle-icon.d.ts +2 -0
- package/dist/components/icon/components/arrow-down-circle-icon.js +35 -0
- package/dist/components/icon/components/arrow-forward-circle-icon.d.ts +2 -0
- package/dist/components/icon/components/arrow-forward-circle-icon.js +35 -0
- package/dist/components/icon/components/arrow-up-circle-icon.d.ts +2 -0
- package/dist/components/icon/components/arrow-up-circle-icon.js +35 -0
- package/dist/components/icon/index.d.ts +4 -0
- package/dist/components/icon/index.js +4 -0
- package/dist/components/progress-indicator/progress-indicator.component.d.ts +1 -1
- package/dist/components/progress-indicator/progress-indicator.component.js +69 -9
- package/dist/components/progress-indicator/progress-indicator.styles.d.ts +257 -2
- package/dist/components/progress-indicator/progress-indicator.styles.js +87 -1
- package/dist/components/progress-indicator/progress-indicator.types.d.ts +16 -1
- package/dist/components/symbol/components/logos/bt-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-logo.js +35 -0
- package/dist/components/symbol/components/logos/bt-multibrand-large-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-multibrand-large-logo.js +41 -0
- package/dist/components/symbol/components/logos/bt-multibrand-small-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-multibrand-small-logo.js +50 -0
- package/dist/components/symbol/components/logos/bt-panorama-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-panorama-logo.js +69 -0
- package/dist/components/symbol/components/logos/bt-panorama-multibrand-large-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-panorama-multibrand-large-logo.js +76 -0
- package/dist/components/symbol/components/logos/bt-panorama-multibrand-small-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-panorama-multibrand-small-logo.js +76 -0
- package/dist/components/symbol/components/logos/bt-panorama-reversed-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-panorama-reversed-logo.js +69 -0
- package/dist/components/symbol/components/logos/bt-reversed-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-reversed-logo.js +35 -0
- package/dist/components/symbol/index.d.ts +8 -0
- package/dist/components/symbol/index.js +8 -0
- package/dist/css/westpac-ui.css +8337 -4601
- package/dist/css/westpac-ui.min.css +8337 -4601
- package/dist/tailwind/tailwind-plugin.d.ts +2 -2
- package/dist/tailwind/tailwind-transformer.d.ts +6 -9
- package/dist/tailwind/themes/btpl.d.ts +2 -0
- package/dist/tailwind/themes/btpl.js +30 -0
- package/dist/tailwind/themes/index.d.ts +3 -1
- package/dist/tailwind/themes/index.js +11 -0
- package/package.json +5 -5
- package/src/components/alert/alert.styles.ts +1 -1
- package/src/components/autocomplete/autocomplete.component.tsx +2 -12
- package/src/components/badge/badge.styles.ts +2 -2
- package/src/components/button/button.styles.ts +4 -4
- package/src/components/button-group/components/button-group-button/button-group-button.component.tsx +3 -2
- package/src/components/button-group/components/button-group-button/button-group-button.styles.ts +9 -1
- package/src/components/error-message/error-message.styles.ts +1 -1
- package/src/components/filter/components/filter-buttons/filter-buttons.styles.ts +1 -1
- package/src/components/header/header.component.tsx +1 -1
- package/src/components/header/header.styles.ts +1 -1
- package/src/components/icon/components/arrow-back-circle-icon.tsx +37 -0
- package/src/components/icon/components/arrow-down-circle-icon.tsx +37 -0
- package/src/components/icon/components/arrow-forward-circle-icon.tsx +37 -0
- package/src/components/icon/components/arrow-up-circle-icon.tsx +37 -0
- package/src/components/icon/index.ts +4 -0
- package/src/components/progress-indicator/progress-indicator.component.tsx +53 -7
- package/src/components/progress-indicator/progress-indicator.styles.ts +37 -1
- package/src/components/progress-indicator/progress-indicator.types.ts +17 -1
- package/src/components/symbol/components/logos/bt-logo.tsx +35 -0
- package/src/components/symbol/components/logos/bt-multibrand-large-logo.tsx +42 -0
- package/src/components/symbol/components/logos/bt-multibrand-small-logo.tsx +49 -0
- package/src/components/symbol/components/logos/bt-panorama-logo.tsx +76 -0
- package/src/components/symbol/components/logos/bt-panorama-multibrand-large-logo.tsx +80 -0
- package/src/components/symbol/components/logos/bt-panorama-multibrand-small-logo.tsx +80 -0
- package/src/components/symbol/components/logos/bt-panorama-reversed-logo.tsx +76 -0
- package/src/components/symbol/components/logos/bt-reversed-logo.tsx +35 -0
- package/src/components/symbol/index.ts +8 -0
- package/src/tailwind/themes/btpl.ts +32 -0
- package/src/tailwind/themes/index.ts +14 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
function _extends() {
|
|
2
|
+
_extends = Object.assign || function(target) {
|
|
3
|
+
for(var i = 1; i < arguments.length; i++){
|
|
4
|
+
var source = arguments[i];
|
|
5
|
+
for(var key in source){
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
7
|
+
target[key] = source[key];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return target;
|
|
12
|
+
};
|
|
13
|
+
return _extends.apply(this, arguments);
|
|
14
|
+
}
|
|
15
|
+
import { clsx } from 'clsx';
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { Symbol } from '../../symbol.component.js';
|
|
18
|
+
export function BTPanoramaMultibrandLargeLogo({ 'aria-label': ariaLabel = 'BT Panorama' , copyrightYear ='2025' , viewBoxWidth =180 , viewBoxHeight =65 , align ='left' , offset =[
|
|
19
|
+
null,
|
|
20
|
+
4.09,
|
|
21
|
+
8.18
|
|
22
|
+
] , className , ...props }) {
|
|
23
|
+
return React.createElement(Symbol, _extends({
|
|
24
|
+
className: clsx('h-[65px] w-[180px]', className),
|
|
25
|
+
"aria-label": ariaLabel,
|
|
26
|
+
align: align,
|
|
27
|
+
offset: offset,
|
|
28
|
+
copyrightYear: copyrightYear,
|
|
29
|
+
viewBoxWidth: viewBoxWidth,
|
|
30
|
+
viewBoxHeight: viewBoxHeight
|
|
31
|
+
}, props), React.createElement("g", {
|
|
32
|
+
"clip-path": "url(#clip0_2155_212)"
|
|
33
|
+
}, React.createElement("path", {
|
|
34
|
+
d: "M35.9081 22.6837V26.3817H41.1136V42.2796H45.0504V26.3817H50.2439V22.6837H35.9081Z",
|
|
35
|
+
fill: "black"
|
|
36
|
+
}), React.createElement("path", {
|
|
37
|
+
"fill-rule": "evenodd",
|
|
38
|
+
"clip-rule": "evenodd",
|
|
39
|
+
d: "M33.3292 31.8217C34.4743 30.9068 35.1333 29.5164 35.116 28.0524C35.116 26.3817 34.6454 25.05 33.6092 24.1284C32.5728 23.2069 31.0898 22.6837 29.166 22.6837H20.0714V30.05L22.9362 32.2557L20.0714 34.4674V42.2796H29.6544C33.4364 42.2796 35.8605 40.0025 35.8605 36.4592C35.97 34.5583 34.9887 32.7604 33.3292 31.8217ZM24.038 26.2866H29.166C30.4644 26.2866 31.2804 27.0298 31.2804 28.2605C31.2895 28.8156 31.0669 29.3495 30.6658 29.7341C30.2646 30.1187 29.7213 30.3193 29.166 30.2878H24.0439L24.038 26.2866ZM24.0439 38.647H29.166V38.653C30.3811 38.653 31.8521 38.2427 31.8521 36.2688C31.8521 34.7409 30.8635 33.8908 29.0767 33.8908H24.0439V38.647Z",
|
|
40
|
+
fill: "black"
|
|
41
|
+
}), React.createElement("path", {
|
|
42
|
+
d: "M7.1173 33.2487C6.69735 33.2462 6.32478 32.9792 6.18818 32.5828C6.1457 32.481 6.12345 32.3719 6.12266 32.2617C6.12087 32.155 6.14327 32.0494 6.18818 31.9526C6.31735 31.5524 6.69022 31.2811 7.11134 31.2807H17.963C17.7673 30.0665 17.1992 28.9427 16.337 28.0643L16.2894 28.0108L14.9255 26.6374L14.8719 26.5958L10.2799 22L0 32.2557L10.274 42.5175L14.8481 37.9336L14.9255 37.8623L16.2894 36.4948L16.3549 36.4235C17.2019 35.5467 17.7608 34.433 17.957 33.2308L7.1173 33.2487Z",
|
|
43
|
+
fill: "#007BC6"
|
|
44
|
+
}), React.createElement("path", {
|
|
45
|
+
d: "M57.5682 22.6361H66.0293C66.5859 22.6361 67.1983 22.7011 67.8663 22.831C68.5528 22.961 69.1836 23.2301 69.7588 23.6385C70.3527 24.0284 70.8443 24.5945 71.234 25.3371C71.6236 26.0611 71.8185 27.0171 71.8185 28.2051C71.8185 29.9501 71.2804 31.2959 70.2042 32.2427C69.128 33.1894 67.5879 33.6628 65.584 33.6628H58.7928V42.5175H57.5682V22.6361ZM58.7928 32.6047H65.7789C66.6694 32.6047 67.421 32.4747 68.0333 32.2148C68.6642 31.9364 69.1651 31.5837 69.5362 31.1567C69.9074 30.7298 70.1764 30.2564 70.3434 29.7366C70.5103 29.2168 70.5939 28.6971 70.5939 28.1773C70.5939 27.806 70.5382 27.3698 70.4268 26.8686C70.3155 26.3488 70.0928 25.8569 69.7588 25.3928C69.4249 24.9101 68.9518 24.511 68.3394 24.1954C67.7457 23.8613 66.9478 23.6942 65.9458 23.6942H58.7928V32.6047Z",
|
|
46
|
+
fill: "black"
|
|
47
|
+
}), React.createElement("path", {
|
|
48
|
+
d: "M82.4657 39.6775H82.4101C82.2431 40.1043 82.0018 40.5128 81.6864 40.9026C81.371 41.2738 80.9813 41.608 80.5175 41.905C80.0721 42.202 79.5619 42.4341 78.9867 42.6011C78.4115 42.7682 77.7806 42.8518 77.094 42.8518C75.5726 42.8518 74.3943 42.5269 73.5593 41.8772C72.7243 41.2089 72.3069 40.188 72.3069 38.8143C72.3069 37.9789 72.4738 37.3013 72.8078 36.7816C73.1418 36.2432 73.5593 35.8255 74.0603 35.5285C74.5798 35.213 75.1458 34.9902 75.7581 34.8603C76.389 34.7302 76.992 34.6375 77.5672 34.5817L79.2093 34.4425C79.9701 34.3869 80.5639 34.3033 80.9906 34.192C81.436 34.062 81.77 33.8949 81.9926 33.6907C82.2153 33.468 82.3544 33.1895 82.4101 32.8553C82.4657 32.5212 82.4936 32.1035 82.4936 31.6023C82.4936 31.2125 82.4193 30.8505 82.2709 30.5164C82.1225 30.1822 81.8905 29.8852 81.5751 29.6253C81.2597 29.3654 80.8515 29.1612 80.3505 29.0127C79.8495 28.8642 79.2372 28.79 78.5135 28.79C77.2332 28.79 76.1942 29.1056 75.3963 29.7367C74.617 30.3679 74.1902 31.3239 74.1159 32.6048H73.0583C73.1326 31.0269 73.6335 29.8481 74.5613 29.0684C75.5076 28.2702 76.8436 27.8711 78.5692 27.8711C80.2948 27.8711 81.5473 28.2145 82.3266 28.9014C83.1245 29.5696 83.5234 30.4514 83.5234 31.5466V39.8724C83.5234 40.0766 83.5234 40.2807 83.5234 40.4849C83.542 40.6891 83.579 40.8748 83.6347 41.0418C83.6904 41.2089 83.7832 41.3481 83.913 41.4595C84.0429 41.5523 84.2285 41.5988 84.4697 41.5988C84.6553 41.5988 84.915 41.5709 85.249 41.5152V42.4062C84.9707 42.4805 84.6831 42.5176 84.3862 42.5176C83.9594 42.5176 83.6162 42.462 83.3564 42.3506C83.1152 42.2392 82.9296 42.0907 82.7997 41.905C82.6698 41.7194 82.577 41.5059 82.5214 41.2646C82.4843 41.0047 82.4657 40.7262 82.4657 40.4293V39.6775ZM82.4657 34.3869C82.206 34.7025 81.807 34.9159 81.2689 35.0273C80.7494 35.1387 80.1649 35.2222 79.5155 35.2779L77.7342 35.445C77.2147 35.5007 76.6951 35.5842 76.1756 35.6956C75.656 35.7884 75.1829 35.9555 74.7562 36.1968C74.3479 36.4381 74.0139 36.7722 73.7542 37.1992C73.4943 37.6076 73.3645 38.1459 73.3645 38.8143C73.3645 39.8724 73.6985 40.6613 74.3665 41.1811C75.0344 41.6823 75.953 41.9329 77.1219 41.9329C78.328 41.9329 79.2836 41.7194 79.9887 41.2925C80.6937 40.8469 81.2319 40.3457 81.6029 39.7888C81.974 39.2134 82.206 38.6657 82.2988 38.1459C82.4101 37.6076 82.4657 37.2456 82.4657 37.06V34.3869Z",
|
|
49
|
+
fill: "black"
|
|
50
|
+
}), React.createElement("path", {
|
|
51
|
+
d: "M86.8911 28.2052H87.9488V31.2682H88.0045C88.19 30.7299 88.4498 30.2565 88.7838 29.8481C89.1363 29.4211 89.5352 29.0592 89.9806 28.7621C90.4444 28.4651 90.9454 28.2424 91.4835 28.0939C92.0216 27.9453 92.569 27.8711 93.1256 27.8711C93.9607 27.8711 94.6657 27.9732 95.2409 28.1774C95.8344 28.3816 96.3174 28.6508 96.6878 28.9849C97.0591 29.319 97.3464 29.6996 97.5507 30.1265C97.7741 30.5349 97.9316 30.9526 98.0242 31.3796C98.1168 31.8066 98.1731 32.2242 98.1912 32.6326C98.2093 33.0225 98.2189 33.3658 98.2189 33.6629V42.5176H97.1613V33.468C97.1613 33.1153 97.1336 32.6698 97.0782 32.1314C97.0219 31.593 96.8548 31.0826 96.5771 30.5999C96.3174 30.0987 95.9089 29.6717 95.3522 29.319C94.8141 28.9663 94.0627 28.79 93.0978 28.79C92.2814 28.79 91.5577 28.9385 90.9268 29.2355C90.296 29.5325 89.7579 29.9502 89.3126 30.4885C88.8672 31.0083 88.524 31.6394 88.2827 32.382C88.0601 33.106 87.9488 33.9042 87.9488 34.7766V42.5176H86.8911V28.2052Z",
|
|
52
|
+
fill: "black"
|
|
53
|
+
}), React.createElement("path", {
|
|
54
|
+
d: "M100.656 35.3614C100.656 34.3404 100.795 33.3844 101.073 32.4934C101.37 31.5838 101.798 30.7855 102.354 30.0987C102.911 29.4119 103.597 28.8735 104.413 28.4837C105.23 28.0753 106.166 27.8711 107.224 27.8711C108.282 27.8711 109.219 28.0753 110.035 28.4837C110.852 28.8735 111.539 29.4119 112.095 30.0987C112.652 30.7855 113.069 31.5838 113.348 32.4934C113.644 33.3844 113.793 34.3404 113.793 35.3614C113.793 36.3824 113.644 37.3477 113.348 38.2573C113.069 39.167 112.652 39.9652 112.095 40.652C111.539 41.3202 110.852 41.8586 110.035 42.2671C109.219 42.6569 108.282 42.8518 107.224 42.8518C106.166 42.8518 105.23 42.6569 104.413 42.2671C103.597 41.8586 102.911 41.3202 102.354 40.652C101.798 39.9652 101.37 39.167 101.073 38.2573C100.795 37.3477 100.656 36.3824 100.656 35.3614ZM101.714 35.3614C101.714 36.2153 101.834 37.0414 102.075 37.8397C102.317 38.6194 102.669 39.3154 103.133 39.928C103.597 40.5407 104.172 41.0325 104.859 41.4039C105.545 41.7566 106.334 41.9329 107.224 41.9329C108.115 41.9329 108.904 41.7566 109.59 41.4039C110.277 41.0325 110.852 40.5407 111.316 39.928C111.779 39.3154 112.132 38.6194 112.374 37.8397C112.614 37.0414 112.736 36.2153 112.736 35.3614C112.736 34.5076 112.614 33.6907 112.374 32.9111C112.132 32.1128 111.779 31.4074 111.316 30.7948C110.852 30.1822 110.277 29.6996 109.59 29.3469C108.904 28.9756 108.115 28.79 107.224 28.79C106.334 28.79 105.545 28.9756 104.859 29.3469C104.172 29.6996 103.597 30.1822 103.133 30.7948C102.669 31.4074 102.317 32.1128 102.075 32.9111C101.834 33.6907 101.714 34.5076 101.714 35.3614Z",
|
|
55
|
+
fill: "black"
|
|
56
|
+
}), React.createElement("path", {
|
|
57
|
+
d: "M117.331 31.3796H117.414C117.544 30.9155 117.776 30.4792 118.11 30.0708C118.463 29.6624 118.88 29.3097 119.362 29.0127C119.863 28.7157 120.411 28.493 121.005 28.3444C121.617 28.1774 122.248 28.1031 122.897 28.1217V29.1798C122.34 29.1055 121.701 29.1612 120.977 29.3469C120.272 29.5325 119.594 29.9409 118.945 30.572C118.685 30.8505 118.453 31.1197 118.249 31.3796C118.064 31.6394 117.905 31.9272 117.776 32.2428C117.646 32.5584 117.544 32.9111 117.47 33.3009C117.396 33.6907 117.349 34.1548 117.331 34.6931V42.5176H116.273V28.2052H117.331V31.3796Z",
|
|
58
|
+
fill: "black"
|
|
59
|
+
}), React.createElement("path", {
|
|
60
|
+
d: "M132.966 39.6775H132.911C132.744 40.1043 132.502 40.5128 132.187 40.9026C131.872 41.2738 131.482 41.608 131.018 41.905C130.573 42.202 130.063 42.4341 129.488 42.6011C128.912 42.7682 128.281 42.8518 127.595 42.8518C126.073 42.8518 124.896 42.5269 124.06 41.8772C123.225 41.2089 122.808 40.188 122.808 38.8143C122.808 37.9789 122.975 37.3013 123.309 36.7816C123.643 36.2432 124.06 35.8255 124.561 35.5285C125.081 35.213 125.647 34.9902 126.259 34.8603C126.89 34.7302 127.493 34.6375 128.068 34.5817L129.71 34.4425C130.471 34.3869 131.065 34.3033 131.491 34.192C131.937 34.062 132.271 33.8949 132.494 33.6907C132.716 33.468 132.856 33.1895 132.911 32.8553C132.966 32.5212 132.995 32.1035 132.995 31.6023C132.995 31.2125 132.92 30.8505 132.772 30.5164C132.624 30.1822 132.392 29.8852 132.076 29.6253C131.761 29.3654 131.352 29.1612 130.851 29.0127C130.351 28.8642 129.738 28.79 129.014 28.79C127.734 28.79 126.695 29.1056 125.897 29.7367C125.118 30.3679 124.691 31.3239 124.617 32.6048H123.559C123.634 31.0269 124.135 29.8481 125.063 29.0684C126.009 28.2702 127.345 27.8711 129.07 27.8711C130.796 27.8711 132.048 28.2145 132.828 28.9014C133.626 29.5696 134.024 30.4514 134.024 31.5466V39.8724C134.024 40.0766 134.024 40.2807 134.024 40.4849C134.043 40.6891 134.08 40.8748 134.136 41.0418C134.191 41.2089 134.284 41.3481 134.414 41.4595C134.544 41.5523 134.729 41.5988 134.971 41.5988C135.156 41.5988 135.416 41.5709 135.75 41.5152V42.4062C135.472 42.4805 135.184 42.5176 134.887 42.5176C134.46 42.5176 134.117 42.462 133.858 42.3506C133.616 42.2392 133.43 42.0907 133.3 41.905C133.171 41.7194 133.078 41.5059 133.023 41.2646C132.985 41.0047 132.966 40.7262 132.966 40.4293V39.6775ZM132.966 34.3869C132.707 34.7025 132.308 34.9159 131.77 35.0273C131.25 35.1387 130.666 35.2222 130.017 35.2779L128.236 35.445C127.715 35.5007 127.196 35.5842 126.677 35.6956C126.157 35.7884 125.684 35.9555 125.257 36.1968C124.849 36.4381 124.515 36.7722 124.255 37.1992C123.995 37.6076 123.866 38.1459 123.866 38.8143C123.866 39.8724 124.2 40.6613 124.867 41.1811C125.535 41.6823 126.453 41.9329 127.623 41.9329C128.829 41.9329 129.785 41.7194 130.489 41.2925C131.195 40.8469 131.733 40.3457 132.104 39.7888C132.475 39.2134 132.707 38.6657 132.8 38.1459C132.911 37.6076 132.966 37.2456 132.966 37.06V34.3869Z",
|
|
61
|
+
fill: "black"
|
|
62
|
+
}), React.createElement("path", {
|
|
63
|
+
d: "M137.42 28.2052H138.478V31.129H138.533C138.645 30.6835 138.84 30.2658 139.117 29.8759C139.396 29.4675 139.73 29.1148 140.12 28.8178C140.528 28.5208 140.973 28.2888 141.456 28.1217C141.956 27.9546 142.476 27.8711 143.014 27.8711C143.701 27.8711 144.295 27.9639 144.796 28.1495C145.296 28.3166 145.724 28.5487 146.076 28.8457C146.428 29.1241 146.707 29.449 146.911 29.8202C147.115 30.173 147.254 30.5349 147.328 30.9062H147.384C147.81 29.9038 148.376 29.152 149.082 28.6508C149.805 28.131 150.751 27.8711 151.921 27.8711C152.57 27.8711 153.163 27.9732 153.702 28.1774C154.258 28.363 154.732 28.66 155.121 29.0684C155.53 29.4583 155.845 29.9595 156.068 30.5721C156.291 31.1847 156.401 31.9086 156.401 32.744V42.5176H155.344V32.7162C155.344 31.8066 155.205 31.0918 154.927 30.5721C154.649 30.0523 154.315 29.6625 153.924 29.4026C153.554 29.1241 153.173 28.9571 152.784 28.9014C152.412 28.8271 152.125 28.79 151.921 28.79C151.272 28.79 150.668 28.9014 150.112 29.1241C149.573 29.3469 149.1 29.681 148.692 30.1265C148.302 30.5721 147.997 31.129 147.773 31.7972C147.551 32.447 147.44 33.1988 147.44 34.0527V42.5176H146.382V32.7162C146.382 31.8251 146.243 31.1197 145.964 30.5999C145.705 30.0616 145.39 29.6625 145.018 29.4026C144.666 29.1427 144.295 28.9756 143.905 28.9014C143.534 28.8271 143.237 28.79 143.014 28.79C142.514 28.79 141.993 28.8921 141.456 29.0963C140.918 29.3005 140.426 29.6161 139.98 30.043C139.535 30.47 139.174 31.0176 138.895 31.6859C138.617 32.3542 138.478 33.1431 138.478 34.0527V42.5176H137.42V28.2052Z",
|
|
64
|
+
fill: "black"
|
|
65
|
+
}), React.createElement("path", {
|
|
66
|
+
d: "M169.035 39.6775H168.979C168.812 40.1043 168.571 40.5128 168.256 40.9026C167.94 41.2738 167.55 41.608 167.087 41.905C166.642 42.202 166.131 42.4341 165.555 42.6011C164.981 42.7682 164.35 42.8518 163.664 42.8518C162.142 42.8518 160.963 42.5269 160.129 41.8772C159.294 41.2089 158.876 40.188 158.876 38.8143C158.876 37.9789 159.043 37.3013 159.377 36.7816C159.711 36.2432 160.129 35.8255 160.629 35.5285C161.149 35.213 161.715 34.9902 162.327 34.8603C162.958 34.7302 163.561 34.6375 164.136 34.5817L165.779 34.4425C166.54 34.3869 167.133 34.3033 167.56 34.192C168.005 34.062 168.339 33.8949 168.562 33.6907C168.785 33.468 168.924 33.1895 168.979 32.8553C169.035 32.5212 169.062 32.1035 169.062 31.6023C169.062 31.2125 168.989 30.8505 168.84 30.5164C168.692 30.1822 168.46 29.8852 168.144 29.6253C167.829 29.3654 167.421 29.1612 166.919 29.0127C166.418 28.8642 165.806 28.79 165.083 28.79C163.803 28.79 162.763 29.1056 161.965 29.7367C161.186 30.3679 160.76 31.3239 160.685 32.6048H159.628C159.702 31.0269 160.202 29.8481 161.13 29.0684C162.077 28.2702 163.412 27.8711 165.138 27.8711C166.864 27.8711 168.116 28.2145 168.895 28.9014C169.693 29.5696 170.092 30.4514 170.092 31.5466V39.8724C170.092 40.0766 170.092 40.2807 170.092 40.4849C170.111 40.6891 170.149 40.8748 170.204 41.0418C170.259 41.2089 170.352 41.3481 170.482 41.4595C170.612 41.5523 170.798 41.5988 171.039 41.5988C171.224 41.5988 171.484 41.5709 171.818 41.5152V42.4062C171.539 42.4805 171.252 42.5176 170.955 42.5176C170.529 42.5176 170.185 42.462 169.925 42.3506C169.685 42.2392 169.499 42.0907 169.369 41.905C169.239 41.7194 169.146 41.5059 169.091 41.2646C169.054 41.0047 169.035 40.7262 169.035 40.4293V39.6775ZM169.035 34.3869C168.775 34.7025 168.376 34.9159 167.838 35.0273C167.318 35.1387 166.734 35.2222 166.084 35.2779L164.303 35.445C163.784 35.5007 163.265 35.5842 162.745 35.6956C162.225 35.7884 161.753 35.9555 161.325 36.1968C160.917 36.4381 160.583 36.7722 160.324 37.1992C160.064 37.6076 159.934 38.1459 159.934 38.8143C159.934 39.8724 160.267 40.6613 160.935 41.1811C161.604 41.6823 162.522 41.9329 163.691 41.9329C164.897 41.9329 165.852 41.7194 166.558 41.2925C167.263 40.8469 167.801 40.3457 168.172 39.7888C168.543 39.2134 168.775 38.6657 168.868 38.1459C168.979 37.6076 169.035 37.2456 169.035 37.06V34.3869Z",
|
|
67
|
+
fill: "black"
|
|
68
|
+
})), React.createElement("defs", null, React.createElement("clipPath", {
|
|
69
|
+
id: "clip0_2155_212"
|
|
70
|
+
}, React.createElement("rect", {
|
|
71
|
+
width: "171.818",
|
|
72
|
+
height: "21",
|
|
73
|
+
fill: "white",
|
|
74
|
+
transform: "translate(0 22)"
|
|
75
|
+
}))));
|
|
76
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
function _extends() {
|
|
2
|
+
_extends = Object.assign || function(target) {
|
|
3
|
+
for(var i = 1; i < arguments.length; i++){
|
|
4
|
+
var source = arguments[i];
|
|
5
|
+
for(var key in source){
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
7
|
+
target[key] = source[key];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return target;
|
|
12
|
+
};
|
|
13
|
+
return _extends.apply(this, arguments);
|
|
14
|
+
}
|
|
15
|
+
import { clsx } from 'clsx';
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { Symbol } from '../../symbol.component.js';
|
|
18
|
+
export function BTPanoramaMultibrandSmallLogo({ 'aria-label': ariaLabel = 'BT Panorama' , copyrightYear ='2025' , viewBoxWidth =122 , viewBoxHeight =44 , align ='left' , offset =[
|
|
19
|
+
null,
|
|
20
|
+
3.725,
|
|
21
|
+
7.45
|
|
22
|
+
] , className , ...props }) {
|
|
23
|
+
return React.createElement(Symbol, _extends({
|
|
24
|
+
className: clsx('h-[44px] w-[122px]', className),
|
|
25
|
+
"aria-label": ariaLabel,
|
|
26
|
+
align: align,
|
|
27
|
+
offset: offset,
|
|
28
|
+
copyrightYear: copyrightYear,
|
|
29
|
+
viewBoxWidth: viewBoxWidth,
|
|
30
|
+
viewBoxHeight: viewBoxHeight
|
|
31
|
+
}, props), React.createElement("g", {
|
|
32
|
+
"clip-path": "url(#clip0_2155_223)"
|
|
33
|
+
}, React.createElement("path", {
|
|
34
|
+
d: "M23.9387 15.4558V17.9212H27.4091V28.5197H30.0336V17.9212H33.4959V15.4558H23.9387Z",
|
|
35
|
+
fill: "black"
|
|
36
|
+
}), React.createElement("path", {
|
|
37
|
+
"fill-rule": "evenodd",
|
|
38
|
+
"clip-rule": "evenodd",
|
|
39
|
+
d: "M22.2195 21.5478C22.9829 20.9379 23.4222 20.0109 23.4107 19.0349C23.4107 17.9212 23.097 17.0333 22.4061 16.419C21.7152 15.8046 20.7266 15.4558 19.4441 15.4558H13.381V20.3667L15.2908 21.8372L13.381 23.3116V28.5197H19.7696C22.291 28.5197 23.907 27.0017 23.907 24.6394C23.9801 23.3722 23.3258 22.1736 22.2195 21.5478ZM16.0254 17.8577H19.4441C20.3096 17.8577 20.8536 18.3532 20.8536 19.1736C20.8597 19.5437 20.7113 19.8996 20.4439 20.1561C20.1765 20.4125 19.8142 20.5462 19.4441 20.5252H16.0293L16.0254 17.8577ZM16.0293 26.098H19.4441V26.102C20.2541 26.102 21.2348 25.8285 21.2348 24.5126C21.2348 23.4939 20.5757 22.9272 19.3845 22.9272H16.0293V26.098Z",
|
|
40
|
+
fill: "black"
|
|
41
|
+
}), React.createElement("path", {
|
|
42
|
+
d: "M4.74487 22.4991C4.4649 22.4974 4.21652 22.3195 4.12545 22.0552C4.09713 21.9873 4.0823 21.9146 4.08178 21.8412C4.08058 21.77 4.09552 21.6996 4.12545 21.635C4.21157 21.3683 4.46015 21.1874 4.7409 21.1871H11.9753C11.8449 20.3777 11.4661 19.6285 10.8914 19.0429L10.8596 19.0072L9.95031 18.0916L9.91461 18.0638L6.85325 15L0 21.8372L6.84931 28.6783L9.8987 25.6224L9.95031 25.5748L10.8596 24.6632L10.9033 24.6156C11.4679 24.0311 11.8405 23.2886 11.9713 22.4872L4.74487 22.4991Z",
|
|
43
|
+
fill: "#007BC6"
|
|
44
|
+
}), React.createElement("path", {
|
|
45
|
+
d: "M38.3788 15.4241H44.0195C44.3906 15.4241 44.7988 15.4674 45.2441 15.554C45.7018 15.6406 46.1224 15.8201 46.5058 16.0924C46.9017 16.3522 47.2295 16.7297 47.4893 17.2247C47.749 17.7074 47.8789 18.3447 47.8789 19.1368C47.8789 20.3001 47.5202 21.1973 46.8028 21.8285C46.0853 22.4596 45.0586 22.7752 43.7226 22.7752H39.1952V28.6783H38.3788V15.4241ZM39.1952 22.0698H43.8525C44.4463 22.0698 44.9473 21.9832 45.3555 21.8099C45.7761 21.6243 46.11 21.3891 46.3574 21.1045C46.6049 20.8198 46.7842 20.5043 46.8956 20.1577C47.0069 19.8112 47.0625 19.4647 47.0625 19.1182C47.0625 18.8707 47.0254 18.5799 46.9512 18.2457C46.877 17.8992 46.7285 17.5712 46.5058 17.2618C46.2832 16.9401 45.9678 16.674 45.5596 16.4636C45.1638 16.2409 44.6318 16.1295 43.9638 16.1295H39.1952V22.0698Z",
|
|
46
|
+
fill: "black"
|
|
47
|
+
}), React.createElement("path", {
|
|
48
|
+
d: "M54.9772 26.785H54.9401C54.8288 27.0696 54.6679 27.3419 54.4576 27.6017C54.2473 27.8492 53.9875 28.072 53.6783 28.27C53.3814 28.468 53.0413 28.6227 52.6578 28.7341C52.2743 28.8455 51.8538 28.9012 51.396 28.9012C50.3817 28.9012 49.5962 28.6846 49.0396 28.2515C48.4829 27.806 48.2046 27.1253 48.2046 26.2095C48.2046 25.6526 48.3159 25.2009 48.5386 24.8544C48.7612 24.4955 49.0396 24.217 49.3735 24.019C49.7199 23.8086 50.0972 23.6601 50.5054 23.5735C50.926 23.4868 51.328 23.425 51.7115 23.3878L52.8062 23.295C53.3134 23.2579 53.7093 23.2022 53.9937 23.128C54.2906 23.0413 54.5133 22.9299 54.6617 22.7938C54.8102 22.6453 54.903 22.4597 54.9401 22.2369C54.9772 22.0142 54.9957 21.7357 54.9957 21.4015C54.9957 21.1417 54.9462 20.9003 54.8473 20.6776C54.7483 20.4548 54.5937 20.2568 54.3834 20.0836C54.1731 19.9103 53.901 19.7742 53.567 19.6752C53.233 19.5762 52.8248 19.5267 52.3424 19.5267C51.4888 19.5267 50.7961 19.737 50.2642 20.1578C49.7447 20.5786 49.4601 21.2159 49.4106 22.0698H48.7055C48.755 21.0179 49.089 20.2321 49.7076 19.7123C50.3384 19.1801 51.229 18.9141 52.3795 18.9141C53.5299 18.9141 54.3648 19.143 54.8844 19.6009C55.4163 20.0464 55.6822 20.6343 55.6822 21.3644V26.9149C55.6822 27.051 55.6822 27.1872 55.6822 27.3233C55.6947 27.4594 55.7193 27.5832 55.7564 27.6945C55.7936 27.806 55.8555 27.8987 55.942 27.973C56.0286 28.0349 56.1523 28.0658 56.3131 28.0658C56.4368 28.0658 56.61 28.0473 56.8327 28.0101V28.6041C56.6471 28.6537 56.4554 28.6784 56.2575 28.6784C55.9729 28.6784 55.7441 28.6413 55.5709 28.567C55.4101 28.4928 55.2864 28.3938 55.1998 28.27C55.1132 28.1463 55.0514 28.0039 55.0143 27.8431C54.9896 27.6698 54.9772 27.4842 54.9772 27.2862V26.785ZM54.9772 23.2579C54.804 23.4683 54.538 23.6106 54.1793 23.6849C53.8329 23.7591 53.4433 23.8148 53.0103 23.8519L51.8228 23.9633C51.4765 24.0004 51.1301 24.0561 50.7837 24.1304C50.4373 24.1922 50.122 24.3037 49.8374 24.4645C49.5653 24.6254 49.3426 24.8481 49.1694 25.1328C48.9962 25.4051 48.9097 25.7639 48.9097 26.2095C48.9097 26.9149 49.1323 27.4409 49.5777 27.7874C50.0229 28.1215 50.6353 28.2886 51.4146 28.2886C52.2186 28.2886 52.8557 28.1463 53.3258 27.8616C53.7958 27.5646 54.1546 27.2305 54.4019 26.8592C54.6494 26.4756 54.804 26.1105 54.8659 25.7639C54.9401 25.4051 54.9772 25.1637 54.9772 25.04V23.2579Z",
|
|
49
|
+
fill: "black"
|
|
50
|
+
}), React.createElement("path", {
|
|
51
|
+
d: "M57.9274 19.1368H58.6325V21.1788H58.6696C58.7933 20.8199 58.9665 20.5043 59.1891 20.2321C59.4242 19.9474 59.6901 19.7061 59.987 19.5081C60.2962 19.3101 60.6303 19.1616 60.989 19.0626C61.3477 18.9636 61.7127 18.9141 62.0837 18.9141C62.6404 18.9141 63.1104 18.9821 63.4939 19.1183C63.8896 19.2544 64.2116 19.4338 64.4585 19.6566C64.706 19.8794 64.8976 20.1331 65.0338 20.4177C65.1827 20.69 65.2877 20.9684 65.3494 21.253C65.4111 21.5377 65.4487 21.8161 65.4608 22.0884C65.4729 22.3483 65.4792 22.5772 65.4792 22.7752V28.6784H64.7741V22.6453C64.7741 22.4102 64.7557 22.1132 64.7188 21.7543C64.6812 21.3954 64.5699 21.055 64.3847 20.7333C64.2116 20.3991 63.9392 20.1145 63.5681 19.8794C63.2094 19.6442 62.7084 19.5267 62.0652 19.5267C61.5209 19.5267 61.0384 19.6257 60.6178 19.8237C60.1973 20.0217 59.8386 20.3001 59.5417 20.659C59.2448 21.0055 59.0159 21.4263 58.8551 21.9213C58.7067 22.404 58.6325 22.9361 58.6325 23.5178V28.6784H57.9274V19.1368Z",
|
|
52
|
+
fill: "black"
|
|
53
|
+
}), React.createElement("path", {
|
|
54
|
+
d: "M67.1039 23.9076C67.1039 23.2269 67.1968 22.5896 67.382 21.9956C67.5799 21.3892 67.865 20.857 68.236 20.3991C68.607 19.9412 69.0645 19.5823 69.6086 19.3225C70.1533 19.0502 70.7776 18.9141 71.4827 18.9141C72.1878 18.9141 72.8127 19.0502 73.3568 19.3225C73.9015 19.5823 74.3591 19.9412 74.7301 20.3991C75.1011 20.857 75.3792 21.3892 75.565 21.9956C75.7629 22.5896 75.8622 23.2269 75.8622 23.9076C75.8622 24.5882 75.7629 25.2318 75.565 25.8382C75.3792 26.4447 75.1011 26.9768 74.7301 27.4346C74.3591 27.8802 73.9015 28.2391 73.3568 28.5114C72.8127 28.7713 72.1878 28.9012 71.4827 28.9012C70.7776 28.9012 70.1533 28.7713 69.6086 28.5114C69.0645 28.2391 68.607 27.8802 68.236 27.4346C67.865 26.9768 67.5799 26.4447 67.382 25.8382C67.1968 25.2318 67.1039 24.5882 67.1039 23.9076ZM67.809 23.9076C67.809 24.4769 67.8892 25.0276 68.0502 25.5598C68.2112 26.0796 68.446 26.5436 68.7552 26.952C69.0645 27.3604 69.4482 27.6884 69.9058 27.9359C70.3633 28.171 70.889 28.2886 71.4827 28.2886C72.0764 28.2886 72.6027 28.171 73.0602 27.9359C73.5178 27.6884 73.9015 27.3604 74.2108 26.952C74.5194 26.5436 74.7549 26.0796 74.9159 25.5598C75.0763 25.0276 75.1571 24.4769 75.1571 23.9076C75.1571 23.3384 75.0763 22.7938 74.9159 22.274C74.7549 21.7419 74.5194 21.2716 74.2108 20.8632C73.9015 20.4548 73.5178 20.1331 73.0602 19.8979C72.6027 19.6504 72.0764 19.5267 71.4827 19.5267C70.889 19.5267 70.3633 19.6504 69.9058 19.8979C69.4482 20.1331 69.0645 20.4548 68.7552 20.8632C68.446 21.2716 68.2112 21.7419 68.0502 22.274C67.8892 22.7938 67.809 23.3384 67.809 23.9076Z",
|
|
55
|
+
fill: "black"
|
|
56
|
+
}), React.createElement("path", {
|
|
57
|
+
d: "M78.2206 21.253H78.276C78.3625 20.9436 78.5171 20.6528 78.7399 20.3805C78.9753 20.1083 79.2534 19.8731 79.5748 19.6751C79.9089 19.4771 80.2741 19.3286 80.67 19.2296C81.0779 19.1182 81.4985 19.0687 81.9312 19.0811V19.7865C81.5602 19.737 81.1339 19.7741 80.6515 19.8979C80.1812 20.0216 79.7294 20.2939 79.2967 20.7147C79.1236 20.9003 78.969 21.0797 78.8328 21.253C78.7093 21.4262 78.6037 21.6181 78.5171 21.8285C78.4306 22.0389 78.3625 22.274 78.3135 22.5339C78.2639 22.7938 78.2327 23.1032 78.2206 23.462V28.6784H77.5155V19.1368H78.2206V21.253Z",
|
|
58
|
+
fill: "black"
|
|
59
|
+
}), React.createElement("path", {
|
|
60
|
+
d: "M88.6442 26.785H88.6073C88.496 27.0696 88.335 27.3419 88.125 27.6017C87.915 27.8492 87.6547 28.072 87.3454 28.27C87.0489 28.468 86.7084 28.6227 86.3253 28.7341C85.9416 28.8455 85.521 28.9012 85.0634 28.9012C84.0491 28.9012 83.2638 28.6846 82.707 28.2515C82.1502 27.806 81.8721 27.1253 81.8721 26.2095C81.8721 25.6526 81.9834 25.2009 82.2062 24.8544C82.4289 24.4955 82.707 24.217 83.0411 24.019C83.3872 23.8086 83.7646 23.6601 84.1725 23.5735C84.5932 23.4868 84.9953 23.425 85.3791 23.3878L86.4736 23.295C86.9808 23.2579 87.3766 23.2022 87.6611 23.128C87.9583 23.0413 88.181 22.9299 88.3292 22.7938C88.4775 22.6453 88.5704 22.4597 88.6073 22.2369C88.6443 22.0142 88.6633 21.7357 88.6633 21.4015C88.6633 21.1417 88.6137 20.9003 88.5144 20.6776C88.4158 20.4548 88.2612 20.2568 88.0505 20.0836C87.8405 19.9103 87.5682 19.7742 87.2341 19.6752C86.9006 19.5762 86.4921 19.5267 86.0097 19.5267C85.1563 19.5267 84.4633 19.737 83.9313 20.1578C83.4121 20.5786 83.1276 21.2159 83.078 22.0698H82.3729C82.4225 21.0179 82.7566 20.2321 83.3752 19.7123C84.0058 19.1801 84.8967 18.9141 86.0466 18.9141C87.1972 18.9141 88.0321 19.143 88.552 19.6009C89.084 20.0464 89.3493 20.6343 89.3493 21.3644V26.9149C89.3493 27.051 89.3493 27.1872 89.3493 27.3233C89.3621 27.4594 89.3869 27.5832 89.4238 27.6945C89.4607 27.806 89.5231 27.8987 89.6096 27.973C89.6962 28.0349 89.8196 28.0658 89.9806 28.0658C90.1041 28.0658 90.2772 28.0473 90.4999 28.0101V28.6041C90.3147 28.6537 90.1225 28.6784 89.9246 28.6784C89.6402 28.6784 89.4117 28.6413 89.2386 28.567C89.0776 28.4928 88.9535 28.3938 88.867 28.27C88.7804 28.1463 88.7187 28.0039 88.6818 27.8431C88.657 27.6698 88.6442 27.4842 88.6442 27.2862V26.785ZM88.6442 23.2579C88.4712 23.4683 88.2052 23.6106 87.8469 23.6849C87.5001 23.7591 87.1106 23.8148 86.6779 23.8519L85.4904 23.9633C85.1436 24.0004 84.7974 24.0561 84.4512 24.1304C84.1044 24.1922 83.7894 24.3037 83.505 24.4645C83.2326 24.6254 83.0099 24.8481 82.8368 25.1328C82.6637 25.4051 82.5772 25.7639 82.5772 26.2095C82.5772 26.9149 82.7999 27.4409 83.2447 27.7874C83.6902 28.1215 84.3023 28.2886 85.0819 28.2886C85.8862 28.2886 86.5232 28.1463 86.9929 27.8616C87.4632 27.5646 87.8221 27.2305 88.0696 26.8592C88.3165 26.4756 88.4712 26.1105 88.5335 25.7639C88.6073 25.4051 88.6442 25.1637 88.6442 25.04V23.2579Z",
|
|
61
|
+
fill: "black"
|
|
62
|
+
}), React.createElement("path", {
|
|
63
|
+
d: "M91.6135 19.1368H92.3186V21.086H92.3555C92.43 20.789 92.5598 20.5105 92.745 20.2506C92.9308 19.9784 93.1535 19.7432 93.4132 19.5452C93.6855 19.3472 93.9821 19.1925 94.3041 19.0811C94.6375 18.9698 94.9843 18.9141 95.3426 18.9141C95.8008 18.9141 96.1966 18.9759 96.5307 19.0997C96.8642 19.2111 97.1492 19.3658 97.3841 19.5638C97.6189 19.7494 97.8047 19.966 97.9409 20.2135C98.0764 20.4486 98.1693 20.69 98.219 20.9375H98.2559C98.5403 20.2692 98.9177 19.768 99.388 19.4338C99.8703 19.0873 100.501 18.9141 101.281 18.9141C101.713 18.9141 102.109 18.9821 102.468 19.1183C102.839 19.242 103.155 19.44 103.414 19.7123C103.687 19.9722 103.897 20.3063 104.046 20.7147C104.194 21.1231 104.268 21.6057 104.268 22.1627V28.6784H103.563V22.1441C103.563 21.5377 103.47 21.0612 103.284 20.7147C103.099 20.3682 102.877 20.1083 102.616 19.9351C102.369 19.7494 102.115 19.638 101.856 19.6009C101.608 19.5514 101.417 19.5267 101.281 19.5267C100.848 19.5267 100.446 19.6009 100.075 19.7494C99.7157 19.8979 99.4001 20.1207 99.1283 20.4177C98.8681 20.7147 98.6644 21.086 98.5155 21.5315C98.3673 21.9646 98.2934 22.4658 98.2934 23.0351V28.6784H97.5883V22.1441C97.5883 21.5501 97.4954 21.0798 97.3096 20.7333C97.1365 20.3744 96.9265 20.1083 96.679 19.9351C96.4442 19.7618 96.1966 19.6504 95.937 19.6009C95.6894 19.5514 95.4915 19.5267 95.3426 19.5267C95.0092 19.5267 94.6623 19.5947 94.3041 19.7309C93.9452 19.867 93.6174 20.0774 93.3202 20.362C93.0237 20.6466 92.7825 21.0117 92.5967 21.4573C92.4115 21.9028 92.3186 22.4287 92.3186 23.0351V28.6784H91.6135V19.1368Z",
|
|
64
|
+
fill: "black"
|
|
65
|
+
}), React.createElement("path", {
|
|
66
|
+
d: "M112.69 26.785H112.653C112.542 27.0696 112.381 27.3419 112.171 27.6017C111.96 27.8492 111.7 28.072 111.391 28.27C111.094 28.468 110.754 28.6227 110.37 28.7341C109.987 28.8455 109.567 28.9012 109.109 28.9012C108.095 28.9012 107.309 28.6846 106.753 28.2515C106.196 27.806 105.918 27.1253 105.918 26.2095C105.918 25.6526 106.028 25.2009 106.251 24.8544C106.474 24.4955 106.753 24.217 107.086 24.019C107.433 23.8086 107.81 23.6601 108.218 23.5735C108.639 23.4868 109.041 23.425 109.424 23.3878L110.519 23.295C111.026 23.2579 111.422 23.2022 111.707 23.128C112.003 23.0413 112.226 22.9299 112.375 22.7938C112.523 22.6453 112.616 22.4597 112.653 22.2369C112.69 22.0142 112.708 21.7357 112.708 21.4015C112.708 21.1417 112.659 20.9003 112.56 20.6776C112.461 20.4548 112.307 20.2568 112.096 20.0836C111.886 19.9103 111.614 19.7742 111.28 19.6752C110.946 19.5762 110.538 19.5267 110.055 19.5267C109.202 19.5267 108.509 19.737 107.977 20.1578C107.458 20.5786 107.173 21.2159 107.124 22.0698H106.418C106.468 21.0179 106.802 20.2321 107.42 19.7123C108.051 19.1801 108.942 18.9141 110.092 18.9141C111.243 18.9141 112.078 19.143 112.597 19.6009C113.129 20.0464 113.395 20.6343 113.395 21.3644V26.9149C113.395 27.051 113.395 27.1872 113.395 27.3233C113.408 27.4594 113.432 27.5832 113.469 27.6945C113.506 27.806 113.568 27.8987 113.655 27.973C113.741 28.0349 113.865 28.0658 114.026 28.0658C114.15 28.0658 114.323 28.0473 114.545 28.0101V28.6041C114.36 28.6537 114.168 28.6784 113.97 28.6784C113.686 28.6784 113.457 28.6413 113.284 28.567C113.123 28.4928 112.999 28.3938 112.913 28.27C112.826 28.1463 112.764 28.0039 112.727 27.8431C112.703 27.6698 112.69 27.4842 112.69 27.2862V26.785ZM112.69 23.2579C112.517 23.4683 112.251 23.6106 111.892 23.6849C111.546 23.7591 111.156 23.8148 110.723 23.8519L109.535 23.9633C109.189 24.0004 108.843 24.0561 108.497 24.1304C108.15 24.1922 107.835 24.3037 107.55 24.4645C107.278 24.6254 107.055 24.8481 106.882 25.1328C106.709 25.4051 106.623 25.7639 106.623 26.2095C106.623 26.9149 106.845 27.4409 107.29 27.7874C107.736 28.1215 108.348 28.2886 109.127 28.2886C109.931 28.2886 110.568 28.1463 111.038 27.8616C111.509 27.5646 111.868 27.2305 112.115 26.8592C112.362 26.4756 112.517 26.1105 112.578 25.7639C112.653 25.4051 112.69 25.1637 112.69 25.04V23.2579Z",
|
|
67
|
+
fill: "black"
|
|
68
|
+
})), React.createElement("defs", null, React.createElement("clipPath", {
|
|
69
|
+
id: "clip0_2155_223"
|
|
70
|
+
}, React.createElement("rect", {
|
|
71
|
+
width: "114.545",
|
|
72
|
+
height: "14",
|
|
73
|
+
fill: "white",
|
|
74
|
+
transform: "translate(0 15)"
|
|
75
|
+
}))));
|
|
76
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
function _extends() {
|
|
2
|
+
_extends = Object.assign || function(target) {
|
|
3
|
+
for(var i = 1; i < arguments.length; i++){
|
|
4
|
+
var source = arguments[i];
|
|
5
|
+
for(var key in source){
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
7
|
+
target[key] = source[key];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return target;
|
|
12
|
+
};
|
|
13
|
+
return _extends.apply(this, arguments);
|
|
14
|
+
}
|
|
15
|
+
import { clsx } from 'clsx';
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { Symbol } from '../../symbol.component.js';
|
|
18
|
+
export function BTPanoramaReversedLogo({ 'aria-label': ariaLabel = 'BT Panorama' , copyrightYear ='2025' , viewBoxWidth =180 , viewBoxHeight =22 , className , ...props }) {
|
|
19
|
+
return React.createElement(Symbol, _extends({
|
|
20
|
+
className: clsx('h-[22px] w-[180px]', className),
|
|
21
|
+
"aria-label": ariaLabel,
|
|
22
|
+
copyrightYear: copyrightYear,
|
|
23
|
+
viewBoxWidth: viewBoxWidth,
|
|
24
|
+
viewBoxHeight: viewBoxHeight
|
|
25
|
+
}, props), React.createElement("g", {
|
|
26
|
+
"clip-path": "url(#clip0_2161_123)"
|
|
27
|
+
}, React.createElement("path", {
|
|
28
|
+
d: "M37.618 0.716248V4.59036H43.0714V21.2453H47.1957V4.59036H52.6365V0.716248H37.618Z",
|
|
29
|
+
fill: "white"
|
|
30
|
+
}), React.createElement("path", {
|
|
31
|
+
"fill-rule": "evenodd",
|
|
32
|
+
"clip-rule": "evenodd",
|
|
33
|
+
d: "M34.9163 10.2894C36.1159 9.33088 36.8063 7.87428 36.7882 6.34056C36.7882 4.59036 36.2952 3.19518 35.2096 2.22977C34.1239 1.26435 32.5703 0.716248 30.5549 0.716248H21.0272V8.43333L24.0284 10.7441L21.0272 13.0611V21.2453H31.0665C35.0286 21.2453 37.5681 18.8598 37.5681 15.1477C37.6829 13.1563 36.6548 11.2728 34.9163 10.2894ZM25.1827 4.4907H30.5549C31.9151 4.4907 32.7699 5.26926 32.7699 6.55856C32.7795 7.14011 32.5463 7.69942 32.1261 8.10234C31.7058 8.50526 31.1366 8.71544 30.5549 8.68247H25.1889L25.1827 4.4907ZM25.1889 17.4397H30.5549V17.446C31.8278 17.446 33.3689 17.0162 33.3689 14.9483C33.3689 13.3476 32.3332 12.457 30.4613 12.457H25.1889V17.4397Z",
|
|
34
|
+
fill: "white"
|
|
35
|
+
}), React.createElement("path", {
|
|
36
|
+
d: "M7.45622 11.7843C7.01627 11.7817 6.62596 11.502 6.48285 11.0867C6.43835 10.9801 6.41504 10.8658 6.41422 10.7504C6.41234 10.6386 6.43581 10.5279 6.48285 10.4265C6.61818 10.0073 7.0088 9.72304 7.44998 9.72265H18.8184C18.6134 8.45062 18.0182 7.27335 17.115 6.35305L17.0651 6.29699L15.6362 4.85821L15.5801 4.81461L10.7694 0L0 10.7441L10.7632 21.4945L15.5551 16.6923L15.6362 16.6176L17.0651 15.185L17.1337 15.1103C18.021 14.1918 18.6065 13.025 18.8121 11.7656L7.45622 11.7843Z",
|
|
37
|
+
fill: "#007BC6"
|
|
38
|
+
}), React.createElement("path", {
|
|
39
|
+
d: "M60.3096 0.666443H69.1736C69.7567 0.666443 70.3982 0.734509 71.098 0.870641C71.8172 1.00677 72.4781 1.28876 73.0807 1.7166C73.7028 2.125 74.2179 2.71814 74.6261 3.49604C75.0343 4.25449 75.2384 5.25603 75.2384 6.50066C75.2384 8.32872 74.6747 9.73865 73.5473 10.7305C72.4198 11.7223 70.8064 12.2182 68.7071 12.2182H61.5925V21.4946H60.3096V0.666443ZM61.5925 11.1097H68.9112C69.8442 11.1097 70.6315 10.9736 71.273 10.7013C71.9339 10.4096 72.4587 10.0401 72.8475 9.59279C73.2363 9.1455 73.5181 8.6496 73.6931 8.10507C73.868 7.56054 73.9555 7.01602 73.9555 6.47149C73.9555 6.08254 73.8972 5.62553 73.7805 5.10045C73.6639 4.55592 73.4306 4.04057 73.0807 3.55438C72.7309 3.04875 72.2352 2.63063 71.5937 2.30003C70.9717 1.94997 70.1358 1.77495 69.0861 1.77495H61.5925V11.1097Z",
|
|
40
|
+
fill: "white"
|
|
41
|
+
}), React.createElement("path", {
|
|
42
|
+
d: "M86.3927 18.5192H86.3344C86.1595 18.9664 85.9067 19.3943 85.5763 19.8027C85.2458 20.1916 84.8376 20.5417 84.3517 20.8528C83.8851 21.164 83.3506 21.4071 82.748 21.5821C82.1454 21.7571 81.4845 21.8447 80.7652 21.8447C79.1713 21.8447 77.9369 21.5043 77.0622 20.8237C76.1874 20.1236 75.7501 19.054 75.7501 17.6149C75.7501 16.7397 75.925 16.0299 76.2749 15.4854C76.6248 14.9214 77.0622 14.4838 77.587 14.1727C78.1313 13.8421 78.7242 13.6087 79.3657 13.4726C80.0266 13.3364 80.6583 13.2392 81.2609 13.1808L82.9812 13.035C83.7782 12.9767 84.4003 12.8891 84.8473 12.7725C85.3139 12.6363 85.6638 12.4613 85.897 12.2474C86.1303 12.014 86.2761 11.7223 86.3344 11.3722C86.3927 11.0222 86.4219 10.5846 86.4219 10.0595C86.4219 9.65116 86.3441 9.27194 86.1886 8.92189C86.0331 8.57184 85.7901 8.26067 85.4597 7.9884C85.1292 7.71614 84.7016 7.50222 84.1767 7.34664C83.6519 7.19106 83.0104 7.11327 82.2523 7.11327C80.911 7.11327 79.8225 7.44388 78.9866 8.10509C78.1702 8.7663 77.7231 9.76785 77.6453 11.1097H76.5373C76.6151 9.45668 77.1399 8.22177 78.1119 7.40498C79.1032 6.56875 80.5028 6.15063 82.3106 6.15063C84.1184 6.15063 85.4305 6.51041 86.2469 7.22996C87.0828 7.93006 87.5007 8.85382 87.5007 10.0012V18.7234C87.5007 18.9373 87.5007 19.1512 87.5007 19.3651C87.5202 19.579 87.559 19.7735 87.6173 19.9485C87.6757 20.1236 87.7729 20.2694 87.9089 20.3861C88.045 20.4833 88.2394 20.532 88.4921 20.532C88.6865 20.532 88.9586 20.5028 89.3085 20.4444V21.3779C89.0169 21.4557 88.7156 21.4946 88.4046 21.4946C87.9575 21.4946 87.5979 21.4363 87.3258 21.3196C87.0731 21.2029 86.8787 21.0473 86.7426 20.8528C86.6065 20.6584 86.5093 20.4347 86.451 20.1819C86.4122 19.9096 86.3927 19.6179 86.3927 19.3068V18.5192ZM86.3927 12.9767C86.1206 13.3073 85.7026 13.5309 85.1389 13.6476C84.5946 13.7643 83.9823 13.8518 83.302 13.9101L81.4359 14.0852C80.8916 14.1435 80.3473 14.231 79.803 14.3477C79.2587 14.4449 78.7631 14.62 78.316 14.8728C77.8883 15.1256 77.5384 15.4756 77.2663 15.9229C76.9941 16.3508 76.8581 16.9147 76.8581 17.6149C76.8581 18.7234 77.208 19.5499 77.9078 20.0944C78.6075 20.6195 79.5698 20.882 80.7944 20.882C82.0579 20.882 83.059 20.6584 83.7977 20.2111C84.5363 19.7443 85.1001 19.2193 85.4888 18.6358C85.8776 18.033 86.1206 17.4593 86.2178 16.9147C86.3344 16.3508 86.3927 15.9715 86.3927 15.7771V12.9767Z",
|
|
43
|
+
fill: "white"
|
|
44
|
+
}), React.createElement("path", {
|
|
45
|
+
d: "M91.0288 6.50068H92.1368V9.7095H92.1952C92.3895 9.14552 92.6617 8.64962 93.0116 8.22177C93.3809 7.77448 93.7988 7.39527 94.2654 7.08411C94.7513 6.77295 95.2762 6.53958 95.8399 6.384C96.4036 6.22842 96.9771 6.15063 97.5602 6.15063C98.435 6.15063 99.1736 6.25759 99.7762 6.47151C100.398 6.68543 100.904 6.96742 101.292 7.31747C101.681 7.66752 101.982 8.06619 102.196 8.51348C102.43 8.94133 102.595 9.37889 102.692 9.82618C102.789 10.2735 102.848 10.711 102.867 11.1389C102.886 11.5473 102.896 11.907 102.896 12.2182V21.4946H101.788V12.014C101.788 11.6445 101.759 11.1778 101.701 10.6138C101.642 10.0498 101.467 9.51504 101.176 9.0094C100.904 8.48432 100.476 8.03703 99.8928 7.66752C99.3291 7.29802 98.5419 7.11327 97.5311 7.11327C96.6758 7.11327 95.9176 7.26885 95.2567 7.58001C94.5958 7.89117 94.0321 8.32874 93.5656 8.89271C93.099 9.43724 92.7394 10.0984 92.4867 10.8763C92.2535 11.6348 92.1368 12.471 92.1368 13.385V21.4946H91.0288V6.50068Z",
|
|
46
|
+
fill: "white"
|
|
47
|
+
}), React.createElement("path", {
|
|
48
|
+
d: "M105.449 13.9976C105.449 12.928 105.595 11.9265 105.886 10.993C106.197 10.0401 106.645 9.20387 107.228 8.48431C107.811 7.76476 108.53 7.20079 109.385 6.79239C110.241 6.36455 111.222 6.15063 112.33 6.15063C113.438 6.15063 114.42 6.36455 115.275 6.79239C116.131 7.20079 116.85 7.76476 117.433 8.48431C118.016 9.20387 118.453 10.0401 118.745 10.993C119.056 11.9265 119.212 12.928 119.212 13.9976C119.212 15.0672 119.056 16.0785 118.745 17.0314C118.453 17.9844 118.016 18.8206 117.433 19.5401C116.85 20.2402 116.131 20.8042 115.275 21.2321C114.42 21.6405 113.438 21.8447 112.33 21.8447C111.222 21.8447 110.241 21.6405 109.385 21.2321C108.53 20.8042 107.811 20.2402 107.228 19.5401C106.645 18.8206 106.197 17.9844 105.886 17.0314C105.595 16.0785 105.449 15.0672 105.449 13.9976ZM106.557 13.9976C106.557 14.8922 106.683 15.7576 106.936 16.5939C107.189 17.4107 107.558 18.1399 108.044 18.7817C108.53 19.4235 109.133 19.9388 109.852 20.3278C110.571 20.6973 111.397 20.882 112.33 20.882C113.263 20.882 114.09 20.6973 114.809 20.3278C115.528 19.9388 116.131 19.4235 116.617 18.7817C117.102 18.1399 117.472 17.4107 117.725 16.5939C117.977 15.7576 118.104 14.8922 118.104 13.9976C118.104 13.1031 117.977 12.2474 117.725 11.4306C117.472 10.5943 117.102 9.85536 116.617 9.21359C116.131 8.57183 115.528 8.0662 114.809 7.6967C114.09 7.30775 113.263 7.11327 112.33 7.11327C111.397 7.11327 110.571 7.30775 109.852 7.6967C109.133 8.0662 108.53 8.57183 108.044 9.21359C107.558 9.85536 107.189 10.5943 106.936 11.4306C106.683 12.2474 106.557 13.1031 106.557 13.9976Z",
|
|
49
|
+
fill: "white"
|
|
50
|
+
}), React.createElement("path", {
|
|
51
|
+
d: "M122.918 9.82615H123.005C123.141 9.33997 123.384 8.88295 123.734 8.4551C124.104 8.02726 124.541 7.65777 125.046 7.34661C125.571 7.03545 126.145 6.80209 126.767 6.64651C127.408 6.47148 128.069 6.39369 128.749 6.41314V7.52164C128.166 7.44385 127.496 7.50219 126.738 7.69667C125.999 7.89114 125.289 8.31898 124.609 8.98019C124.337 9.2719 124.094 9.55389 123.88 9.82615C123.686 10.0984 123.52 10.3999 123.384 10.7305C123.248 11.0611 123.141 11.4306 123.064 11.839C122.986 12.2474 122.937 12.7336 122.918 13.2975V21.4946H121.81V6.50065H122.918V9.82615Z",
|
|
52
|
+
fill: "white"
|
|
53
|
+
}), React.createElement("path", {
|
|
54
|
+
d: "M139.298 18.5192H139.24C139.065 18.9664 138.812 19.3943 138.482 19.8027C138.152 20.1916 137.743 20.5417 137.257 20.8528C136.791 21.164 136.256 21.4071 135.654 21.5821C135.051 21.7571 134.39 21.8447 133.671 21.8447C132.077 21.8447 130.843 21.5043 129.968 20.8237C129.093 20.1236 128.656 19.054 128.656 17.6149C128.656 16.7397 128.831 16.0299 129.181 15.4854C129.531 14.9214 129.968 14.4838 130.493 14.1727C131.037 13.8421 131.63 13.6087 132.271 13.4726C132.932 13.3364 133.564 13.2392 134.167 13.1808L135.887 13.035C136.684 12.9767 137.306 12.8891 137.753 12.7725C138.22 12.6363 138.57 12.4613 138.803 12.2474C139.036 12.014 139.182 11.7223 139.24 11.3722C139.298 11.0222 139.328 10.5846 139.328 10.0595C139.328 9.65116 139.25 9.27194 139.094 8.92189C138.939 8.57184 138.696 8.26067 138.365 7.9884C138.035 7.71614 137.607 7.50222 137.082 7.34664C136.558 7.19106 135.916 7.11327 135.158 7.11327C133.817 7.11327 132.728 7.44388 131.892 8.10509C131.076 8.7663 130.629 9.76785 130.551 11.1097H129.443C129.521 9.45668 130.046 8.22177 131.018 7.40498C132.009 6.56875 133.409 6.15063 135.216 6.15063C137.024 6.15063 138.336 6.51041 139.153 7.22996C139.989 7.93006 140.406 8.85382 140.406 10.0012V18.7234C140.406 18.9373 140.406 19.1512 140.406 19.3651C140.426 19.579 140.465 19.7735 140.523 19.9485C140.581 20.1236 140.679 20.2694 140.815 20.3861C140.951 20.4833 141.145 20.532 141.398 20.532C141.592 20.532 141.864 20.5028 142.214 20.4444V21.3779C141.923 21.4557 141.621 21.4946 141.31 21.4946C140.863 21.4946 140.504 21.4363 140.232 21.3196C139.979 21.2029 139.784 21.0473 139.648 20.8528C139.512 20.6584 139.415 20.4347 139.357 20.1819C139.318 19.9096 139.298 19.6179 139.298 19.3068V18.5192ZM139.298 12.9767C139.026 13.3073 138.608 13.5309 138.045 13.6476C137.5 13.7643 136.888 13.8518 136.208 13.9101L134.342 14.0852C133.797 14.1435 133.253 14.231 132.709 14.3477C132.164 14.4449 131.669 14.62 131.222 14.8728C130.794 15.1256 130.444 15.4756 130.172 15.9229C129.9 16.3508 129.764 16.9147 129.764 17.6149C129.764 18.7234 130.114 19.5499 130.813 20.0944C131.513 20.6195 132.475 20.882 133.7 20.882C134.964 20.882 135.965 20.6584 136.703 20.2111C137.442 19.7443 138.006 19.2193 138.395 18.6358C138.783 18.033 139.026 17.4593 139.124 16.9147C139.24 16.3508 139.298 15.9715 139.298 15.7771V12.9767Z",
|
|
55
|
+
fill: "white"
|
|
56
|
+
}), React.createElement("path", {
|
|
57
|
+
d: "M143.964 6.50068H145.072V9.56364H145.13C145.247 9.09691 145.451 8.65935 145.742 8.25096C146.034 7.82311 146.384 7.4536 146.792 7.14245C147.22 6.83129 147.686 6.58819 148.192 6.41317C148.716 6.23814 149.261 6.15063 149.824 6.15063C150.544 6.15063 151.166 6.24786 151.691 6.44234C152.215 6.61736 152.663 6.86046 153.032 7.17162C153.401 7.46333 153.693 7.80366 153.907 8.1926C154.12 8.5621 154.266 8.94133 154.344 9.33028H154.402C154.849 8.28012 155.442 7.4925 156.181 6.96742C156.939 6.42289 157.93 6.15063 159.155 6.15063C159.835 6.15063 160.457 6.25759 161.021 6.47151C161.604 6.66598 162.1 6.97714 162.508 7.40498C162.936 7.81338 163.266 8.33847 163.5 8.98023C163.733 9.622 163.849 10.3804 163.849 11.2556V21.4946H162.741V11.2264C162.741 10.2735 162.596 9.52476 162.304 8.98023C162.013 8.43571 161.663 8.0273 161.254 7.75504C160.866 7.46333 160.467 7.2883 160.059 7.22996C159.67 7.15217 159.369 7.11327 159.155 7.11327C158.475 7.11327 157.843 7.22996 157.26 7.46333C156.696 7.6967 156.2 8.04675 155.773 8.51348C155.364 8.98022 155.044 9.56364 154.81 10.2637C154.577 10.9444 154.461 11.732 154.461 12.6266V21.4946H153.353V11.2264C153.353 10.2929 153.207 9.55393 152.915 9.0094C152.643 8.44543 152.313 8.0273 151.924 7.75504C151.555 7.48277 151.166 7.30775 150.758 7.22996C150.369 7.15217 150.058 7.11327 149.824 7.11327C149.3 7.11327 148.755 7.22024 148.192 7.43417C147.628 7.64808 147.113 7.97868 146.646 8.42597C146.18 8.87326 145.801 9.44697 145.509 10.1471C145.218 10.8472 145.072 11.6737 145.072 12.6266V21.4946H143.964V6.50068Z",
|
|
58
|
+
fill: "white"
|
|
59
|
+
}), React.createElement("path", {
|
|
60
|
+
d: "M177.084 18.5192H177.026C176.851 18.9664 176.598 19.3943 176.268 19.8027C175.937 20.1916 175.529 20.5417 175.043 20.8528C174.577 21.164 174.042 21.4071 173.439 21.5821C172.837 21.7571 172.176 21.8447 171.457 21.8447C169.863 21.8447 168.628 21.5043 167.754 20.8237C166.879 20.1236 166.442 19.054 166.442 17.6149C166.442 16.7397 166.616 16.0299 166.966 15.4854C167.316 14.9214 167.754 14.4838 168.278 14.1727C168.823 13.8421 169.416 13.6087 170.057 13.4726C170.718 13.3364 171.35 13.2392 171.952 13.1808L173.673 13.035C174.47 12.9767 175.092 12.8891 175.539 12.7725C176.005 12.6363 176.355 12.4613 176.589 12.2474C176.822 12.014 176.968 11.7223 177.026 11.3722C177.084 11.0222 177.113 10.5846 177.113 10.0595C177.113 9.65116 177.036 9.27194 176.88 8.92189C176.725 8.57184 176.482 8.26067 176.151 7.9884C175.821 7.71614 175.393 7.50222 174.868 7.34664C174.343 7.19106 173.702 7.11327 172.944 7.11327C171.603 7.11327 170.514 7.44388 169.678 8.10509C168.862 8.7663 168.415 9.76785 168.337 11.1097H167.229C167.307 9.45668 167.831 8.22177 168.803 7.40498C169.795 6.56875 171.194 6.15063 173.002 6.15063C174.81 6.15063 176.122 6.51041 176.938 7.22996C177.774 7.93006 178.192 8.85382 178.192 10.0012V18.7234C178.192 18.9373 178.192 19.1512 178.192 19.3651C178.212 19.579 178.251 19.7735 178.309 19.9485C178.367 20.1236 178.464 20.2694 178.6 20.3861C178.736 20.4833 178.931 20.532 179.184 20.532C179.378 20.532 179.65 20.5028 180 20.4444V21.3779C179.708 21.4557 179.407 21.4946 179.096 21.4946C178.649 21.4946 178.289 21.4363 178.017 21.3196C177.765 21.2029 177.57 21.0473 177.434 20.8528C177.298 20.6584 177.201 20.4347 177.143 20.1819C177.104 19.9096 177.084 19.6179 177.084 19.3068V18.5192ZM177.084 12.9767C176.812 13.3073 176.394 13.5309 175.83 13.6476C175.286 13.7643 174.674 13.8518 173.993 13.9101L172.127 14.0852C171.583 14.1435 171.039 14.231 170.495 14.3477C169.95 14.4449 169.455 14.62 169.007 14.8728C168.58 15.1256 168.23 15.4756 167.958 15.9229C167.686 16.3508 167.55 16.9147 167.55 17.6149C167.55 18.7234 167.899 19.5499 168.599 20.0944C169.299 20.6195 170.261 20.882 171.486 20.882C172.749 20.882 173.75 20.6584 174.489 20.2111C175.228 19.7443 175.792 19.2193 176.18 18.6358C176.569 18.033 176.812 17.4593 176.909 16.9147C177.026 16.3508 177.084 15.9715 177.084 15.7771V12.9767Z",
|
|
61
|
+
fill: "white"
|
|
62
|
+
})), React.createElement("defs", null, React.createElement("clipPath", {
|
|
63
|
+
id: "clip0_2161_123"
|
|
64
|
+
}, React.createElement("rect", {
|
|
65
|
+
width: "180",
|
|
66
|
+
height: "22",
|
|
67
|
+
fill: "white"
|
|
68
|
+
}))));
|
|
69
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
function _extends() {
|
|
2
|
+
_extends = Object.assign || function(target) {
|
|
3
|
+
for(var i = 1; i < arguments.length; i++){
|
|
4
|
+
var source = arguments[i];
|
|
5
|
+
for(var key in source){
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
7
|
+
target[key] = source[key];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return target;
|
|
12
|
+
};
|
|
13
|
+
return _extends.apply(this, arguments);
|
|
14
|
+
}
|
|
15
|
+
import { clsx } from 'clsx';
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { Symbol } from '../../symbol.component.js';
|
|
18
|
+
export function BTReversedLogo({ 'aria-label': ariaLabel = 'BT' , copyrightYear ='2025' , viewBoxWidth =105 , viewBoxHeight =43 , className , ...props }) {
|
|
19
|
+
return React.createElement(Symbol, _extends({
|
|
20
|
+
className: clsx('h-[43px] w-[105px]', className),
|
|
21
|
+
"aria-label": ariaLabel,
|
|
22
|
+
copyrightYear: copyrightYear,
|
|
23
|
+
viewBoxWidth: viewBoxWidth,
|
|
24
|
+
viewBoxHeight: viewBoxHeight
|
|
25
|
+
}, props), React.createElement("path", {
|
|
26
|
+
d: "M14.2593 22.8258C13.8282 22.8258 13.4147 22.6549 13.1099 22.3508C12.8051 22.0467 12.6339 21.6342 12.6339 21.2041C12.6339 20.7741 12.8051 20.3616 13.1099 20.0575C13.4147 19.7534 13.8282 19.5825 14.2593 19.5825H37.175C36.8325 16.9135 35.6262 14.429 33.7395 12.5062C33.7036 12.4767 33.6706 12.4437 33.641 12.408L30.8212 9.57011L30.7103 9.47182L21.2288 0L0 21.2041L21.2288 42.3714L30.6734 32.9119L30.8212 32.7768L33.641 29.9635L33.7764 29.8038C35.6422 27.8953 36.835 25.4332 37.175 22.7889L14.2593 22.8258Z",
|
|
27
|
+
fill: "#007BC6"
|
|
28
|
+
}), React.createElement("path", {
|
|
29
|
+
d: "M103.521 1.41278H74.1775V9.02954H84.9027V41.88H93.0543V9.02954H103.78V1.41278H103.521Z",
|
|
30
|
+
fill: "white"
|
|
31
|
+
}), React.createElement("path", {
|
|
32
|
+
d: "M68.8335 20.2828C70.0116 19.3585 70.9585 18.1739 71.5996 16.8223C72.2407 15.4706 72.5583 13.989 72.5276 12.494C72.6137 10.9994 72.3805 9.50369 71.8434 8.10581C71.3064 6.70796 70.4776 5.43995 69.4122 4.38579C67.2942 2.40788 64.1912 1.41278 60.2016 1.41278H41.4971V17.5063L46.127 21.1919L41.4971 24.8774V41.88H61.2852C69.092 41.88 74.1283 37.1625 74.1283 29.8775C74.2329 27.9442 73.7921 26.0205 72.8563 24.3246C71.9203 22.6287 70.5267 21.2284 68.8335 20.2828ZM49.6487 8.85762H60.2262C62.9475 8.85762 64.6345 10.4301 64.6345 12.9608C64.6371 13.5284 64.5232 14.0906 64.2995 14.6126C64.0759 15.1345 63.7473 15.6052 63.3342 15.9955C62.9211 16.3858 62.4322 16.6874 61.8976 16.8818C61.363 17.0761 60.7942 17.1591 60.2262 17.1254H49.6487V8.85762ZM60.2262 34.3861H49.6487V24.558H60.0538C63.7479 24.558 65.7796 26.3271 65.7796 29.472C65.7796 33.5507 62.7628 34.3861 60.2262 34.3861Z",
|
|
33
|
+
fill: "white"
|
|
34
|
+
}));
|
|
35
|
+
}
|
|
@@ -4,6 +4,14 @@ export { AppleStoreSymbol } from './components/symbols/apple-store-symbol.js';
|
|
|
4
4
|
export { BOMLogo } from './components/logos/bom-logo.js';
|
|
5
5
|
export { BOMMultibrandLargeLogo } from './components/logos/bom-multibrand-large-logo.js';
|
|
6
6
|
export { BOMMultibrandSmallLogo } from './components/logos/bom-multibrand-small-logo.js';
|
|
7
|
+
export { BTReversedLogo } from './components/logos/bt-reversed-logo.js';
|
|
8
|
+
export { BTPanoramaReversedLogo } from './components/logos/bt-panorama-reversed-logo.js';
|
|
9
|
+
export { BTLogo } from './components/logos/bt-logo.js';
|
|
10
|
+
export { BTPanoramaLogo } from './components/logos/bt-panorama-logo.js';
|
|
11
|
+
export { BTMultibrandSmallLogo } from './components/logos/bt-multibrand-small-logo.js';
|
|
12
|
+
export { BTMultibrandLargeLogo } from './components/logos/bt-multibrand-large-logo.js';
|
|
13
|
+
export { BTPanoramaMultibrandSmallLogo } from './components/logos/bt-panorama-multibrand-small-logo.js';
|
|
14
|
+
export { BTPanoramaMultibrandLargeLogo } from './components/logos/bt-panorama-multibrand-large-logo.js';
|
|
7
15
|
export { BOMShieldLogo } from './components/logos/bom-shield-logo.js';
|
|
8
16
|
export { BPayLandSymbol } from './components/symbols/bpay-land-symbol.js';
|
|
9
17
|
export { BPayPortSymbol } from './components/symbols/bpay-port-symbol.js';
|
|
@@ -4,6 +4,14 @@ export { AppleStoreSymbol } from './components/symbols/apple-store-symbol.js';
|
|
|
4
4
|
export { BOMLogo } from './components/logos/bom-logo.js';
|
|
5
5
|
export { BOMMultibrandLargeLogo } from './components/logos/bom-multibrand-large-logo.js';
|
|
6
6
|
export { BOMMultibrandSmallLogo } from './components/logos/bom-multibrand-small-logo.js';
|
|
7
|
+
export { BTReversedLogo } from './components/logos/bt-reversed-logo.js';
|
|
8
|
+
export { BTPanoramaReversedLogo } from './components/logos/bt-panorama-reversed-logo.js';
|
|
9
|
+
export { BTLogo } from './components/logos/bt-logo.js';
|
|
10
|
+
export { BTPanoramaLogo } from './components/logos/bt-panorama-logo.js';
|
|
11
|
+
export { BTMultibrandSmallLogo } from './components/logos/bt-multibrand-small-logo.js';
|
|
12
|
+
export { BTMultibrandLargeLogo } from './components/logos/bt-multibrand-large-logo.js';
|
|
13
|
+
export { BTPanoramaMultibrandSmallLogo } from './components/logos/bt-panorama-multibrand-small-logo.js';
|
|
14
|
+
export { BTPanoramaMultibrandLargeLogo } from './components/logos/bt-panorama-multibrand-large-logo.js';
|
|
7
15
|
export { BOMShieldLogo } from './components/logos/bom-shield-logo.js';
|
|
8
16
|
export { BPayLandSymbol } from './components/symbols/bpay-land-symbol.js';
|
|
9
17
|
export { BPayPortSymbol } from './components/symbols/bpay-port-symbol.js';
|