Skip to content

Commit 3eb4b86

Browse files
authored
fix(icons): add xmlns attribute to svg sources (DS-4548) (#229)
1 parent f09e6da commit 3eb4b86

File tree

1,069 files changed

+1109
-38
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,069 files changed

+1109
-38
lines changed

packages/icons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"export-icons": "pnpm update @koobiq/icons@latest && tsx scripts/build.ts && pnpm lint"
3333
},
3434
"devDependencies": {
35-
"@koobiq/icons": "^11.1.2"
35+
"@koobiq/icons": "^11.1.3"
3636
},
3737
"files": ["dist", "manifest.json"],
3838
"peerDependencies": {

packages/icons/src/Icon3Columns16.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type { SVGProps, Ref } from 'react';
44
export const Icon3Columns16 = forwardRef(
55
(props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
66
<svg
7+
xmlns="http://www.w3.org/2000/svg"
78
width={16}
89
height={16}
910
viewBox="0 0 16 16"

packages/icons/src/Icon3Columns24.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type { SVGProps, Ref } from 'react';
44
export const Icon3Columns24 = forwardRef(
55
(props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
66
<svg
7+
xmlns="http://www.w3.org/2000/svg"
78
width={24}
89
height={24}
910
viewBox="0 0 24 24"

packages/icons/src/Icon3Columns32.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ import type { SVGProps, Ref } from 'react';
44
export const Icon3Columns32 = forwardRef(
55
(props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
66
<svg
7+
xmlns="http://www.w3.org/2000/svg"
78
width={32}
89
height={32}
910
viewBox="0 0 32 32"
1011
fill="currentColor"
1112
ref={ref}
1213
{...props}
1314
>
14-
<path d="M25 27a2 2 0 0 0 2-2V7.002a2 2 0 0 0-2.002-2L6 5.018a2 2 0 0 0-1.999 2V25a2 2 0 0 0 2 2zM6 25V7.017L11 7v18zm12 0h-5V7.017L18 7zm2 0V7.017L25 7v18z" />
15+
<path d="M25 27a2 2 0 0 0 2-2V7.002a2 2 0 0 0-2.002-2L6 5.018a2 2 0 0 0-1.999 2V25a2 2 0 0 0 2 2zM6 25V7.016L11 7v18zm12 0h-5V7.016L18 7zm2 0V7.016L25 7v18z" />
1516
</svg>
1617
)
1718
);

packages/icons/src/IconActiveDirectory16.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type { SVGProps, Ref } from 'react';
44
export const IconActiveDirectory16 = forwardRef(
55
(props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
66
<svg
7+
xmlns="http://www.w3.org/2000/svg"
78
width={16}
89
height={16}
910
viewBox="0 0 16 16"

packages/icons/src/IconActiveDirectory24.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type { SVGProps, Ref } from 'react';
44
export const IconActiveDirectory24 = forwardRef(
55
(props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
66
<svg
7+
xmlns="http://www.w3.org/2000/svg"
78
width={24}
89
height={24}
910
viewBox="0 0 24 24"

packages/icons/src/IconAix16.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type { SVGProps, Ref } from 'react';
44
export const IconAix16 = forwardRef(
55
(props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
66
<svg
7+
xmlns="http://www.w3.org/2000/svg"
78
width={16}
89
height={16}
910
viewBox="0 0 16 16"

packages/icons/src/IconAix24.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type { SVGProps, Ref } from 'react';
44
export const IconAix24 = forwardRef(
55
(props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
66
<svg
7+
xmlns="http://www.w3.org/2000/svg"
78
width={24}
89
height={24}
910
viewBox="0 0 24 24"

packages/icons/src/IconAlignCenter16.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type { SVGProps, Ref } from 'react';
44
export const IconAlignCenter16 = forwardRef(
55
(props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
66
<svg
7+
xmlns="http://www.w3.org/2000/svg"
78
width={16}
89
height={16}
910
viewBox="0 0 16 16"

packages/icons/src/IconAlignCenter24.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import type { SVGProps, Ref } from 'react';
44
export const IconAlignCenter24 = forwardRef(
55
(props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
66
<svg
7+
xmlns="http://www.w3.org/2000/svg"
78
width={24}
89
height={24}
910
viewBox="0 0 24 24"

0 commit comments

Comments
 (0)