@westpac/ui 0.26.0 → 0.28.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 +15 -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.component.d.ts +2 -2
- package/dist/components/button/button.styles.js +23 -7
- package/dist/components/button/button.utils.js +2 -2
- 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.component.js +24 -9
- 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/components/cancel-card-icon.js +8 -18
- package/dist/components/icon/components/child-care-icon.js +6 -6
- package/dist/components/icon/components/child-icon.js +2 -2
- package/dist/components/icon/components/circle-icon.js +9 -19
- package/dist/components/icon/components/drop-left-icon.js +1 -1
- package/dist/components/icon/components/drop-right-icon.js +1 -1
- package/dist/components/icon/components/piggy-bank.js +4 -4
- package/dist/components/icon/components/quick-balance-icon.js +7 -17
- package/dist/components/icon/components/target-icon.d.ts +1 -1
- package/dist/components/icon/components/target-icon.js +3 -9
- package/dist/components/icon/components/x-icon.js +6 -6
- package/dist/components/icon/index.d.ts +5 -1
- package/dist/components/icon/index.js +5 -1
- package/dist/components/input/input.component.d.ts +2 -2
- package/dist/components/pictogram/components/informative/sparkle-pictogram.js +15 -15
- package/dist/components/progress-indicator/progress-indicator.component.d.ts +2 -2
- package/dist/components/progress-indicator/progress-indicator.component.js +72 -11
- package/dist/components/progress-indicator/progress-indicator.styles.d.ts +246 -27
- package/dist/components/progress-indicator/progress-indicator.styles.js +82 -9
- package/dist/components/progress-indicator/progress-indicator.types.d.ts +13 -11
- package/dist/components/select/select.component.d.ts +2 -2
- 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/components/textarea/textarea.component.d.ts +2 -2
- package/dist/css/westpac-ui.css +68 -150
- package/dist/css/westpac-ui.min.css +68 -150
- package/dist/tailwind/themes/btpl.d.ts +2 -0
- package/dist/tailwind/themes/btpl.js +30 -0
- package/package.json +4 -4
- 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 +27 -7
- package/src/components/button/button.utils.ts +2 -2
- 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.component.tsx +55 -51
- 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/components/cancel-card-icon.tsx +15 -19
- package/src/components/icon/components/child-care-icon.tsx +6 -6
- package/src/components/icon/components/child-icon.tsx +2 -2
- package/src/components/icon/components/circle-icon.tsx +14 -22
- package/src/components/icon/components/drop-left-icon.tsx +1 -1
- package/src/components/icon/components/drop-right-icon.tsx +1 -1
- package/src/components/icon/components/piggy-bank.tsx +4 -4
- package/src/components/icon/components/quick-balance-icon.tsx +15 -19
- package/src/components/icon/components/target-icon.tsx +13 -20
- package/src/components/icon/components/x-icon.tsx +6 -6
- package/src/components/icon/index.ts +5 -1
- package/src/components/pictogram/components/informative/sparkle-pictogram.tsx +15 -15
- package/src/components/progress-indicator/progress-indicator.component.tsx +56 -8
- package/src/components/progress-indicator/progress-indicator.styles.ts +32 -9
- package/src/components/progress-indicator/progress-indicator.types.ts +13 -11
- 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
|
@@ -3,7 +3,7 @@ import React from 'react';
|
|
|
3
3
|
import { Icon } from '../icon.component.js';
|
|
4
4
|
import { type IconProps } from '../icon.types.js';
|
|
5
5
|
|
|
6
|
-
export function DropLeftIcon({ 'aria-label': ariaLabel = 'Drop Left', copyrightYear = '
|
|
6
|
+
export function DropLeftIcon({ 'aria-label': ariaLabel = 'Drop Left', copyrightYear = '2023', ...props }: IconProps) {
|
|
7
7
|
return (
|
|
8
8
|
<Icon aria-label={ariaLabel} copyrightYear={copyrightYear} {...props}>
|
|
9
9
|
<path d="m8 19 8-7-8-7v14Z" fill="currentColor" />
|
|
@@ -3,7 +3,7 @@ import React from 'react';
|
|
|
3
3
|
import { Icon } from '../icon.component.js';
|
|
4
4
|
import { type IconProps } from '../icon.types.js';
|
|
5
5
|
|
|
6
|
-
export function DropRightIcon({ 'aria-label': ariaLabel = 'Drop Right', copyrightYear = '
|
|
6
|
+
export function DropRightIcon({ 'aria-label': ariaLabel = 'Drop Right', copyrightYear = '2023', ...props }: IconProps) {
|
|
7
7
|
return (
|
|
8
8
|
<Icon aria-label={ariaLabel} copyrightYear={copyrightYear} {...props}>
|
|
9
9
|
<path d="m16 5-8 7 8 7V5Z" fill="currentColor" />
|
|
@@ -15,9 +15,9 @@ export function PiggyBankIcon({
|
|
|
15
15
|
<Fragment>
|
|
16
16
|
<path
|
|
17
17
|
fill="currentColor"
|
|
18
|
-
|
|
18
|
+
fillRule="evenodd"
|
|
19
19
|
d="M.99 15.975A101.66 101.66 0 0 0 3 24h6v-3h4v3h5.6l2.01-7.92L24 14.97V6.5h-2.61l-2.73-2.63c.04-.24.095-.475.165-.705.07-.23.145-.455.225-.675.04-.1.075-.21.105-.33a1.736 1.736 0 0 0-.48-1.635A1.736 1.736 0 0 0 17.4 0c-.96 0-1.855.21-2.685.63A6.098 6.098 0 0 0 12.6 2.4h-6c-1.84 0-3.4.64-4.68 1.92C.64 5.6 0 7.16 0 9c0 2.136.42 4.19.845 6.264l.145.711ZM6 7a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm12.5 3.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Z"
|
|
20
|
-
|
|
20
|
+
clipRule="evenodd"
|
|
21
21
|
/>
|
|
22
22
|
</Fragment>
|
|
23
23
|
) : (
|
|
@@ -28,9 +28,9 @@ export function PiggyBankIcon({
|
|
|
28
28
|
/>
|
|
29
29
|
<path
|
|
30
30
|
fill="currentColor"
|
|
31
|
-
|
|
31
|
+
fillRule="evenodd"
|
|
32
32
|
d="M12.6 2.4h-6c-1.84 0-3.4.64-4.68 1.92C.64 5.6 0 7.16 0 9c0 2.136.42 4.19.845 6.264l.145.711A101.66 101.66 0 0 0 3 24h6v-3h4v3h5.6l2.01-7.92L24 14.97V6.5h-2.61l-2.73-2.63c.04-.24.095-.475.165-.705.07-.23.145-.455.225-.675.04-.1.075-.21.105-.33a1.736 1.736 0 0 0-.48-1.635A1.736 1.736 0 0 0 17.4 0c-.96 0-1.855.21-2.685.63A6.098 6.098 0 0 0 12.6 2.4ZM22 8.5h-1.417l-4.069-3.92.173-1.039c.054-.324.129-.644.225-.958.058-.193.12-.384.186-.573a3.808 3.808 0 0 0-1.48.405 4.1 4.1 0 0 0-1.428 1.198l-.6.787H6.6c-1.32 0-2.368.436-3.266 1.334C2.436 6.632 2 7.681 2 9c0 1.921.378 3.772.808 5.877l.142.702A99.66 99.66 0 0 0 4.507 22H7v-3h8v3h2.044l1.898-7.478L22 13.52V8.5Z"
|
|
33
|
-
|
|
33
|
+
clipRule="evenodd"
|
|
34
34
|
/>
|
|
35
35
|
</Fragment>
|
|
36
36
|
)}
|
|
@@ -12,28 +12,24 @@ export function QuickBalanceIcon({
|
|
|
12
12
|
return (
|
|
13
13
|
<Icon aria-label={ariaLabel} copyrightYear={copyrightYear} {...props}>
|
|
14
14
|
{look === 'filled' ? (
|
|
15
|
-
<
|
|
15
|
+
<path
|
|
16
|
+
fillRule="evenodd"
|
|
17
|
+
d="M24 14c0 3.073-1.155 5.877-3.056 8H3.056A11.955 11.955 0 0 1 0 14C0 7.373 5.373 2 12 2s12 5.373 12 12Zm-3.877-3.88-1.528 1.528c.262.735.405 1.527.405 2.352 0 1.277-.34 2.47-.936 3.5a1 1 0 0 0 1.731 1A8.963 8.963 0 0 0 21 14c0-1.39-.315-2.705-.877-3.88ZM15.88 5.877A9 9 0 0 0 4.204 18.501a1 1 0 0 0 1.732-1.002 7 7 0 0 1 8.416-10.094l1.528-1.528Zm2.827 2.83a1 1 0 0 0-1.414-1.414l-4.775 4.775a2 2 0 1 0 1.414 1.414l4.775-4.775Z"
|
|
18
|
+
clipRule="evenodd"
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
/>
|
|
21
|
+
) : (
|
|
22
|
+
<Fragment>
|
|
16
23
|
<path
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
24
|
+
d="m17.797 12.446 1.57-1.57c.407.96.633 2.016.633 3.124a7.983 7.983 0 0 1-.526 2.857 1 1 0 1 1-1.868-.714A5.984 5.984 0 0 0 18 14a6.01 6.01 0 0 0-.203-1.554ZM12 6c1.108 0 2.164.225 3.124.633l-1.57 1.57a6 6 0 0 0-7.16 7.94 1 1 0 1 1-1.868.714A8 8 0 0 1 12 6ZM17.293 7.293a1 1 0 1 1 1.414 1.414l-4.775 4.775a2 2 0 1 1-1.414-1.414l4.775-4.775Z"
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
fillRule="evenodd"
|
|
29
|
+
d="M24 14c0 3.073-1.155 5.877-3.056 8H3.056A11.955 11.955 0 0 1 0 14C0 7.373 5.373 2 12 2s12 5.373 12 12Zm-2 0a9.947 9.947 0 0 1-2 6H4a9.948 9.948 0 0 1-2-6C2 8.477 6.477 4 12 4s10 4.477 10 10Z"
|
|
30
|
+
clipRule="evenodd"
|
|
20
31
|
fill="currentColor"
|
|
21
32
|
/>
|
|
22
|
-
</svg>
|
|
23
|
-
) : (
|
|
24
|
-
<Fragment>
|
|
25
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none">
|
|
26
|
-
<path
|
|
27
|
-
d="m17.797 12.446 1.57-1.57c.407.96.633 2.016.633 3.124a7.983 7.983 0 0 1-.526 2.857 1 1 0 1 1-1.868-.714A5.984 5.984 0 0 0 18 14a6.01 6.01 0 0 0-.203-1.554ZM12 6c1.108 0 2.164.225 3.124.633l-1.57 1.57a6 6 0 0 0-7.16 7.94 1 1 0 1 1-1.868.714A8 8 0 0 1 12 6ZM17.293 7.293a1 1 0 1 1 1.414 1.414l-4.775 4.775a2 2 0 1 1-1.414-1.414l4.775-4.775Z"
|
|
28
|
-
fill="currentColor"
|
|
29
|
-
/>
|
|
30
|
-
<path
|
|
31
|
-
fill-rule="evenodd"
|
|
32
|
-
d="M24 14c0 3.073-1.155 5.877-3.056 8H3.056A11.955 11.955 0 0 1 0 14C0 7.373 5.373 2 12 2s12 5.373 12 12Zm-2 0a9.947 9.947 0 0 1-2 6H4a9.948 9.948 0 0 1-2-6C2 8.477 6.477 4 12 4s10 4.477 10 10Z"
|
|
33
|
-
clip-rule="evenodd"
|
|
34
|
-
fill="currentColor"
|
|
35
|
-
/>
|
|
36
|
-
</svg>
|
|
37
33
|
</Fragment>
|
|
38
34
|
)}
|
|
39
35
|
</Icon>
|
|
@@ -3,28 +3,21 @@ import React from 'react';
|
|
|
3
3
|
import { Icon } from '../icon.component.js';
|
|
4
4
|
import { type IconProps } from '../icon.types.js';
|
|
5
5
|
|
|
6
|
-
export function TargetIcon({
|
|
7
|
-
look = 'filled',
|
|
8
|
-
'aria-label': ariaLabel = 'Target',
|
|
9
|
-
copyrightYear = '2023',
|
|
10
|
-
...props
|
|
11
|
-
}: IconProps) {
|
|
6
|
+
export function TargetIcon({ 'aria-label': ariaLabel = 'Target', copyrightYear = '2023', ...props }: IconProps) {
|
|
12
7
|
return (
|
|
13
8
|
<Icon aria-label={ariaLabel} copyrightYear={copyrightYear} {...props}>
|
|
14
|
-
<
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
/>
|
|
27
|
-
</svg>
|
|
9
|
+
<path
|
|
10
|
+
d="M16.9431 11.2432C16.9806 11.49 17 11.7427 17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7C12.2821 7 12.5588 7.02337 12.8282 7.06827L13.1617 5.09595C12.7838 5.03284 12.3957 5 12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12C19 11.6291 18.9712 11.265 18.9156 10.9097L16.9431 11.2432Z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
d="M21.8742 10.4095C21.957 10.9275 22 11.4587 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C12.5662 2 13.1213 2.04705 13.6618 2.13745L13.9953 0.165126C13.3464 0.0565233 12.6798 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24C18.6274 24 24 18.6274 24 12C24 11.3451 23.9475 10.7025 23.8466 10.076L21.8742 10.4095Z"
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C12.1791 10 12.3528 10.0236 12.518 10.0677L15.9861 6.59968L15.5146 4.24268L19.7573 0L20.3129 3.68706L24 4.24264L19.7573 8.48532L17.4003 8.01389L13.9322 11.4819C13.9764 11.6472 14 11.8208 14 12Z"
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
/>
|
|
28
21
|
</Icon>
|
|
29
22
|
);
|
|
30
23
|
}
|
|
@@ -11,24 +11,24 @@ export function XIcon({ look = 'filled', 'aria-label': ariaLabel = 'X', copyrigh
|
|
|
11
11
|
<path fill="currentColor" d="M15.815 19.008h2.12L8.178 5.04h-2.12l9.757 13.968Z" />
|
|
12
12
|
<path
|
|
13
13
|
fill="currentColor"
|
|
14
|
-
|
|
14
|
+
fillRule="evenodd"
|
|
15
15
|
d="M2 0a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2Zm17.315 4-5.824 6.775L19.825 20h-4.659l-4.265-6.212L5.56 20H4.18l6.107-7.104L4.18 4H8.84l4.039 5.883L17.935 4h1.38Z"
|
|
16
|
-
|
|
16
|
+
clipRule="evenodd"
|
|
17
17
|
/>
|
|
18
18
|
</Fragment>
|
|
19
19
|
) : (
|
|
20
20
|
<Fragment>
|
|
21
21
|
<path
|
|
22
22
|
fill="currentColor"
|
|
23
|
-
|
|
23
|
+
fillRule="evenodd"
|
|
24
24
|
d="m19.315 4-5.824 6.775L19.825 20h-4.659l-4.265-6.212L5.56 20H4.18l6.107-7.104L4.18 4H8.84l4.039 5.883L17.935 4h1.38Zm-3.5 15.008h2.12L8.178 5.04h-2.12l9.757 13.968Z"
|
|
25
|
-
|
|
25
|
+
clipRule="evenodd"
|
|
26
26
|
/>
|
|
27
27
|
<path
|
|
28
28
|
fill="currentColor"
|
|
29
|
-
|
|
29
|
+
fillRule="evenodd"
|
|
30
30
|
d="M0 2a2 2 0 0 1 2-2h20a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2Zm2 0h20v20H2V2Z"
|
|
31
|
-
|
|
31
|
+
clipRule="evenodd"
|
|
32
32
|
/>
|
|
33
33
|
</Fragment>
|
|
34
34
|
)}
|
|
@@ -6,10 +6,14 @@ export { AlertIcon } from './components/alert-icon.js';
|
|
|
6
6
|
export { AndroidIcon } from './components/android-icon.js';
|
|
7
7
|
export { AppleIcon } from './components/apple-icon.js';
|
|
8
8
|
export { ArchiveBoxIcon } from './components/archive-box-icon.js';
|
|
9
|
+
export { ArrowBackCircleIcon } from './components/arrow-back-circle-icon.js';
|
|
10
|
+
export { ArrowDownCircleIcon } from './components/arrow-down-circle-icon.js';
|
|
9
11
|
export { ArrowForkIcon } from './components/arrow-fork-icon.js';
|
|
12
|
+
export { ArrowForwardCircleIcon } from './components/arrow-forward-circle-icon.js';
|
|
10
13
|
export { ArrowLeftIcon } from './components/arrow-left-icon.js';
|
|
11
14
|
export { ArrowRightIcon } from './components/arrow-right-icon.js';
|
|
12
15
|
export { ArrowSplitIcon } from './components/arrow-split-icon.js';
|
|
16
|
+
export { ArrowUpCircleIcon } from './components/arrow-up-circle-icon.js';
|
|
13
17
|
export { AtmIcon } from './components/atm-icon.js';
|
|
14
18
|
export { AttacheCaseIcon } from './components/attache-case-icon.js';
|
|
15
19
|
export { AustraliaIcon } from './components/australia-icon.js';
|
|
@@ -62,9 +66,9 @@ export { DownloadFileIcon } from './components/download-file-icon.js';
|
|
|
62
66
|
export { DownloadIcon } from './components/download-icon.js';
|
|
63
67
|
export { DragIcon } from './components/drag-icon.js';
|
|
64
68
|
export { DropDownIcon } from './components/drop-down-icon.js';
|
|
65
|
-
export { DropUpIcon } from './components/drop-up-icon.js';
|
|
66
69
|
export { DropLeftIcon } from './components/drop-left-icon.js';
|
|
67
70
|
export { DropRightIcon } from './components/drop-right-icon.js';
|
|
71
|
+
export { DropUpIcon } from './components/drop-up-icon.js';
|
|
68
72
|
export { DropboxIcon } from './components/dropbox-icon.js';
|
|
69
73
|
export { EditIcon } from './components/edit-icon.js';
|
|
70
74
|
export { EducationIcon } from './components/education-icon.js';
|
|
@@ -26,50 +26,50 @@ export function SparklePictogram({
|
|
|
26
26
|
{...props}
|
|
27
27
|
>
|
|
28
28
|
<svg width="78" height="78" viewBox="0 0 78 78" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
29
|
-
<g
|
|
29
|
+
<g clipPath="url(#clip0_882_7929)">
|
|
30
30
|
<path
|
|
31
31
|
d="M38.9999 61.716C37.7659 61.716 36.6949 60.9716 36.2758 59.8201L32.4922 49.5961C31.782 47.6885 30.2802 46.1765 28.371 45.4786L18.1378 41.6984C16.9853 41.268 16.2402 40.1979 16.2402 38.9766C16.2402 37.7553 16.9853 36.6736 18.1378 36.2549L28.371 32.4747C30.2802 31.7652 31.7937 30.2647 32.4922 28.3572L36.2758 18.1332C36.7065 16.9817 37.7775 16.2373 38.9999 16.2373C40.2223 16.2373 43.5 17 44.0525 18.1332L47.8361 28.3572C48.5462 30.2647 50.048 31.7768 51.9572 32.4747L62.1904 36.2549C63.3429 36.6853 64.088 37.7553 64.088 38.9766C64.088 40.1979 63.3429 41.2797 62.1904 41.6984L51.9572 45.4786C50.048 46.1881 48.5346 47.6885 47.8361 49.5961C47.8361 49.5961 45.6049 57.6401 44.0525 59.8201C42.5 62 40.2223 61.716 38.9999 61.716ZM38.9999 18.5403C38.8835 18.5403 38.5808 18.5752 38.4528 18.9242L34.6692 29.1481C33.7262 31.6954 31.7238 33.7076 29.1626 34.6498L18.9295 38.43C18.5919 38.5579 18.5453 38.8487 18.5453 38.9766C18.5453 39.1046 18.5802 39.3954 18.9295 39.5233L29.1626 43.3035C31.7122 44.2457 33.7262 46.2463 34.6692 48.8052L38.4528 59.0291C38.5808 59.3664 38.8719 59.413 38.9999 59.413C39.128 59.413 39.419 59.3781 39.5471 59.0291L43.3307 48.8052C44.2737 46.2579 46.2761 44.2457 48.8372 43.3035L59.0704 39.5233C59.408 39.3954 59.4546 39.1046 59.4546 38.9766C59.4546 38.8487 59.4196 38.5579 59.0704 38.43L48.8372 34.6498C46.2877 33.7076 44.2737 31.707 43.3307 29.1481L41.4389 24.0361L39.5471 18.9242C39.419 18.5868 39.128 18.5403 38.9999 18.5403Z"
|
|
32
32
|
className={fill({ mode, outline: true })}
|
|
33
33
|
/>
|
|
34
34
|
<path
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
37
|
d="M67.5225 39.5465H78.0001V37.2202H67.5225V39.5465Z"
|
|
38
38
|
className={fill({ mode, highlight: true })}
|
|
39
39
|
/>
|
|
40
40
|
<path
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
43
|
d="M39.582 10.4682V0H37.2537V10.4682H39.582Z"
|
|
44
44
|
className={fill({ mode, highlight: true })}
|
|
45
45
|
/>
|
|
46
46
|
<path
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
fillRule="evenodd"
|
|
48
|
+
clipRule="evenodd"
|
|
49
49
|
d="M58.8375 20.192L66.0671 12.9689L64.4605 11.3638L57.231 18.5869L58.8375 20.192Z"
|
|
50
50
|
className={fill({ mode, highlight: true })}
|
|
51
51
|
/>
|
|
52
52
|
<path
|
|
53
|
-
|
|
54
|
-
|
|
53
|
+
fillRule="evenodd"
|
|
54
|
+
clipRule="evenodd"
|
|
55
55
|
d="M19.9772 18.5869L12.7477 11.3638L11.1411 12.9689L18.3707 20.192L19.9772 18.5869Z"
|
|
56
56
|
className={fill({ mode, highlight: true })}
|
|
57
57
|
/>
|
|
58
58
|
<path
|
|
59
|
-
|
|
60
|
-
|
|
59
|
+
fillRule="evenodd"
|
|
60
|
+
clipRule="evenodd"
|
|
61
61
|
d="M0 39.5465H10.4776V37.2202H0V39.5465Z"
|
|
62
62
|
className={fill({ mode, highlight: true })}
|
|
63
63
|
/>
|
|
64
64
|
<path
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
fillRule="evenodd"
|
|
66
|
+
clipRule="evenodd"
|
|
67
67
|
d="M39.582 77.9302V67.4619H37.2537V77.9302H39.582Z"
|
|
68
68
|
className={fill({ mode, highlight: true })}
|
|
69
69
|
/>
|
|
70
70
|
<path
|
|
71
|
-
|
|
72
|
-
|
|
71
|
+
fillRule="evenodd"
|
|
72
|
+
clipRule="evenodd"
|
|
73
73
|
d="M12.7477 66.2408L19.9772 59.0177L18.3707 57.4126L11.1411 64.6357L12.7477 66.2408Z"
|
|
74
74
|
className={fill({ mode, highlight: true })}
|
|
75
75
|
/>
|
|
@@ -1,19 +1,67 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { useId } from 'react';
|
|
2
2
|
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { Icon } from '../icon/icon.component.js';
|
|
4
|
+
import { Label } from '../label/label.component.js';
|
|
5
|
+
|
|
6
|
+
import { styles as ProgressIndicatorStyles } from './progress-indicator.styles.js';
|
|
7
|
+
import { ProgressIndicatorProps } from './progress-indicator.types.js';
|
|
5
8
|
|
|
6
9
|
export function ProgressIndicator({
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
inverted = false,
|
|
10
|
+
color = 'hero',
|
|
11
|
+
label,
|
|
10
12
|
size = 'medium',
|
|
13
|
+
icon: EmbedIcon,
|
|
14
|
+
className,
|
|
11
15
|
'aria-label': ariaLabel = 'Loading',
|
|
12
16
|
...props
|
|
13
17
|
}: ProgressIndicatorProps) {
|
|
18
|
+
const styles = ProgressIndicatorStyles({
|
|
19
|
+
size,
|
|
20
|
+
color,
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
const id = useId();
|
|
24
|
+
|
|
25
|
+
const sizeMap: Record<string, { strokeWidth: number }> = {
|
|
26
|
+
xlarge: { strokeWidth: 4 },
|
|
27
|
+
large: { strokeWidth: 4 },
|
|
28
|
+
medium: { strokeWidth: 15 },
|
|
29
|
+
small: { strokeWidth: 20 },
|
|
30
|
+
xsmall: { strokeWidth: 30 },
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
const strokeHalfWidth = sizeMap[size.toString()].strokeWidth / 2;
|
|
34
|
+
|
|
14
35
|
return (
|
|
15
|
-
<div
|
|
16
|
-
|
|
36
|
+
<div aria-label={ariaLabel} className={styles.container()}>
|
|
37
|
+
<div className="relative">
|
|
38
|
+
<Icon viewBox="0 0 180 180" fill="none" color={color} className={styles.base({ className })} {...props}>
|
|
39
|
+
<defs>
|
|
40
|
+
<linearGradient id={`${id}-1`}>
|
|
41
|
+
<stop offset="0%" stopOpacity="0" stopColor="currentColor" />
|
|
42
|
+
<stop offset="100%" stopColor="currentColor" />
|
|
43
|
+
</linearGradient>
|
|
44
|
+
<linearGradient id={`${id}-2`}>
|
|
45
|
+
<stop offset="0%" stopColor="currentColor" />
|
|
46
|
+
<stop offset="50%" stopColor="currentColor" />
|
|
47
|
+
</linearGradient>
|
|
48
|
+
</defs>
|
|
49
|
+
<g strokeWidth={strokeHalfWidth * 2}>
|
|
50
|
+
<>
|
|
51
|
+
<path
|
|
52
|
+
stroke={`url(#${id}-1)`}
|
|
53
|
+
d={`M ${strokeHalfWidth} 90 A ${90 - strokeHalfWidth} ${90 - strokeHalfWidth} 0 0 1 ${180 - strokeHalfWidth} 90`}
|
|
54
|
+
></path>
|
|
55
|
+
<path
|
|
56
|
+
stroke={`url(#${id}-2)`}
|
|
57
|
+
d={`M ${180 - strokeHalfWidth} 90 A ${90 - strokeHalfWidth} ${90 - strokeHalfWidth} 0 0 1 ${strokeHalfWidth} 90`}
|
|
58
|
+
></path>
|
|
59
|
+
</>
|
|
60
|
+
</g>
|
|
61
|
+
</Icon>
|
|
62
|
+
{EmbedIcon && size === 'large' && <EmbedIcon size="large" color={color} className={styles.icon()} />}
|
|
63
|
+
</div>
|
|
64
|
+
{label && size === 'large' && <Label className={styles.label()}>{label}</Label>}
|
|
17
65
|
</div>
|
|
18
66
|
);
|
|
19
67
|
}
|
|
@@ -2,18 +2,41 @@ import { tv } from 'tailwind-variants';
|
|
|
2
2
|
|
|
3
3
|
export const styles = tv(
|
|
4
4
|
{
|
|
5
|
-
|
|
5
|
+
slots: {
|
|
6
|
+
icon: 'absolute inset-0 m-auto',
|
|
7
|
+
base: 'animate-[spin_0.7s_linear_infinite]',
|
|
8
|
+
container: 'flex flex-col items-center',
|
|
9
|
+
label: 'typography-body-9 mt-1.5',
|
|
10
|
+
},
|
|
6
11
|
variants: {
|
|
7
12
|
size: {
|
|
8
|
-
xsmall: 'h-2 w-2',
|
|
9
|
-
small: 'h-3 w-3',
|
|
10
|
-
medium: 'h-4 w-4',
|
|
11
|
-
large: 'h-
|
|
12
|
-
xlarge: 'h-
|
|
13
|
+
xsmall: { base: 'h-2 w-2' },
|
|
14
|
+
small: { base: 'h-3 w-3' },
|
|
15
|
+
medium: { base: 'h-4 w-4' },
|
|
16
|
+
large: { base: 'h-15 w-15' },
|
|
17
|
+
xlarge: { base: 'h-15 w-15' },
|
|
13
18
|
},
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
19
|
+
color: {
|
|
20
|
+
success: { label: 'text-success' },
|
|
21
|
+
info: { label: 'text-info' },
|
|
22
|
+
warning: { label: 'text-warning' },
|
|
23
|
+
danger: { label: 'text-danger' },
|
|
24
|
+
system: { label: 'text-system' },
|
|
25
|
+
white: { label: 'text-white' },
|
|
26
|
+
black: { label: 'text-black' },
|
|
27
|
+
background: { label: 'text-background' },
|
|
28
|
+
border: { label: 'text-border' },
|
|
29
|
+
borderDark: { label: 'text-borderDark' },
|
|
30
|
+
focus: { label: 'text-focus' },
|
|
31
|
+
heading: { label: 'text-heading' },
|
|
32
|
+
hero: { label: 'text-hero' },
|
|
33
|
+
light: { label: 'text-light' },
|
|
34
|
+
link: { label: 'text-link' },
|
|
35
|
+
muted: { label: 'text-muted' },
|
|
36
|
+
neutral: { label: 'text-neutral' },
|
|
37
|
+
pop: { label: 'text-pop' },
|
|
38
|
+
primary: { label: 'text-primary' },
|
|
39
|
+
text: { label: 'text-text' },
|
|
17
40
|
},
|
|
18
41
|
},
|
|
19
42
|
},
|
|
@@ -1,17 +1,19 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { type VariantProps } from 'tailwind-variants';
|
|
1
|
+
import { ReactNode } from 'react';
|
|
3
2
|
|
|
4
|
-
import {
|
|
3
|
+
import { IconProps } from '../icon/icon.types.js';
|
|
5
4
|
|
|
6
|
-
type
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
export type ProgressIndicatorProps = Omit<IconProps, 'copyrightYear' | 'look'> & {
|
|
6
|
+
/**
|
|
7
|
+
* children prop
|
|
8
|
+
* @default false
|
|
9
|
+
*/
|
|
10
|
+
children?: ReactNode;
|
|
9
11
|
/**
|
|
10
|
-
*
|
|
12
|
+
* Icon embedded in progress indicator
|
|
11
13
|
*/
|
|
12
|
-
|
|
14
|
+
icon?: (props: IconProps) => JSX.Element;
|
|
13
15
|
/**
|
|
14
|
-
*
|
|
16
|
+
* Label placed below progress indicator
|
|
15
17
|
*/
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
+
label?: string;
|
|
19
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { clsx } from 'clsx';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
4
|
+
import { Symbol } from '../../symbol.component.js';
|
|
5
|
+
import { type SymbolProps } from '../../symbol.types.js';
|
|
6
|
+
|
|
7
|
+
export function BTLogo({
|
|
8
|
+
'aria-label': ariaLabel = 'BT',
|
|
9
|
+
copyrightYear = '2025',
|
|
10
|
+
viewBoxWidth = 105,
|
|
11
|
+
viewBoxHeight = 43,
|
|
12
|
+
className,
|
|
13
|
+
...props
|
|
14
|
+
}: SymbolProps) {
|
|
15
|
+
return (
|
|
16
|
+
<Symbol
|
|
17
|
+
className={clsx('h-[43px] w-[105px]', className)}
|
|
18
|
+
aria-label={ariaLabel}
|
|
19
|
+
copyrightYear={copyrightYear}
|
|
20
|
+
viewBoxWidth={viewBoxWidth}
|
|
21
|
+
viewBoxHeight={viewBoxHeight}
|
|
22
|
+
{...props}
|
|
23
|
+
>
|
|
24
|
+
<path
|
|
25
|
+
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"
|
|
26
|
+
fill="#007BC6"
|
|
27
|
+
/>
|
|
28
|
+
<path d="M103.521 1.41278H74.1775V9.02954H84.9027V41.88H93.0543V9.02954H103.78V1.41278H103.521Z" fill="#020202" />
|
|
29
|
+
<path
|
|
30
|
+
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"
|
|
31
|
+
fill="#020202"
|
|
32
|
+
/>
|
|
33
|
+
</Symbol>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { clsx } from 'clsx';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
4
|
+
import { Symbol } from '../../symbol.component.js';
|
|
5
|
+
import { type SymbolProps } from '../../symbol.types.js';
|
|
6
|
+
|
|
7
|
+
export function BTMultibrandLargeLogo({
|
|
8
|
+
'aria-label': ariaLabel = 'BT',
|
|
9
|
+
copyrightYear = '2024',
|
|
10
|
+
viewBoxWidth = 180,
|
|
11
|
+
viewBoxHeight = 65,
|
|
12
|
+
align = 'left',
|
|
13
|
+
offset = [null, 52.59, 105.18],
|
|
14
|
+
className,
|
|
15
|
+
...props
|
|
16
|
+
}: SymbolProps) {
|
|
17
|
+
return (
|
|
18
|
+
<Symbol
|
|
19
|
+
className={clsx('h-[65px] w-[180px]', className)}
|
|
20
|
+
aria-label={ariaLabel}
|
|
21
|
+
align={align}
|
|
22
|
+
offset={offset}
|
|
23
|
+
copyrightYear={copyrightYear}
|
|
24
|
+
viewBoxWidth={viewBoxWidth}
|
|
25
|
+
viewBoxHeight={viewBoxHeight}
|
|
26
|
+
{...props}
|
|
27
|
+
>
|
|
28
|
+
<path
|
|
29
|
+
d="M10.2799 33.4558C9.96916 33.4558 9.67106 33.3326 9.45135 33.1134C9.23158 32.8941 9.10813 32.5968 9.10813 32.2867C9.10813 31.9767 9.23158 31.6793 9.45135 31.4601C9.67106 31.2408 9.96916 31.1176 10.2799 31.1176H26.8006C26.5537 29.1935 25.684 27.4023 24.3238 26.0161C24.298 25.9948 24.2742 25.9711 24.2528 25.9453L22.2199 23.8994L22.14 23.8285L15.3045 17L0 32.2867L15.3045 47.5468L22.1134 40.7272L22.2199 40.6297L24.2528 38.6016L24.3504 38.4864C25.6955 37.1106 26.5555 35.3356 26.8006 33.4292L10.2799 33.4558Z"
|
|
30
|
+
fill="#007BC6"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
d="M74.6314 18.0186H53.4768V23.5097H61.2089V47.1926H67.0856V23.5097H74.8179V18.0186H74.6314Z"
|
|
34
|
+
fill="#020202"
|
|
35
|
+
/>
|
|
36
|
+
<path
|
|
37
|
+
d="M49.6241 31.6225C50.4735 30.9562 51.1562 30.1021 51.6183 29.1277C52.0805 28.1533 52.3095 27.0851 52.2873 26.0073C52.3494 24.9298 52.1813 23.8515 51.7941 22.8438C51.4069 21.836 50.8095 20.9219 50.0414 20.1619C48.5145 18.736 46.2774 18.0186 43.4012 18.0186H29.9165V29.6209L33.2544 32.2779L29.9165 34.9349V47.1926H44.1824C49.8105 47.1926 53.4414 43.7916 53.4414 38.5396C53.5167 37.1459 53.199 35.759 52.5243 34.5364C51.8496 33.3137 50.8448 32.3042 49.6241 31.6225ZM35.7933 23.3858H43.4189C45.3808 23.3858 46.597 24.5194 46.597 26.3439C46.5989 26.7531 46.5167 27.1584 46.3555 27.5347C46.1943 27.911 45.9574 28.2503 45.6596 28.5317C45.3618 28.813 45.0092 29.0305 44.6238 29.1706C44.2384 29.3107 43.8284 29.3705 43.4189 29.3463H35.7933V23.3858ZM43.4189 41.79H35.7933V34.7046H43.2946C45.9578 34.7046 47.4225 35.98 47.4225 38.2473C47.4225 41.1878 45.2476 41.79 43.4189 41.79Z"
|
|
38
|
+
fill="#020202"
|
|
39
|
+
/>
|
|
40
|
+
</Symbol>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { clsx } from 'clsx';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
4
|
+
import { Symbol } from '../../symbol.component.js';
|
|
5
|
+
import { type SymbolProps } from '../../symbol.types.js';
|
|
6
|
+
|
|
7
|
+
export function BTMultibrandSmallLogo({
|
|
8
|
+
'aria-label': ariaLabel = 'BT',
|
|
9
|
+
copyrightYear = '2025',
|
|
10
|
+
viewBoxWidth = 122,
|
|
11
|
+
viewBoxHeight = 44,
|
|
12
|
+
align = 'left',
|
|
13
|
+
offset = [null, 36.865, 73.73],
|
|
14
|
+
className,
|
|
15
|
+
...props
|
|
16
|
+
}: SymbolProps) {
|
|
17
|
+
return (
|
|
18
|
+
<Symbol
|
|
19
|
+
className={clsx('h-[44px] w-[122px]', className)}
|
|
20
|
+
aria-label={ariaLabel}
|
|
21
|
+
align={align}
|
|
22
|
+
offset={offset}
|
|
23
|
+
copyrightYear={copyrightYear}
|
|
24
|
+
viewBoxWidth={viewBoxWidth}
|
|
25
|
+
viewBoxHeight={viewBoxHeight}
|
|
26
|
+
{...props}
|
|
27
|
+
>
|
|
28
|
+
<g clip-path="url(#clip0_2154_48)">
|
|
29
|
+
<path
|
|
30
|
+
d="M6.63221 22.6166C6.43171 22.6166 6.23939 22.5372 6.09764 22.3957C5.95586 22.2543 5.87621 22.0624 5.87621 21.8624C5.87621 21.6624 5.95586 21.4705 6.09764 21.3291C6.23939 21.1876 6.43171 21.1081 6.63221 21.1081H17.2907C17.1314 19.8668 16.5703 18.7112 15.6928 17.8169C15.6761 17.8031 15.6608 17.7878 15.647 17.7711L14.3354 16.4512L14.2839 16.4055L9.87386 12L0 21.8624L9.87386 31.7076L14.2667 27.3079L14.3354 27.245L15.647 25.9365L15.71 25.8622C16.5778 24.9746 17.1326 23.8294 17.2907 22.5995L6.63221 22.6166Z"
|
|
31
|
+
fill="#007BC6"
|
|
32
|
+
/>
|
|
33
|
+
<path
|
|
34
|
+
d="M48.1493 12.6571H34.5012V16.1998H39.4897V31.4791H43.2811V16.1998H48.2697V12.6571H48.1493Z"
|
|
35
|
+
fill="#020202"
|
|
36
|
+
/>
|
|
37
|
+
<path
|
|
38
|
+
d="M32.0156 21.4339C32.5636 21.004 33.004 20.453 33.3022 19.8243C33.6004 19.1956 33.7481 18.5065 33.7338 17.8111C33.7739 17.116 33.6654 16.4203 33.4156 15.7701C33.1658 15.12 32.7803 14.5302 32.2848 14.0399C31.2997 13.1199 29.8565 12.6571 28.0008 12.6571H19.301V20.1425L21.4545 21.8567L19.301 23.5709V31.4791H28.5048C32.1359 31.4791 34.4783 29.2849 34.4783 25.8965C34.527 24.9973 34.322 24.1026 33.8867 23.3138C33.4514 22.525 32.8032 21.8737 32.0156 21.4339ZM23.0925 16.1198H28.0122C29.278 16.1198 30.0626 16.8512 30.0626 18.0283C30.0638 18.2923 30.0108 18.5538 29.9068 18.7965C29.8028 19.0393 29.65 19.2582 29.4578 19.4397C29.2657 19.6213 29.0383 19.7616 28.7896 19.852C28.541 19.9424 28.2764 19.981 28.0122 19.9653H23.0925V16.1198ZM28.0122 27.9935H23.0925V23.4223H27.9321C29.6502 23.4223 30.5952 24.2451 30.5952 25.7079C30.5952 27.605 29.1921 27.9935 28.0122 27.9935Z"
|
|
39
|
+
fill="#020202"
|
|
40
|
+
/>
|
|
41
|
+
</g>
|
|
42
|
+
<defs>
|
|
43
|
+
<clipPath id="clip0_2154_48">
|
|
44
|
+
<rect width="48.5714" height="20" fill="white" transform="translate(0 12)" />
|
|
45
|
+
</clipPath>
|
|
46
|
+
</defs>
|
|
47
|
+
</Symbol>
|
|
48
|
+
);
|
|
49
|
+
}
|