diff --git a/packages/icons/scripts/sync.ts b/packages/icons/scripts/sync.ts index 68710d42..a70089e3 100644 --- a/packages/icons/scripts/sync.ts +++ b/packages/icons/scripts/sync.ts @@ -127,15 +127,30 @@ for (const [nodeId, { name, folder }] of Object.entries(NODE_IDS)) { const svg = await transform(svgRaw, { plugins: ['@svgr/plugin-svgo'], - replaceAttrValues: { - '#09101C': 'currentColor', - '#2A4AF5': 'var(--customisation-50, #2A4AF5)', - }, - svgProps: { - 'aria-hidden': '{true}', - }, svgoConfig: { plugins: [ + { + name: 'replace-attributes', + fn: () => { + return { + element: { + enter: node => { + if (node.attributes.fill === '#09101C') { + node.attributes.fill = 'currentColor' + } else if (node.attributes.stroke === '#09101C') { + node.attributes.stroke = 'currentColor' + } else if (node.attributes.fill === '#2A4AF5') { + node.attributes.fill = + 'var(--customisation-50, #2A4AF5)' + } else if (node.attributes.stroke === '#2A4AF5') { + node.attributes.stroke = + 'var(--customisation-50, #2A4AF5)' + } + }, + }, + } + }, + }, { name: 'preset-default', params: { @@ -163,7 +178,7 @@ for (const [nodeId, { name, folder }] of Object.entries(NODE_IDS)) { await fs.writeFile(filePath, svg, { encoding: 'utf8' }) - log.success(filePath) + // log.success(filePath) }, { concurrency: 5 } ) diff --git a/packages/icons/src/12/active-icon.tsx b/packages/icons/src/12/active-icon.tsx index a99ed765..40b41608 100644 --- a/packages/icons/src/12/active-icon.tsx +++ b/packages/icons/src/12/active-icon.tsx @@ -7,11 +7,13 @@ const SvgActiveIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={13} fill="none" viewBox="0 0 12 13" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/add-circle-icon.tsx b/packages/icons/src/12/add-circle-icon.tsx index 81aee97e..c28ebab7 100644 --- a/packages/icons/src/12/add-circle-icon.tsx +++ b/packages/icons/src/12/add-circle-icon.tsx @@ -7,6 +7,8 @@ const SvgAddCircleIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/add-icon.tsx b/packages/icons/src/12/add-icon.tsx index 574528e3..ee32547f 100644 --- a/packages/icons/src/12/add-icon.tsx +++ b/packages/icons/src/12/add-icon.tsx @@ -7,10 +7,12 @@ const SvgAddIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/check-icon.tsx b/packages/icons/src/12/check-icon.tsx index ef461bd7..997990f7 100644 --- a/packages/icons/src/12/check-icon.tsx +++ b/packages/icons/src/12/check-icon.tsx @@ -7,11 +7,13 @@ const SvgCheckIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgCheckLargeIcon diff --git a/packages/icons/src/12/chevron-down-icon.tsx b/packages/icons/src/12/chevron-down-icon.tsx index 48f33393..3404228b 100644 --- a/packages/icons/src/12/chevron-down-icon.tsx +++ b/packages/icons/src/12/chevron-down-icon.tsx @@ -7,9 +7,11 @@ const SvgChevronDownIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgChevronDownIcon diff --git a/packages/icons/src/12/chevron-left-icon.tsx b/packages/icons/src/12/chevron-left-icon.tsx index 4c8938f0..5698603f 100644 --- a/packages/icons/src/12/chevron-left-icon.tsx +++ b/packages/icons/src/12/chevron-left-icon.tsx @@ -7,9 +7,11 @@ const SvgChevronLeftIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgChevronLeftIcon diff --git a/packages/icons/src/12/chevron-right-icon.tsx b/packages/icons/src/12/chevron-right-icon.tsx index f16b27c1..29c68884 100644 --- a/packages/icons/src/12/chevron-right-icon.tsx +++ b/packages/icons/src/12/chevron-right-icon.tsx @@ -7,9 +7,11 @@ const SvgChevronRightIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgChevronRightIcon diff --git a/packages/icons/src/12/chevron-top-icon.tsx b/packages/icons/src/12/chevron-top-icon.tsx index 9733bcca..34b6b1b4 100644 --- a/packages/icons/src/12/chevron-top-icon.tsx +++ b/packages/icons/src/12/chevron-top-icon.tsx @@ -7,9 +7,11 @@ const SvgChevronTopIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgChevronTopIcon diff --git a/packages/icons/src/12/close-icon.tsx b/packages/icons/src/12/close-icon.tsx index 469a4d41..d5b0c626 100644 --- a/packages/icons/src/12/close-icon.tsx +++ b/packages/icons/src/12/close-icon.tsx @@ -7,10 +7,12 @@ const SvgCloseIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgColourPreviewIcon diff --git a/packages/icons/src/12/communities-icon.tsx b/packages/icons/src/12/communities-icon.tsx index 4fce4240..c949a257 100644 --- a/packages/icons/src/12/communities-icon.tsx +++ b/packages/icons/src/12/communities-icon.tsx @@ -7,11 +7,13 @@ const SvgCommunitiesIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + diff --git a/packages/icons/src/12/edit-icon.tsx b/packages/icons/src/12/edit-icon.tsx index 4142e700..8ecc4529 100644 --- a/packages/icons/src/12/edit-icon.tsx +++ b/packages/icons/src/12/edit-icon.tsx @@ -7,11 +7,13 @@ const SvgEditIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/folder-icon.tsx b/packages/icons/src/12/folder-icon.tsx index 56ff61bd..d8d1a93b 100644 --- a/packages/icons/src/12/folder-icon.tsx +++ b/packages/icons/src/12/folder-icon.tsx @@ -7,11 +7,13 @@ const SvgFolderIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/image-icon.tsx b/packages/icons/src/12/image-icon.tsx index faa28388..72698f71 100644 --- a/packages/icons/src/12/image-icon.tsx +++ b/packages/icons/src/12/image-icon.tsx @@ -7,11 +7,13 @@ const SvgImageIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/info-icon.tsx b/packages/icons/src/12/info-icon.tsx index 18c54136..f6d4dcd8 100644 --- a/packages/icons/src/12/info-icon.tsx +++ b/packages/icons/src/12/info-icon.tsx @@ -7,11 +7,13 @@ const SvgInfoIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) => ( - + diff --git a/packages/icons/src/12/locked-icon.tsx b/packages/icons/src/12/locked-icon.tsx index 43bef5bb..4aaeee09 100644 --- a/packages/icons/src/12/locked-icon.tsx +++ b/packages/icons/src/12/locked-icon.tsx @@ -7,10 +7,12 @@ const SvgLockedIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgMutualContactIcon diff --git a/packages/icons/src/12/negative-icon.tsx b/packages/icons/src/12/negative-icon.tsx index 709e07cf..e7f39379 100644 --- a/packages/icons/src/12/negative-icon.tsx +++ b/packages/icons/src/12/negative-icon.tsx @@ -7,6 +7,8 @@ const SvgNegativeIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/negative-state-icon.tsx b/packages/icons/src/12/negative-state-icon.tsx index f26384bf..82c78b6b 100644 --- a/packages/icons/src/12/negative-state-icon.tsx +++ b/packages/icons/src/12/negative-state-icon.tsx @@ -7,6 +7,8 @@ const SvgNegativeStateIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/neutral-icon.tsx b/packages/icons/src/12/neutral-icon.tsx index 7145e4ee..09308dbb 100644 --- a/packages/icons/src/12/neutral-icon.tsx +++ b/packages/icons/src/12/neutral-icon.tsx @@ -7,6 +7,8 @@ const SvgNeutralIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/notification-badge-icon.tsx b/packages/icons/src/12/notification-badge-icon.tsx index 5170ad26..3ab1f299 100644 --- a/packages/icons/src/12/notification-badge-icon.tsx +++ b/packages/icons/src/12/notification-badge-icon.tsx @@ -7,9 +7,11 @@ const SvgNotificationBadgeIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgNotificationBadgeIcon diff --git a/packages/icons/src/12/numbered-list-icon.tsx b/packages/icons/src/12/numbered-list-icon.tsx index a2d115a4..7474f57e 100644 --- a/packages/icons/src/12/numbered-list-icon.tsx +++ b/packages/icons/src/12/numbered-list-icon.tsx @@ -7,17 +7,19 @@ const SvgNumberedListIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/open-state-icon.tsx b/packages/icons/src/12/open-state-icon.tsx index 2a3bda28..337abb60 100644 --- a/packages/icons/src/12/open-state-icon.tsx +++ b/packages/icons/src/12/open-state-icon.tsx @@ -7,11 +7,13 @@ const SvgOpenStateIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - - - + + + ) export default SvgPendingIcon diff --git a/packages/icons/src/12/pending-state-icon.tsx b/packages/icons/src/12/pending-state-icon.tsx index 2bee2cbd..e399abc1 100644 --- a/packages/icons/src/12/pending-state-icon.tsx +++ b/packages/icons/src/12/pending-state-icon.tsx @@ -7,6 +7,8 @@ const SvgPendingStateIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgPlayIcon diff --git a/packages/icons/src/12/positive-icon.tsx b/packages/icons/src/12/positive-icon.tsx index 5ddac719..447a9138 100644 --- a/packages/icons/src/12/positive-icon.tsx +++ b/packages/icons/src/12/positive-icon.tsx @@ -7,6 +7,8 @@ const SvgPositiveIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/positive-state-icon.tsx b/packages/icons/src/12/positive-state-icon.tsx index 4cd6dea7..a3b1fc01 100644 --- a/packages/icons/src/12/positive-state-icon.tsx +++ b/packages/icons/src/12/positive-state-icon.tsx @@ -7,6 +7,8 @@ const SvgPositiveStateIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + diff --git a/packages/icons/src/12/progress-25-icon.tsx b/packages/icons/src/12/progress-25-icon.tsx index 594ce987..1342cbe8 100644 --- a/packages/icons/src/12/progress-25-icon.tsx +++ b/packages/icons/src/12/progress-25-icon.tsx @@ -7,6 +7,8 @@ const SvgProgress25Icon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > @@ -14,7 +16,7 @@ const SvgProgress25Icon = (props: SVGProps) => ( cx={6} cy={6} r={5.45} - stroke="#09101C" + stroke="currentColor" strokeWidth={1.1} opacity={0.2} /> @@ -29,10 +31,16 @@ const SvgProgress25Icon = (props: SVGProps) => ( maskType: 'alpha', }} > - + - + diff --git a/packages/icons/src/12/progress-50-icon.tsx b/packages/icons/src/12/progress-50-icon.tsx index ca5e56f8..4721c91c 100644 --- a/packages/icons/src/12/progress-50-icon.tsx +++ b/packages/icons/src/12/progress-50-icon.tsx @@ -7,6 +7,8 @@ const SvgProgress50Icon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > @@ -14,7 +16,7 @@ const SvgProgress50Icon = (props: SVGProps) => ( cx={6} cy={6} r={5.45} - stroke="#09101C" + stroke="currentColor" strokeWidth={1.1} opacity={0.2} /> @@ -29,10 +31,16 @@ const SvgProgress50Icon = (props: SVGProps) => ( maskType: 'alpha', }} > - + - + diff --git a/packages/icons/src/12/progress-75-icon.tsx b/packages/icons/src/12/progress-75-icon.tsx index 21fc01b6..6764ea20 100644 --- a/packages/icons/src/12/progress-75-icon.tsx +++ b/packages/icons/src/12/progress-75-icon.tsx @@ -7,6 +7,8 @@ const SvgProgress75Icon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > @@ -14,7 +16,7 @@ const SvgProgress75Icon = (props: SVGProps) => ( cx={6} cy={6} r={5.45} - stroke="#09101C" + stroke="currentColor" strokeWidth={1.1} opacity={0.2} /> @@ -29,10 +31,16 @@ const SvgProgress75Icon = (props: SVGProps) => ( maskType: 'alpha', }} > - + - + diff --git a/packages/icons/src/12/progress-icon.tsx b/packages/icons/src/12/progress-icon.tsx index 6d2de01a..9af6d7c4 100644 --- a/packages/icons/src/12/progress-icon.tsx +++ b/packages/icons/src/12/progress-icon.tsx @@ -7,11 +7,13 @@ const SvgProgressIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + diff --git a/packages/icons/src/12/pullup-icon.tsx b/packages/icons/src/12/pullup-icon.tsx index 65fbf139..6e079433 100644 --- a/packages/icons/src/12/pullup-icon.tsx +++ b/packages/icons/src/12/pullup-icon.tsx @@ -7,11 +7,13 @@ const SvgPullupIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + diff --git a/packages/icons/src/12/redo-icon.tsx b/packages/icons/src/12/redo-icon.tsx index 5c89b43f..ba758738 100644 --- a/packages/icons/src/12/redo-icon.tsx +++ b/packages/icons/src/12/redo-icon.tsx @@ -7,11 +7,13 @@ const SvgRedoIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/remove-user-icon.tsx b/packages/icons/src/12/remove-user-icon.tsx index e856def4..722d6baa 100644 --- a/packages/icons/src/12/remove-user-icon.tsx +++ b/packages/icons/src/12/remove-user-icon.tsx @@ -7,10 +7,12 @@ const SvgRemoveUserIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgSentIcon diff --git a/packages/icons/src/12/share-icon.tsx b/packages/icons/src/12/share-icon.tsx index efc02061..f5353a1a 100644 --- a/packages/icons/src/12/share-icon.tsx +++ b/packages/icons/src/12/share-icon.tsx @@ -7,15 +7,17 @@ const SvgShareIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgShareIcon diff --git a/packages/icons/src/12/star-icon.tsx b/packages/icons/src/12/star-icon.tsx index 3f5d78e1..32c88f4b 100644 --- a/packages/icons/src/12/star-icon.tsx +++ b/packages/icons/src/12/star-icon.tsx @@ -7,11 +7,13 @@ const SvgStarIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/stop-icon.tsx b/packages/icons/src/12/stop-icon.tsx index f0250056..1cadc2dc 100644 --- a/packages/icons/src/12/stop-icon.tsx +++ b/packages/icons/src/12/stop-icon.tsx @@ -7,10 +7,12 @@ const SvgStopIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/strikethrough-icon.tsx b/packages/icons/src/12/strikethrough-icon.tsx index 73965013..f3f5f41e 100644 --- a/packages/icons/src/12/strikethrough-icon.tsx +++ b/packages/icons/src/12/strikethrough-icon.tsx @@ -7,10 +7,12 @@ const SvgStrikethroughIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > - + diff --git a/packages/icons/src/12/token-master-icon.tsx b/packages/icons/src/12/token-master-icon.tsx index e9222c1f..b7e97370 100644 --- a/packages/icons/src/12/token-master-icon.tsx +++ b/packages/icons/src/12/token-master-icon.tsx @@ -7,11 +7,13 @@ const SvgTokenMasterIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/verified-icon.tsx b/packages/icons/src/12/verified-icon.tsx index 10d25374..1675ed45 100644 --- a/packages/icons/src/12/verified-icon.tsx +++ b/packages/icons/src/12/verified-icon.tsx @@ -7,6 +7,8 @@ const SvgVerifiedIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/volume-icon.tsx b/packages/icons/src/12/volume-icon.tsx index 6ba7f9e5..964c5019 100644 --- a/packages/icons/src/12/volume-icon.tsx +++ b/packages/icons/src/12/volume-icon.tsx @@ -7,10 +7,12 @@ const SvgVolumeIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/volume-max-icon.tsx b/packages/icons/src/12/volume-max-icon.tsx index 8bac5311..c000ba7a 100644 --- a/packages/icons/src/12/volume-max-icon.tsx +++ b/packages/icons/src/12/volume-max-icon.tsx @@ -7,11 +7,13 @@ const SvgVolumeMaxIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/12/web-icon.tsx b/packages/icons/src/12/web-icon.tsx index d243bd6f..e76357b8 100644 --- a/packages/icons/src/12/web-icon.tsx +++ b/packages/icons/src/12/web-icon.tsx @@ -7,11 +7,13 @@ const SvgWebIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/add-icon.tsx b/packages/icons/src/16/add-icon.tsx index d5982347..371078bb 100644 --- a/packages/icons/src/16/add-icon.tsx +++ b/packages/icons/src/16/add-icon.tsx @@ -7,10 +7,12 @@ const SvgAddIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgCheckIcon diff --git a/packages/icons/src/16/chevron-down-icon.tsx b/packages/icons/src/16/chevron-down-icon.tsx index d6461ab3..f7556fde 100644 --- a/packages/icons/src/16/chevron-down-icon.tsx +++ b/packages/icons/src/16/chevron-down-icon.tsx @@ -7,9 +7,11 @@ const SvgChevronDownIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgChevronDownIcon diff --git a/packages/icons/src/16/chevron-left-icon.tsx b/packages/icons/src/16/chevron-left-icon.tsx index dc47c0df..1a1d0040 100644 --- a/packages/icons/src/16/chevron-left-icon.tsx +++ b/packages/icons/src/16/chevron-left-icon.tsx @@ -7,9 +7,15 @@ const SvgChevronLeftIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgChevronLeftIcon diff --git a/packages/icons/src/16/chevron-right-icon.tsx b/packages/icons/src/16/chevron-right-icon.tsx index 63f7db92..e54c59b6 100644 --- a/packages/icons/src/16/chevron-right-icon.tsx +++ b/packages/icons/src/16/chevron-right-icon.tsx @@ -7,9 +7,15 @@ const SvgChevronRightIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgChevronRightIcon diff --git a/packages/icons/src/16/chevron-top-icon.tsx b/packages/icons/src/16/chevron-top-icon.tsx index 9d92d8db..17392d80 100644 --- a/packages/icons/src/16/chevron-top-icon.tsx +++ b/packages/icons/src/16/chevron-top-icon.tsx @@ -7,9 +7,11 @@ const SvgChevronTopIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgChevronTopIcon diff --git a/packages/icons/src/16/chevrons-left-icon.tsx b/packages/icons/src/16/chevrons-left-icon.tsx index dd516f58..3ab35a14 100644 --- a/packages/icons/src/16/chevrons-left-icon.tsx +++ b/packages/icons/src/16/chevrons-left-icon.tsx @@ -7,10 +7,12 @@ const SvgChevronsLeftIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/customize-icon.tsx b/packages/icons/src/16/customize-icon.tsx index 6a6faa6e..98270db7 100644 --- a/packages/icons/src/16/customize-icon.tsx +++ b/packages/icons/src/16/customize-icon.tsx @@ -7,10 +7,12 @@ const SvgCustomizeIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/decline-icon.tsx b/packages/icons/src/16/decline-icon.tsx index af508a8b..d722ef79 100644 --- a/packages/icons/src/16/decline-icon.tsx +++ b/packages/icons/src/16/decline-icon.tsx @@ -7,10 +7,12 @@ const SvgDeclineIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( d="M1.5 8a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0Z" clipRule="evenodd" /> - + ) export default SvgDropdownIcon diff --git a/packages/icons/src/16/email-icon.tsx b/packages/icons/src/16/email-icon.tsx index 48eb6e31..239622b5 100644 --- a/packages/icons/src/16/email-icon.tsx +++ b/packages/icons/src/16/email-icon.tsx @@ -7,10 +7,12 @@ const SvgEmailIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/folder-icon.tsx b/packages/icons/src/16/folder-icon.tsx index b6b70ce3..aa130ca8 100644 --- a/packages/icons/src/16/folder-icon.tsx +++ b/packages/icons/src/16/folder-icon.tsx @@ -7,11 +7,13 @@ const SvgFolderIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > - - + + ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/link-icon.tsx b/packages/icons/src/16/link-icon.tsx index 7d97a74f..0629fc37 100644 --- a/packages/icons/src/16/link-icon.tsx +++ b/packages/icons/src/16/link-icon.tsx @@ -7,10 +7,12 @@ const SvgLinkIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/negative-state-icon.tsx b/packages/icons/src/16/negative-state-icon.tsx index cc857ab4..b9dec1fe 100644 --- a/packages/icons/src/16/negative-state-icon.tsx +++ b/packages/icons/src/16/negative-state-icon.tsx @@ -7,6 +7,8 @@ const SvgNegativeStateIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgNotificationBadgeIcon diff --git a/packages/icons/src/16/notifications-unread-icon.tsx b/packages/icons/src/16/notifications-unread-icon.tsx index ff022077..361a413a 100644 --- a/packages/icons/src/16/notifications-unread-icon.tsx +++ b/packages/icons/src/16/notifications-unread-icon.tsx @@ -7,15 +7,17 @@ const SvgNotificationsUnreadIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgNotificationsUnreadIcon diff --git a/packages/icons/src/16/offline-icon.tsx b/packages/icons/src/16/offline-icon.tsx index 46e1ef86..1ca24739 100644 --- a/packages/icons/src/16/offline-icon.tsx +++ b/packages/icons/src/16/offline-icon.tsx @@ -7,6 +7,8 @@ const SvgOfflineIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/offline-left-icon.tsx b/packages/icons/src/16/offline-left-icon.tsx index a16f6fe8..98c28430 100644 --- a/packages/icons/src/16/offline-left-icon.tsx +++ b/packages/icons/src/16/offline-left-icon.tsx @@ -7,6 +7,8 @@ const SvgOfflineLeftIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 8 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/online-icon.tsx b/packages/icons/src/16/online-icon.tsx index 7372350e..fd345ed3 100644 --- a/packages/icons/src/16/online-icon.tsx +++ b/packages/icons/src/16/online-icon.tsx @@ -7,6 +7,8 @@ const SvgOnlineIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/online-left-icon.tsx b/packages/icons/src/16/online-left-icon.tsx index 6a9ba90f..78fb7328 100644 --- a/packages/icons/src/16/online-left-icon.tsx +++ b/packages/icons/src/16/online-left-icon.tsx @@ -7,6 +7,8 @@ const SvgOnlineLeftIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 8 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/open-icon.tsx b/packages/icons/src/16/open-icon.tsx index 0f217d63..37d748f2 100644 --- a/packages/icons/src/16/open-icon.tsx +++ b/packages/icons/src/16/open-icon.tsx @@ -7,10 +7,12 @@ const SvgOpenIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/positive-state-icon.tsx b/packages/icons/src/16/positive-state-icon.tsx index a79dff08..e7e5f28a 100644 --- a/packages/icons/src/16/positive-state-icon.tsx +++ b/packages/icons/src/16/positive-state-icon.tsx @@ -7,6 +7,8 @@ const SvgPositiveStateIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > - + diff --git a/packages/icons/src/16/pullup-icon.tsx b/packages/icons/src/16/pullup-icon.tsx index 456e6be5..48460b40 100644 --- a/packages/icons/src/16/pullup-icon.tsx +++ b/packages/icons/src/16/pullup-icon.tsx @@ -7,6 +7,8 @@ const SvgPullupIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( d="M1.5 8a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0Z" clipRule="evenodd" /> - + ) export default SvgPullupIcon diff --git a/packages/icons/src/16/puzzle-icon.tsx b/packages/icons/src/16/puzzle-icon.tsx index e7b02397..2d73bff6 100644 --- a/packages/icons/src/16/puzzle-icon.tsx +++ b/packages/icons/src/16/puzzle-icon.tsx @@ -7,10 +7,12 @@ const SvgPuzzleIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( /> - + ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( /> - + ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/stickers-icon.tsx b/packages/icons/src/16/stickers-icon.tsx index 3a2d97ab..ec0f12c6 100644 --- a/packages/icons/src/16/stickers-icon.tsx +++ b/packages/icons/src/16/stickers-icon.tsx @@ -7,11 +7,13 @@ const SvgStickersIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( /> - + ) => ( /> - + ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/time-icon.tsx b/packages/icons/src/16/time-icon.tsx index 0a62a8de..87efd529 100644 --- a/packages/icons/src/16/time-icon.tsx +++ b/packages/icons/src/16/time-icon.tsx @@ -7,11 +7,13 @@ const SvgTimeIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/16/volume-max-icon.tsx b/packages/icons/src/16/volume-max-icon.tsx index 32fdf106..bd5dc084 100644 --- a/packages/icons/src/16/volume-max-icon.tsx +++ b/packages/icons/src/16/volume-max-icon.tsx @@ -7,10 +7,12 @@ const SvgVolumeMaxIcon = (props: SVGProps) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={16} fill="none" viewBox="0 0 16 16" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/activity-center-icon.tsx b/packages/icons/src/20/activity-center-icon.tsx index c6bfb96d..3d280c68 100644 --- a/packages/icons/src/20/activity-center-icon.tsx +++ b/packages/icons/src/20/activity-center-icon.tsx @@ -7,10 +7,12 @@ const SvgActivityCenterIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/anonymous-icon.tsx b/packages/icons/src/20/anonymous-icon.tsx index fa23d95a..c7af68bb 100644 --- a/packages/icons/src/20/anonymous-icon.tsx +++ b/packages/icons/src/20/anonymous-icon.tsx @@ -7,6 +7,8 @@ const SvgAnonymousIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/argentina-icon.tsx b/packages/icons/src/20/argentina-icon.tsx index ded505a3..18c3e061 100644 --- a/packages/icons/src/20/argentina-icon.tsx +++ b/packages/icons/src/20/argentina-icon.tsx @@ -7,6 +7,8 @@ const SvgArgentinaIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > @@ -30,14 +32,26 @@ const SvgBridgeBlurIcon = (props: SVGProps) => ( - - + + ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > @@ -28,10 +30,22 @@ const SvgBridgeIcon = (props: SVGProps) => ( /> - + - - + + ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/bullet-list-icon.tsx b/packages/icons/src/20/bullet-list-icon.tsx index cfce0155..6cdfabdc 100644 --- a/packages/icons/src/20/bullet-list-icon.tsx +++ b/packages/icons/src/20/bullet-list-icon.tsx @@ -7,17 +7,19 @@ const SvgBulletListIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/check-icon.tsx b/packages/icons/src/20/check-icon.tsx index 43cd03c0..0f18d731 100644 --- a/packages/icons/src/20/check-icon.tsx +++ b/packages/icons/src/20/check-icon.tsx @@ -7,9 +7,11 @@ const SvgCheckIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgCheckIcon diff --git a/packages/icons/src/20/checktoken-icon.tsx b/packages/icons/src/20/checktoken-icon.tsx index 0f38a5a0..3c1ec178 100644 --- a/packages/icons/src/20/checktoken-icon.tsx +++ b/packages/icons/src/20/checktoken-icon.tsx @@ -7,6 +7,8 @@ const SvgChecktokenIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgChevronDownIcon diff --git a/packages/icons/src/20/chevron-left-icon.tsx b/packages/icons/src/20/chevron-left-icon.tsx index 2f196298..3d04bda6 100644 --- a/packages/icons/src/20/chevron-left-icon.tsx +++ b/packages/icons/src/20/chevron-left-icon.tsx @@ -7,9 +7,15 @@ const SvgChevronLeftIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgChevronLeftIcon diff --git a/packages/icons/src/20/chevron-right-icon.tsx b/packages/icons/src/20/chevron-right-icon.tsx index d747eae6..f406cb8c 100644 --- a/packages/icons/src/20/chevron-right-icon.tsx +++ b/packages/icons/src/20/chevron-right-icon.tsx @@ -7,9 +7,15 @@ const SvgChevronRightIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgChevronRightIcon diff --git a/packages/icons/src/20/chevron-top-icon.tsx b/packages/icons/src/20/chevron-top-icon.tsx index 5584e6fb..71eea6ec 100644 --- a/packages/icons/src/20/chevron-top-icon.tsx +++ b/packages/icons/src/20/chevron-top-icon.tsx @@ -7,9 +7,11 @@ const SvgChevronTopIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgChevronTopIcon diff --git a/packages/icons/src/20/chevrons-left-icon.tsx b/packages/icons/src/20/chevrons-left-icon.tsx index c4cda6ab..5f282277 100644 --- a/packages/icons/src/20/chevrons-left-icon.tsx +++ b/packages/icons/src/20/chevrons-left-icon.tsx @@ -7,10 +7,12 @@ const SvgChevronsLeftIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/china-icon.tsx b/packages/icons/src/20/china-icon.tsx index 240942f8..94ebb2e2 100644 --- a/packages/icons/src/20/china-icon.tsx +++ b/packages/icons/src/20/china-icon.tsx @@ -7,6 +7,8 @@ const SvgChinaIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/close-windows-icon.tsx b/packages/icons/src/20/close-windows-icon.tsx index 48e61a98..16987368 100644 --- a/packages/icons/src/20/close-windows-icon.tsx +++ b/packages/icons/src/20/close-windows-icon.tsx @@ -7,10 +7,12 @@ const SvgCloseWindowsIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/cross-circle-icon.tsx b/packages/icons/src/20/cross-circle-icon.tsx index 518dc8a4..0443423f 100644 --- a/packages/icons/src/20/cross-circle-icon.tsx +++ b/packages/icons/src/20/cross-circle-icon.tsx @@ -7,6 +7,8 @@ const SvgCrossCircleIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/crown-icon.tsx b/packages/icons/src/20/crown-icon.tsx index b8a3697d..e87e7616 100644 --- a/packages/icons/src/20/crown-icon.tsx +++ b/packages/icons/src/20/crown-icon.tsx @@ -7,10 +7,12 @@ const SvgCrownIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/customize-icon.tsx b/packages/icons/src/20/customize-icon.tsx index 74a7327a..1533f47f 100644 --- a/packages/icons/src/20/customize-icon.tsx +++ b/packages/icons/src/20/customize-icon.tsx @@ -7,10 +7,12 @@ const SvgCustomizeIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/dashboard-icon.tsx b/packages/icons/src/20/dashboard-icon.tsx index dd91076b..157a21a0 100644 --- a/packages/icons/src/20/dashboard-icon.tsx +++ b/packages/icons/src/20/dashboard-icon.tsx @@ -7,10 +7,12 @@ const SvgDashboardIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/decrease-windows-icon.tsx b/packages/icons/src/20/decrease-windows-icon.tsx index aca6d68e..35888783 100644 --- a/packages/icons/src/20/decrease-windows-icon.tsx +++ b/packages/icons/src/20/decrease-windows-icon.tsx @@ -7,10 +7,12 @@ const SvgDecreaseWindowsIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/disconnect-icon.tsx b/packages/icons/src/20/disconnect-icon.tsx index bc57f727..b8566444 100644 --- a/packages/icons/src/20/disconnect-icon.tsx +++ b/packages/icons/src/20/disconnect-icon.tsx @@ -7,11 +7,13 @@ const SvgDisconnectIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/done-icon.tsx b/packages/icons/src/20/done-icon.tsx index fbbfbf5e..b274b9c8 100644 --- a/packages/icons/src/20/done-icon.tsx +++ b/packages/icons/src/20/done-icon.tsx @@ -7,10 +7,12 @@ const SvgDoneIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( d="M3 10a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z" clipRule="evenodd" /> - + ) export default SvgDropdownIcon diff --git a/packages/icons/src/20/duration-icon.tsx b/packages/icons/src/20/duration-icon.tsx index 38db0aae..fe71369d 100644 --- a/packages/icons/src/20/duration-icon.tsx +++ b/packages/icons/src/20/duration-icon.tsx @@ -7,10 +7,12 @@ const SvgDurationIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/epics-icon.tsx b/packages/icons/src/20/epics-icon.tsx index dfe49285..2a20d7ec 100644 --- a/packages/icons/src/20/epics-icon.tsx +++ b/packages/icons/src/20/epics-icon.tsx @@ -7,10 +7,12 @@ const SvgEpicsIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/feed-icon.tsx b/packages/icons/src/20/feed-icon.tsx index d85c2d76..587aad6d 100644 --- a/packages/icons/src/20/feed-icon.tsx +++ b/packages/icons/src/20/feed-icon.tsx @@ -7,10 +7,12 @@ const SvgFeedIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgFlashIcon diff --git a/packages/icons/src/20/flash-off-icon.tsx b/packages/icons/src/20/flash-off-icon.tsx index 53c8ece2..a2ee368e 100644 --- a/packages/icons/src/20/flash-off-icon.tsx +++ b/packages/icons/src/20/flash-off-icon.tsx @@ -7,10 +7,12 @@ const SvgFlashOffIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/gas-icon.tsx b/packages/icons/src/20/gas-icon.tsx index 88047991..86a45cbb 100644 --- a/packages/icons/src/20/gas-icon.tsx +++ b/packages/icons/src/20/gas-icon.tsx @@ -7,10 +7,12 @@ const SvgGasIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/help-icon.tsx b/packages/icons/src/20/help-icon.tsx index dae64d43..0d3bd84c 100644 --- a/packages/icons/src/20/help-icon.tsx +++ b/packages/icons/src/20/help-icon.tsx @@ -7,10 +7,12 @@ const SvgHelpIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/hourglass-icon.tsx b/packages/icons/src/20/hourglass-icon.tsx index 3adc9f70..d1bca250 100644 --- a/packages/icons/src/20/hourglass-icon.tsx +++ b/packages/icons/src/20/hourglass-icon.tsx @@ -7,11 +7,13 @@ const SvgHourglassIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgHypenIcon diff --git a/packages/icons/src/20/image-icon.tsx b/packages/icons/src/20/image-icon.tsx index 00dcb4ad..67ea31d0 100644 --- a/packages/icons/src/20/image-icon.tsx +++ b/packages/icons/src/20/image-icon.tsx @@ -7,10 +7,12 @@ const SvgImageIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/index.ts b/packages/icons/src/20/index.ts index 8a14441c..53b6d461 100644 --- a/packages/icons/src/20/index.ts +++ b/packages/icons/src/20/index.ts @@ -317,6 +317,8 @@ export { default as TokenSalesIcon } from './token-sales-icon' export { default as TopbarDockIcon } from './topbar-dock-icon' export { default as TopbarIcon } from './topbar-icon' export { default as TouchIdBigIcon } from './touch-id-big-icon' +export { default as TransactionBlurIcon } from './transaction-blur-icon' +export { default as TransactionIcon } from './transaction-icon' export { default as TranslationsIcon } from './translations-icon' export { default as TravelIcon } from './travel-icon' export { default as UblockUserIcon } from './ublock-user-icon' diff --git a/packages/icons/src/20/info-badge-icon.tsx b/packages/icons/src/20/info-badge-icon.tsx index 7ff90e27..5d03c7a2 100644 --- a/packages/icons/src/20/info-badge-icon.tsx +++ b/packages/icons/src/20/info-badge-icon.tsx @@ -7,10 +7,12 @@ const SvgInfoBadgeIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) => ( - + ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/media-icon.tsx b/packages/icons/src/20/media-icon.tsx index 68db1ada..120d18db 100644 --- a/packages/icons/src/20/media-icon.tsx +++ b/packages/icons/src/20/media-icon.tsx @@ -7,10 +7,12 @@ const SvgMediaIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/milestones-icon.tsx b/packages/icons/src/20/milestones-icon.tsx index 1c3fc65a..ecf84565 100644 --- a/packages/icons/src/20/milestones-icon.tsx +++ b/packages/icons/src/20/milestones-icon.tsx @@ -7,10 +7,12 @@ const SvgMilestonesIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/minimize-windows-icon.tsx b/packages/icons/src/20/minimize-windows-icon.tsx index 320ab24d..0c6058b8 100644 --- a/packages/icons/src/20/minimize-windows-icon.tsx +++ b/packages/icons/src/20/minimize-windows-icon.tsx @@ -7,9 +7,11 @@ const SvgMinimizeWindowsIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgMinimizeWindowsIcon diff --git a/packages/icons/src/20/mint-icon.tsx b/packages/icons/src/20/mint-icon.tsx index 77b7a9b7..38fd1395 100644 --- a/packages/icons/src/20/mint-icon.tsx +++ b/packages/icons/src/20/mint-icon.tsx @@ -7,10 +7,12 @@ const SvgMintIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgMutualContactIcon diff --git a/packages/icons/src/20/nature-icon.tsx b/packages/icons/src/20/nature-icon.tsx index 50a8a30a..2956d12b 100644 --- a/packages/icons/src/20/nature-icon.tsx +++ b/packages/icons/src/20/nature-icon.tsx @@ -7,10 +7,12 @@ const SvgNatureIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/neutral-icon.tsx b/packages/icons/src/20/neutral-icon.tsx index e83bfe9c..4a885e52 100644 --- a/packages/icons/src/20/neutral-icon.tsx +++ b/packages/icons/src/20/neutral-icon.tsx @@ -7,6 +7,8 @@ const SvgNeutralIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/new-message-icon.tsx b/packages/icons/src/20/new-message-icon.tsx index 6f28c28e..bb70c2ff 100644 --- a/packages/icons/src/20/new-message-icon.tsx +++ b/packages/icons/src/20/new-message-icon.tsx @@ -7,10 +7,12 @@ const SvgNewMessageIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgNotificationBadgeIcon diff --git a/packages/icons/src/20/notifications-icon.tsx b/packages/icons/src/20/notifications-icon.tsx index 7ee9280f..4800552b 100644 --- a/packages/icons/src/20/notifications-icon.tsx +++ b/packages/icons/src/20/notifications-icon.tsx @@ -7,10 +7,12 @@ const SvgNotificationsIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) export default SvgNotificationsUnreadIcon diff --git a/packages/icons/src/20/numbered-list-icon.tsx b/packages/icons/src/20/numbered-list-icon.tsx index c2942a3e..fe2e8b97 100644 --- a/packages/icons/src/20/numbered-list-icon.tsx +++ b/packages/icons/src/20/numbered-list-icon.tsx @@ -7,17 +7,19 @@ const SvgNumberedListIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/offline-left-icon.tsx b/packages/icons/src/20/offline-left-icon.tsx index 94df528f..781a0a80 100644 --- a/packages/icons/src/20/offline-left-icon.tsx +++ b/packages/icons/src/20/offline-left-icon.tsx @@ -7,6 +7,8 @@ const SvgOfflineLeftIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 14 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/online-icon.tsx b/packages/icons/src/20/online-icon.tsx index 1cff349b..99b23e37 100644 --- a/packages/icons/src/20/online-icon.tsx +++ b/packages/icons/src/20/online-icon.tsx @@ -7,6 +7,8 @@ const SvgOnlineIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/online-left-icon.tsx b/packages/icons/src/20/online-left-icon.tsx index 1b37946a..eb191dd5 100644 --- a/packages/icons/src/20/online-left-icon.tsx +++ b/packages/icons/src/20/online-left-icon.tsx @@ -7,6 +7,8 @@ const SvgOnlineLeftIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 14 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/open-icon.tsx b/packages/icons/src/20/open-icon.tsx index 7dcca3e4..ed54695f 100644 --- a/packages/icons/src/20/open-icon.tsx +++ b/packages/icons/src/20/open-icon.tsx @@ -7,10 +7,12 @@ const SvgOpenIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/percentage-icon.tsx b/packages/icons/src/20/percentage-icon.tsx index 21c06107..a3c0ce35 100644 --- a/packages/icons/src/20/percentage-icon.tsx +++ b/packages/icons/src/20/percentage-icon.tsx @@ -7,10 +7,12 @@ const SvgPercentageIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/plug-icon.tsx b/packages/icons/src/20/plug-icon.tsx index 3b2d5a6f..5976b640 100644 --- a/packages/icons/src/20/plug-icon.tsx +++ b/packages/icons/src/20/plug-icon.tsx @@ -7,10 +7,12 @@ const SvgPlugIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( d="M3 10a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z" clipRule="evenodd" /> - + ) export default SvgPullupIcon diff --git a/packages/icons/src/20/puzzle-icon.tsx b/packages/icons/src/20/puzzle-icon.tsx index 59afa366..f6073556 100644 --- a/packages/icons/src/20/puzzle-icon.tsx +++ b/packages/icons/src/20/puzzle-icon.tsx @@ -7,10 +7,12 @@ const SvgPuzzleIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/quill-pen-icon.tsx b/packages/icons/src/20/quill-pen-icon.tsx index 1664b7bd..9640a22b 100644 --- a/packages/icons/src/20/quill-pen-icon.tsx +++ b/packages/icons/src/20/quill-pen-icon.tsx @@ -7,15 +7,17 @@ const SvgQuillPenIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( /> - + ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( /> - + ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/shop-icon.tsx b/packages/icons/src/20/shop-icon.tsx index ce69798d..638d02d0 100644 --- a/packages/icons/src/20/shop-icon.tsx +++ b/packages/icons/src/20/shop-icon.tsx @@ -7,10 +7,12 @@ const SvgShopIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/status-icon.tsx b/packages/icons/src/20/status-icon.tsx index c413c29b..d3009936 100644 --- a/packages/icons/src/20/status-icon.tsx +++ b/packages/icons/src/20/status-icon.tsx @@ -7,10 +7,12 @@ const SvgStatusIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/strikethrough-icon.tsx b/packages/icons/src/20/strikethrough-icon.tsx index b312c9c7..72be6106 100644 --- a/packages/icons/src/20/strikethrough-icon.tsx +++ b/packages/icons/src/20/strikethrough-icon.tsx @@ -7,10 +7,12 @@ const SvgStrikethroughIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + - + - + - + diff --git a/packages/icons/src/20/swap-icon.tsx b/packages/icons/src/20/swap-icon.tsx index 7726c869..22b51784 100644 --- a/packages/icons/src/20/swap-icon.tsx +++ b/packages/icons/src/20/swap-icon.tsx @@ -7,19 +7,21 @@ const SvgSwapIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( }} > - - + + - + - - + + diff --git a/packages/icons/src/20/switch-icon.tsx b/packages/icons/src/20/switch-icon.tsx index ecf4f138..d6ab831e 100644 --- a/packages/icons/src/20/switch-icon.tsx +++ b/packages/icons/src/20/switch-icon.tsx @@ -7,10 +7,12 @@ const SvgSwitchIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/tabs-icon.tsx b/packages/icons/src/20/tabs-icon.tsx index 305e8a1f..9da2fa0a 100644 --- a/packages/icons/src/20/tabs-icon.tsx +++ b/packages/icons/src/20/tabs-icon.tsx @@ -7,10 +7,12 @@ const SvgTabsIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( + + + + + + + + + + + + + + + + + + + + + + + + +) +export default SvgTransactionBlurIcon diff --git a/packages/icons/src/20/transaction-icon.tsx b/packages/icons/src/20/transaction-icon.tsx new file mode 100644 index 00000000..d907d3ef --- /dev/null +++ b/packages/icons/src/20/transaction-icon.tsx @@ -0,0 +1,82 @@ +import type { SVGProps } from 'react' + +const SvgTransactionIcon = (props: SVGProps) => ( + + + + + + + + + + + + + + + + + + + + + + + + + +) +export default SvgTransactionIcon diff --git a/packages/icons/src/20/translations-icon.tsx b/packages/icons/src/20/translations-icon.tsx index e00b7f07..04538bb0 100644 --- a/packages/icons/src/20/translations-icon.tsx +++ b/packages/icons/src/20/translations-icon.tsx @@ -7,10 +7,12 @@ const SvgTranslationsIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/20/workstreams-icon.tsx b/packages/icons/src/20/workstreams-icon.tsx index bfbdb0de..cd203da5 100644 --- a/packages/icons/src/20/workstreams-icon.tsx +++ b/packages/icons/src/20/workstreams-icon.tsx @@ -7,10 +7,12 @@ const SvgWorkstreamsIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/reactions/laugh-icon.tsx b/packages/icons/src/reactions/laugh-icon.tsx index 6d044610..750c88c3 100644 --- a/packages/icons/src/reactions/laugh-icon.tsx +++ b/packages/icons/src/reactions/laugh-icon.tsx @@ -7,6 +7,8 @@ const SvgLaughIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/reactions/love-icon.tsx b/packages/icons/src/reactions/love-icon.tsx index baa5de23..3f6f9c02 100644 --- a/packages/icons/src/reactions/love-icon.tsx +++ b/packages/icons/src/reactions/love-icon.tsx @@ -7,6 +7,8 @@ const SvgLoveIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/reactions/thumbs-down-icon.tsx b/packages/icons/src/reactions/thumbs-down-icon.tsx index 82bfce3c..b11e9a1d 100644 --- a/packages/icons/src/reactions/thumbs-down-icon.tsx +++ b/packages/icons/src/reactions/thumbs-down-icon.tsx @@ -7,6 +7,8 @@ const SvgThumbsDownIcon = (props: SVGProps) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={12} fill="none" viewBox="0 0 12 12" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/social/etherscan-icon.tsx b/packages/icons/src/social/etherscan-icon.tsx index 57b72015..350098bf 100644 --- a/packages/icons/src/social/etherscan-icon.tsx +++ b/packages/icons/src/social/etherscan-icon.tsx @@ -7,6 +7,8 @@ const SvgEtherscanIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/social/facebook-icon.tsx b/packages/icons/src/social/facebook-icon.tsx index efb0b16a..7a7a3ae8 100644 --- a/packages/icons/src/social/facebook-icon.tsx +++ b/packages/icons/src/social/facebook-icon.tsx @@ -7,10 +7,12 @@ const SvgFacebookIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > - + ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/social/github-icon.tsx b/packages/icons/src/social/github-icon.tsx index 554fb9fb..3f4b87de 100644 --- a/packages/icons/src/social/github-icon.tsx +++ b/packages/icons/src/social/github-icon.tsx @@ -7,6 +7,8 @@ const SvgGithubIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/social/intagram-icon.tsx b/packages/icons/src/social/intagram-icon.tsx index 84fd51ec..52faae1e 100644 --- a/packages/icons/src/social/intagram-icon.tsx +++ b/packages/icons/src/social/intagram-icon.tsx @@ -7,11 +7,13 @@ const SvgIntagramIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/social/lens-icon.tsx b/packages/icons/src/social/lens-icon.tsx index 4430a380..037e061b 100644 --- a/packages/icons/src/social/lens-icon.tsx +++ b/packages/icons/src/social/lens-icon.tsx @@ -7,18 +7,20 @@ const SvgLensIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/social/linkedin-icon.tsx b/packages/icons/src/social/linkedin-icon.tsx index 977fe8e9..f1e6e1ac 100644 --- a/packages/icons/src/social/linkedin-icon.tsx +++ b/packages/icons/src/social/linkedin-icon.tsx @@ -7,11 +7,13 @@ const SvgLinkedinIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/social/snapchat-icon.tsx b/packages/icons/src/social/snapchat-icon.tsx index 100afb11..96e69eed 100644 --- a/packages/icons/src/social/snapchat-icon.tsx +++ b/packages/icons/src/social/snapchat-icon.tsx @@ -7,11 +7,13 @@ const SvgSnapchatIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( clipRule="evenodd" > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/social/tumblr-icon.tsx b/packages/icons/src/social/tumblr-icon.tsx index d66ae57b..278e670c 100644 --- a/packages/icons/src/social/tumblr-icon.tsx +++ b/packages/icons/src/social/tumblr-icon.tsx @@ -7,10 +7,12 @@ const SvgTumblrIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/social/twitch-icon.tsx b/packages/icons/src/social/twitch-icon.tsx index 36b22ee7..0198d2d9 100644 --- a/packages/icons/src/social/twitch-icon.tsx +++ b/packages/icons/src/social/twitch-icon.tsx @@ -7,10 +7,12 @@ const SvgTwitchIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > diff --git a/packages/icons/src/social/youtube-icon.tsx b/packages/icons/src/social/youtube-icon.tsx index 015c46dc..8a50ab3b 100644 --- a/packages/icons/src/social/youtube-icon.tsx +++ b/packages/icons/src/social/youtube-icon.tsx @@ -7,6 +7,8 @@ const SvgYoutubeIcon = (props: SVGProps) => ( height={20} fill="none" viewBox="0 0 20 20" + aria-hidden={true} + focusable={false} {...props} > ) => ( clipRule="evenodd" > diff --git a/packages/icons/svg/12/active-icon.svg b/packages/icons/svg/12/active-icon.svg index ec11b008..6ee71fcd 100644 --- a/packages/icons/svg/12/active-icon.svg +++ b/packages/icons/svg/12/active-icon.svg @@ -7,7 +7,7 @@ > diff --git a/packages/icons/svg/12/add-icon.svg b/packages/icons/svg/12/add-icon.svg index deb67f69..fc8707e1 100644 --- a/packages/icons/svg/12/add-icon.svg +++ b/packages/icons/svg/12/add-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 12 12" > - + diff --git a/packages/icons/svg/12/chevron-down-icon.svg b/packages/icons/svg/12/chevron-down-icon.svg index e5f989fa..bdd252c3 100644 --- a/packages/icons/svg/12/chevron-down-icon.svg +++ b/packages/icons/svg/12/chevron-down-icon.svg @@ -5,5 +5,5 @@ fill="none" viewBox="0 0 12 12" > - + diff --git a/packages/icons/svg/12/chevron-left-icon.svg b/packages/icons/svg/12/chevron-left-icon.svg index c8d6430f..6cfebe36 100644 --- a/packages/icons/svg/12/chevron-left-icon.svg +++ b/packages/icons/svg/12/chevron-left-icon.svg @@ -5,5 +5,5 @@ fill="none" viewBox="0 0 12 12" > - + diff --git a/packages/icons/svg/12/chevron-right-icon.svg b/packages/icons/svg/12/chevron-right-icon.svg index f6d901bd..97ea7f74 100644 --- a/packages/icons/svg/12/chevron-right-icon.svg +++ b/packages/icons/svg/12/chevron-right-icon.svg @@ -5,5 +5,5 @@ fill="none" viewBox="0 0 12 12" > - + diff --git a/packages/icons/svg/12/chevron-top-icon.svg b/packages/icons/svg/12/chevron-top-icon.svg index ef3e0f36..f992f0e8 100644 --- a/packages/icons/svg/12/chevron-top-icon.svg +++ b/packages/icons/svg/12/chevron-top-icon.svg @@ -5,5 +5,5 @@ fill="none" viewBox="0 0 12 12" > - + diff --git a/packages/icons/svg/12/close-icon.svg b/packages/icons/svg/12/close-icon.svg index d5464ff2..3bba605e 100644 --- a/packages/icons/svg/12/close-icon.svg +++ b/packages/icons/svg/12/close-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 12 12" > - + diff --git a/packages/icons/svg/12/communities-icon.svg b/packages/icons/svg/12/communities-icon.svg index 6662ce75..278286ec 100644 --- a/packages/icons/svg/12/communities-icon.svg +++ b/packages/icons/svg/12/communities-icon.svg @@ -7,7 +7,7 @@ > - + - + - + diff --git a/packages/icons/svg/12/edit-icon.svg b/packages/icons/svg/12/edit-icon.svg index b8569e18..a3a79cb3 100644 --- a/packages/icons/svg/12/edit-icon.svg +++ b/packages/icons/svg/12/edit-icon.svg @@ -7,7 +7,7 @@ > diff --git a/packages/icons/svg/12/folder-icon.svg b/packages/icons/svg/12/folder-icon.svg index 9ef01db6..cea0392e 100644 --- a/packages/icons/svg/12/folder-icon.svg +++ b/packages/icons/svg/12/folder-icon.svg @@ -7,7 +7,7 @@ > - + - + diff --git a/packages/icons/svg/12/locked-icon.svg b/packages/icons/svg/12/locked-icon.svg index 54941b96..fe0b95bf 100644 --- a/packages/icons/svg/12/locked-icon.svg +++ b/packages/icons/svg/12/locked-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 12 12" > - + diff --git a/packages/icons/svg/12/notification-badge-icon.svg b/packages/icons/svg/12/notification-badge-icon.svg index 495f4fe2..580b628a 100644 --- a/packages/icons/svg/12/notification-badge-icon.svg +++ b/packages/icons/svg/12/notification-badge-icon.svg @@ -5,5 +5,5 @@ fill="none" viewBox="0 0 12 12" > - + diff --git a/packages/icons/svg/12/numbered-list-icon.svg b/packages/icons/svg/12/numbered-list-icon.svg index 2f3c13c5..87fc2be1 100644 --- a/packages/icons/svg/12/numbered-list-icon.svg +++ b/packages/icons/svg/12/numbered-list-icon.svg @@ -6,14 +6,14 @@ viewBox="0 0 12 12" > diff --git a/packages/icons/svg/12/open-state-icon.svg b/packages/icons/svg/12/open-state-icon.svg index a5211389..3be52c32 100644 --- a/packages/icons/svg/12/open-state-icon.svg +++ b/packages/icons/svg/12/open-state-icon.svg @@ -7,7 +7,7 @@ > - - - + + + diff --git a/packages/icons/svg/12/pick-icon.svg b/packages/icons/svg/12/pick-icon.svg index 93ad57c3..3faaf47e 100644 --- a/packages/icons/svg/12/pick-icon.svg +++ b/packages/icons/svg/12/pick-icon.svg @@ -7,7 +7,7 @@ > - + diff --git a/packages/icons/svg/12/progress-100-icon.svg b/packages/icons/svg/12/progress-100-icon.svg index 540ff988..961c06ca 100644 --- a/packages/icons/svg/12/progress-100-icon.svg +++ b/packages/icons/svg/12/progress-100-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 12 12" > - + diff --git a/packages/icons/svg/12/progress-25-icon.svg b/packages/icons/svg/12/progress-25-icon.svg index 75f018a7..ab040c06 100644 --- a/packages/icons/svg/12/progress-25-icon.svg +++ b/packages/icons/svg/12/progress-25-icon.svg @@ -10,7 +10,7 @@ cx="6" cy="6" r="5.45" - stroke="#09101C" + stroke="currentColor" stroke-width="1.1" opacity=".2" /> @@ -23,10 +23,10 @@ maskUnits="userSpaceOnUse" style="mask-type: alpha" > - + - + diff --git a/packages/icons/svg/12/progress-50-icon.svg b/packages/icons/svg/12/progress-50-icon.svg index df88d5c4..32564283 100644 --- a/packages/icons/svg/12/progress-50-icon.svg +++ b/packages/icons/svg/12/progress-50-icon.svg @@ -10,7 +10,7 @@ cx="6" cy="6" r="5.45" - stroke="#09101C" + stroke="currentColor" stroke-width="1.1" opacity=".2" /> @@ -23,10 +23,10 @@ maskUnits="userSpaceOnUse" style="mask-type: alpha" > - + - + diff --git a/packages/icons/svg/12/progress-75-icon.svg b/packages/icons/svg/12/progress-75-icon.svg index 58b3fa39..df49d826 100644 --- a/packages/icons/svg/12/progress-75-icon.svg +++ b/packages/icons/svg/12/progress-75-icon.svg @@ -10,7 +10,7 @@ cx="6" cy="6" r="5.45" - stroke="#09101C" + stroke="currentColor" stroke-width="1.1" opacity=".2" /> @@ -23,10 +23,10 @@ maskUnits="userSpaceOnUse" style="mask-type: alpha" > - + - + diff --git a/packages/icons/svg/12/progress-icon.svg b/packages/icons/svg/12/progress-icon.svg index a64a7b56..379bfdd0 100644 --- a/packages/icons/svg/12/progress-icon.svg +++ b/packages/icons/svg/12/progress-icon.svg @@ -7,7 +7,7 @@ > - + diff --git a/packages/icons/svg/12/pullup-icon.svg b/packages/icons/svg/12/pullup-icon.svg index 89bac55e..5337c235 100644 --- a/packages/icons/svg/12/pullup-icon.svg +++ b/packages/icons/svg/12/pullup-icon.svg @@ -7,7 +7,7 @@ > - + diff --git a/packages/icons/svg/12/redo-icon.svg b/packages/icons/svg/12/redo-icon.svg index 1a519422..6cd7d29e 100644 --- a/packages/icons/svg/12/redo-icon.svg +++ b/packages/icons/svg/12/redo-icon.svg @@ -7,7 +7,7 @@ > - + diff --git a/packages/icons/svg/12/share-icon.svg b/packages/icons/svg/12/share-icon.svg index 43ce6c79..0381a0ef 100644 --- a/packages/icons/svg/12/share-icon.svg +++ b/packages/icons/svg/12/share-icon.svg @@ -6,10 +6,10 @@ viewBox="0 0 12 12" > - + diff --git a/packages/icons/svg/12/star-icon.svg b/packages/icons/svg/12/star-icon.svg index 1324641d..5588b250 100644 --- a/packages/icons/svg/12/star-icon.svg +++ b/packages/icons/svg/12/star-icon.svg @@ -7,7 +7,7 @@ > diff --git a/packages/icons/svg/12/stop-icon.svg b/packages/icons/svg/12/stop-icon.svg index 1896099b..6dff7476 100644 --- a/packages/icons/svg/12/stop-icon.svg +++ b/packages/icons/svg/12/stop-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 12 12" > diff --git a/packages/icons/svg/12/strikethrough-icon.svg b/packages/icons/svg/12/strikethrough-icon.svg index 6472c0d9..1070a628 100644 --- a/packages/icons/svg/12/strikethrough-icon.svg +++ b/packages/icons/svg/12/strikethrough-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 12 12" > - + diff --git a/packages/icons/svg/12/token-master-icon.svg b/packages/icons/svg/12/token-master-icon.svg index 525c8411..d4da1a28 100644 --- a/packages/icons/svg/12/token-master-icon.svg +++ b/packages/icons/svg/12/token-master-icon.svg @@ -7,7 +7,7 @@ > diff --git a/packages/icons/svg/12/volume-max-icon.svg b/packages/icons/svg/12/volume-max-icon.svg index e6938a8a..f22581f7 100644 --- a/packages/icons/svg/12/volume-max-icon.svg +++ b/packages/icons/svg/12/volume-max-icon.svg @@ -7,7 +7,7 @@ > diff --git a/packages/icons/svg/16/add-icon.svg b/packages/icons/svg/16/add-icon.svg index a591a278..39958161 100644 --- a/packages/icons/svg/16/add-icon.svg +++ b/packages/icons/svg/16/add-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 16 16" > - + diff --git a/packages/icons/svg/16/chevron-down-icon.svg b/packages/icons/svg/16/chevron-down-icon.svg index 09cb45a9..1046bbea 100644 --- a/packages/icons/svg/16/chevron-down-icon.svg +++ b/packages/icons/svg/16/chevron-down-icon.svg @@ -5,5 +5,5 @@ fill="none" viewBox="0 0 16 16" > - + diff --git a/packages/icons/svg/16/chevron-left-icon.svg b/packages/icons/svg/16/chevron-left-icon.svg index a1dc9536..d9be403e 100644 --- a/packages/icons/svg/16/chevron-left-icon.svg +++ b/packages/icons/svg/16/chevron-left-icon.svg @@ -5,5 +5,5 @@ fill="none" viewBox="0 0 16 16" > - + diff --git a/packages/icons/svg/16/chevron-right-icon.svg b/packages/icons/svg/16/chevron-right-icon.svg index a8f935e5..967afa55 100644 --- a/packages/icons/svg/16/chevron-right-icon.svg +++ b/packages/icons/svg/16/chevron-right-icon.svg @@ -5,5 +5,9 @@ fill="none" viewBox="0 0 16 16" > - + diff --git a/packages/icons/svg/16/chevron-top-icon.svg b/packages/icons/svg/16/chevron-top-icon.svg index c46c68e7..40949c0b 100644 --- a/packages/icons/svg/16/chevron-top-icon.svg +++ b/packages/icons/svg/16/chevron-top-icon.svg @@ -5,5 +5,5 @@ fill="none" viewBox="0 0 16 16" > - + diff --git a/packages/icons/svg/16/chevrons-left-icon.svg b/packages/icons/svg/16/chevrons-left-icon.svg index 94ade8fd..f21be2fb 100644 --- a/packages/icons/svg/16/chevrons-left-icon.svg +++ b/packages/icons/svg/16/chevrons-left-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 16 16" > diff --git a/packages/icons/svg/16/customize-icon.svg b/packages/icons/svg/16/customize-icon.svg index 1ea4a75d..cba114e3 100644 --- a/packages/icons/svg/16/customize-icon.svg +++ b/packages/icons/svg/16/customize-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 16 16" > diff --git a/packages/icons/svg/16/decline-icon.svg b/packages/icons/svg/16/decline-icon.svg index 29b4259b..a65694d4 100644 --- a/packages/icons/svg/16/decline-icon.svg +++ b/packages/icons/svg/16/decline-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 16 16" > - + diff --git a/packages/icons/svg/16/email-icon.svg b/packages/icons/svg/16/email-icon.svg index 8a328345..37dc2af4 100644 --- a/packages/icons/svg/16/email-icon.svg +++ b/packages/icons/svg/16/email-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 16 16" > diff --git a/packages/icons/svg/16/folder-icon.svg b/packages/icons/svg/16/folder-icon.svg index ed42d1cd..eeeb287a 100644 --- a/packages/icons/svg/16/folder-icon.svg +++ b/packages/icons/svg/16/folder-icon.svg @@ -7,7 +7,7 @@ > - - + + diff --git a/packages/icons/svg/16/link-icon.svg b/packages/icons/svg/16/link-icon.svg index 7bcc88cb..b6287c79 100644 --- a/packages/icons/svg/16/link-icon.svg +++ b/packages/icons/svg/16/link-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 16 16" > - + diff --git a/packages/icons/svg/16/notifications-unread-icon.svg b/packages/icons/svg/16/notifications-unread-icon.svg index 9f5d2c00..70419725 100644 --- a/packages/icons/svg/16/notifications-unread-icon.svg +++ b/packages/icons/svg/16/notifications-unread-icon.svg @@ -6,10 +6,10 @@ viewBox="0 0 16 16" > - + diff --git a/packages/icons/svg/16/open-icon.svg b/packages/icons/svg/16/open-icon.svg index 451bd664..226d1030 100644 --- a/packages/icons/svg/16/open-icon.svg +++ b/packages/icons/svg/16/open-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 16 16" > - + diff --git a/packages/icons/svg/16/pullup-icon.svg b/packages/icons/svg/16/pullup-icon.svg index 2aeaed06..705eb929 100644 --- a/packages/icons/svg/16/pullup-icon.svg +++ b/packages/icons/svg/16/pullup-icon.svg @@ -11,5 +11,5 @@ d="M1.5 8a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0Z" clip-rule="evenodd" /> - + diff --git a/packages/icons/svg/16/puzzle-icon.svg b/packages/icons/svg/16/puzzle-icon.svg index 208f6b90..967abe1d 100644 --- a/packages/icons/svg/16/puzzle-icon.svg +++ b/packages/icons/svg/16/puzzle-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 16 16" > - + - + diff --git a/packages/icons/svg/16/stickers-icon.svg b/packages/icons/svg/16/stickers-icon.svg index ac5e562b..52291281 100644 --- a/packages/icons/svg/16/stickers-icon.svg +++ b/packages/icons/svg/16/stickers-icon.svg @@ -7,7 +7,7 @@ > - + - + diff --git a/packages/icons/svg/16/time-icon.svg b/packages/icons/svg/16/time-icon.svg index df9556f5..ddcec1c5 100644 --- a/packages/icons/svg/16/time-icon.svg +++ b/packages/icons/svg/16/time-icon.svg @@ -7,7 +7,7 @@ > diff --git a/packages/icons/svg/16/volume-max-icon.svg b/packages/icons/svg/16/volume-max-icon.svg index 736ecddf..875f8053 100644 --- a/packages/icons/svg/16/volume-max-icon.svg +++ b/packages/icons/svg/16/volume-max-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 16 16" > diff --git a/packages/icons/svg/20/activity-center-icon.svg b/packages/icons/svg/20/activity-center-icon.svg index e6a37793..fb7583bc 100644 --- a/packages/icons/svg/20/activity-center-icon.svg +++ b/packages/icons/svg/20/activity-center-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/apple-icon.svg b/packages/icons/svg/20/apple-icon.svg index b33446bf..159d5ba6 100644 --- a/packages/icons/svg/20/apple-icon.svg +++ b/packages/icons/svg/20/apple-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/arrow-down-icon.svg b/packages/icons/svg/20/arrow-down-icon.svg index b3c07ca5..efff4f54 100644 --- a/packages/icons/svg/20/arrow-down-icon.svg +++ b/packages/icons/svg/20/arrow-down-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - - + + - + - - + + diff --git a/packages/icons/svg/20/bullet-list-icon.svg b/packages/icons/svg/20/bullet-list-icon.svg index 3155864c..ccede930 100644 --- a/packages/icons/svg/20/bullet-list-icon.svg +++ b/packages/icons/svg/20/bullet-list-icon.svg @@ -6,14 +6,14 @@ viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/chevron-down-icon.svg b/packages/icons/svg/20/chevron-down-icon.svg index ebcd4fa0..ebc965db 100644 --- a/packages/icons/svg/20/chevron-down-icon.svg +++ b/packages/icons/svg/20/chevron-down-icon.svg @@ -5,5 +5,5 @@ fill="none" viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/chevron-left-icon.svg b/packages/icons/svg/20/chevron-left-icon.svg index c6bdee4d..36c2e412 100644 --- a/packages/icons/svg/20/chevron-left-icon.svg +++ b/packages/icons/svg/20/chevron-left-icon.svg @@ -5,5 +5,9 @@ fill="none" viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/chevron-right-icon.svg b/packages/icons/svg/20/chevron-right-icon.svg index a9ce8ea2..3952a34c 100644 --- a/packages/icons/svg/20/chevron-right-icon.svg +++ b/packages/icons/svg/20/chevron-right-icon.svg @@ -5,5 +5,9 @@ fill="none" viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/chevron-top-icon.svg b/packages/icons/svg/20/chevron-top-icon.svg index 7605fdd4..dc493571 100644 --- a/packages/icons/svg/20/chevron-top-icon.svg +++ b/packages/icons/svg/20/chevron-top-icon.svg @@ -5,5 +5,5 @@ fill="none" viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/chevrons-left-icon.svg b/packages/icons/svg/20/chevrons-left-icon.svg index 5cb277d5..a141e25c 100644 --- a/packages/icons/svg/20/chevrons-left-icon.svg +++ b/packages/icons/svg/20/chevrons-left-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/customize-icon.svg b/packages/icons/svg/20/customize-icon.svg index dc18d729..73713b8f 100644 --- a/packages/icons/svg/20/customize-icon.svg +++ b/packages/icons/svg/20/customize-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/dashboard-icon.svg b/packages/icons/svg/20/dashboard-icon.svg index 9cec5eb4..dca4e660 100644 --- a/packages/icons/svg/20/dashboard-icon.svg +++ b/packages/icons/svg/20/dashboard-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/decrease-windows-icon.svg b/packages/icons/svg/20/decrease-windows-icon.svg index f00daeed..28126f71 100644 --- a/packages/icons/svg/20/decrease-windows-icon.svg +++ b/packages/icons/svg/20/decrease-windows-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/disconnect-icon.svg b/packages/icons/svg/20/disconnect-icon.svg index 908afd45..f27091ce 100644 --- a/packages/icons/svg/20/disconnect-icon.svg +++ b/packages/icons/svg/20/disconnect-icon.svg @@ -7,7 +7,7 @@ > - + diff --git a/packages/icons/svg/20/duration-icon.svg b/packages/icons/svg/20/duration-icon.svg index ef2ece86..97979c76 100644 --- a/packages/icons/svg/20/duration-icon.svg +++ b/packages/icons/svg/20/duration-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/epics-icon.svg b/packages/icons/svg/20/epics-icon.svg index ee479cad..e9f66203 100644 --- a/packages/icons/svg/20/epics-icon.svg +++ b/packages/icons/svg/20/epics-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/feed-icon.svg b/packages/icons/svg/20/feed-icon.svg index c2cbd430..33943ef6 100644 --- a/packages/icons/svg/20/feed-icon.svg +++ b/packages/icons/svg/20/feed-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/flash-off-icon.svg b/packages/icons/svg/20/flash-off-icon.svg index d0ba32a2..c174c818 100644 --- a/packages/icons/svg/20/flash-off-icon.svg +++ b/packages/icons/svg/20/flash-off-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/help-icon.svg b/packages/icons/svg/20/help-icon.svg index 2331efb4..c7d6f870 100644 --- a/packages/icons/svg/20/help-icon.svg +++ b/packages/icons/svg/20/help-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - + - + diff --git a/packages/icons/svg/20/image-icon.svg b/packages/icons/svg/20/image-icon.svg index 57b06749..f06b0fdb 100644 --- a/packages/icons/svg/20/image-icon.svg +++ b/packages/icons/svg/20/image-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - + - + diff --git a/packages/icons/svg/20/media-icon.svg b/packages/icons/svg/20/media-icon.svg index 73e9ea59..da6e3a22 100644 --- a/packages/icons/svg/20/media-icon.svg +++ b/packages/icons/svg/20/media-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/mint-icon.svg b/packages/icons/svg/20/mint-icon.svg index 5dac7409..8ae73d0d 100644 --- a/packages/icons/svg/20/mint-icon.svg +++ b/packages/icons/svg/20/mint-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/nature-icon.svg b/packages/icons/svg/20/nature-icon.svg index 5dac7409..8ae73d0d 100644 --- a/packages/icons/svg/20/nature-icon.svg +++ b/packages/icons/svg/20/nature-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/notifications-icon.svg b/packages/icons/svg/20/notifications-icon.svg index 7083ab9b..b68c9709 100644 --- a/packages/icons/svg/20/notifications-icon.svg +++ b/packages/icons/svg/20/notifications-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/numbered-list-icon.svg b/packages/icons/svg/20/numbered-list-icon.svg index 62fab3aa..4bf666ec 100644 --- a/packages/icons/svg/20/numbered-list-icon.svg +++ b/packages/icons/svg/20/numbered-list-icon.svg @@ -6,14 +6,14 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/percentage-icon.svg b/packages/icons/svg/20/percentage-icon.svg index 62686d7e..4b10581b 100644 --- a/packages/icons/svg/20/percentage-icon.svg +++ b/packages/icons/svg/20/percentage-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/plug-icon.svg b/packages/icons/svg/20/plug-icon.svg index 3277d2ba..7e803490 100644 --- a/packages/icons/svg/20/plug-icon.svg +++ b/packages/icons/svg/20/plug-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/puzzle-icon.svg b/packages/icons/svg/20/puzzle-icon.svg index 6fc4c239..32e1bce5 100644 --- a/packages/icons/svg/20/puzzle-icon.svg +++ b/packages/icons/svg/20/puzzle-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/quill-pen-icon.svg b/packages/icons/svg/20/quill-pen-icon.svg index eef73e97..c7991592 100644 --- a/packages/icons/svg/20/quill-pen-icon.svg +++ b/packages/icons/svg/20/quill-pen-icon.svg @@ -6,12 +6,12 @@ viewBox="0 0 20 20" > - + - + - + diff --git a/packages/icons/svg/20/shop-icon.svg b/packages/icons/svg/20/shop-icon.svg index e4bb9e3a..9854dde7 100644 --- a/packages/icons/svg/20/shop-icon.svg +++ b/packages/icons/svg/20/shop-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/status-icon.svg b/packages/icons/svg/20/status-icon.svg index b72cbaac..8ed27990 100644 --- a/packages/icons/svg/20/status-icon.svg +++ b/packages/icons/svg/20/status-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/20/strikethrough-icon.svg b/packages/icons/svg/20/strikethrough-icon.svg index de6015ac..efe4ed8f 100644 --- a/packages/icons/svg/20/strikethrough-icon.svg +++ b/packages/icons/svg/20/strikethrough-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - + - + - + - + diff --git a/packages/icons/svg/20/swap-icon.svg b/packages/icons/svg/20/swap-icon.svg index 28f61e43..41476071 100644 --- a/packages/icons/svg/20/swap-icon.svg +++ b/packages/icons/svg/20/swap-icon.svg @@ -6,61 +6,65 @@ viewBox="0 0 20 20" > - - + + - + - - + + diff --git a/packages/icons/svg/20/switch-icon.svg b/packages/icons/svg/20/switch-icon.svg index 22e58a99..6d7f368e 100644 --- a/packages/icons/svg/20/switch-icon.svg +++ b/packages/icons/svg/20/switch-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/tabs-icon.svg b/packages/icons/svg/20/tabs-icon.svg index 2c25890a..4a253865 100644 --- a/packages/icons/svg/20/tabs-icon.svg +++ b/packages/icons/svg/20/tabs-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/icons/svg/20/transaction-icon.svg b/packages/icons/svg/20/transaction-icon.svg new file mode 100644 index 00000000..153a9945 --- /dev/null +++ b/packages/icons/svg/20/transaction-icon.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/icons/svg/20/translations-icon.svg b/packages/icons/svg/20/translations-icon.svg index 6eb7530c..65c726e4 100644 --- a/packages/icons/svg/20/translations-icon.svg +++ b/packages/icons/svg/20/translations-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/20/workstreams-icon.svg b/packages/icons/svg/20/workstreams-icon.svg index 6486e227..660c89b0 100644 --- a/packages/icons/svg/20/workstreams-icon.svg +++ b/packages/icons/svg/20/workstreams-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/social/facebook-icon.svg b/packages/icons/svg/social/facebook-icon.svg index 0e9ce7cf..42cf3cdd 100644 --- a/packages/icons/svg/social/facebook-icon.svg +++ b/packages/icons/svg/social/facebook-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > - + diff --git a/packages/icons/svg/social/intagram-icon.svg b/packages/icons/svg/social/intagram-icon.svg index e3940fd0..6e675e16 100644 --- a/packages/icons/svg/social/intagram-icon.svg +++ b/packages/icons/svg/social/intagram-icon.svg @@ -7,7 +7,7 @@ > diff --git a/packages/icons/svg/social/lens-icon.svg b/packages/icons/svg/social/lens-icon.svg index 7a230f9e..3e8b66f7 100644 --- a/packages/icons/svg/social/lens-icon.svg +++ b/packages/icons/svg/social/lens-icon.svg @@ -6,15 +6,15 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/social/linkedin-icon.svg b/packages/icons/svg/social/linkedin-icon.svg index c206dc97..3d649800 100644 --- a/packages/icons/svg/social/linkedin-icon.svg +++ b/packages/icons/svg/social/linkedin-icon.svg @@ -7,7 +7,7 @@ > diff --git a/packages/icons/svg/social/snapchat-icon.svg b/packages/icons/svg/social/snapchat-icon.svg index 9d41d85e..37ef6e11 100644 --- a/packages/icons/svg/social/snapchat-icon.svg +++ b/packages/icons/svg/social/snapchat-icon.svg @@ -7,7 +7,7 @@ > diff --git a/packages/icons/svg/social/twitch-icon.svg b/packages/icons/svg/social/twitch-icon.svg index d32603c2..5b7eaaf7 100644 --- a/packages/icons/svg/social/twitch-icon.svg +++ b/packages/icons/svg/social/twitch-icon.svg @@ -6,7 +6,7 @@ viewBox="0 0 20 20" > diff --git a/packages/icons/svg/social/youtube-icon.svg b/packages/icons/svg/social/youtube-icon.svg index f1557c80..b86edcf0 100644 --- a/packages/icons/svg/social/youtube-icon.svg +++ b/packages/icons/svg/social/youtube-icon.svg @@ -11,7 +11,7 @@ clip-rule="evenodd" > diff --git a/packages/icons/svgr.config.js b/packages/icons/svgr.config.js index 5b958418..d303d592 100644 --- a/packages/icons/svgr.config.js +++ b/packages/icons/svgr.config.js @@ -4,6 +4,10 @@ module.exports = { jsxRuntime: 'automatic', expandProps: 'end', filenameCase: 'kebab', + svgProps: { + 'aria-hidden': true, + focusable: false, + }, // note: SVGO transformation is handled in the sync script svgo: false, }