Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: svg icon errors #47

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/components/01-atoms/icons/CheckIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export const CheckIcon = (props: SVGProps<SVGSVGElement>) => (
<path
d="M29.9999 19.9996L21.9999 27.9996L17.9999 23.9996M26.4921 6.91759L28.934 8.99858C29.5492 9.52286 30.3131 9.83982 31.1188 9.90411L34.3169 10.159C36.1972 10.309 37.6907 11.8016 37.8407 13.6819L38.095 16.8805C38.1593 17.6862 38.4774 18.4512 39.0017 19.0664L41.0817 21.5076C42.3052 22.9433 42.3054 25.0551 41.0819 26.4907L39.0019 28.9323C38.4776 29.5476 38.1599 30.3128 38.0956 31.1186L37.8397 34.3166C37.6897 36.1969 36.1985 37.6904 34.3183 37.8404L31.119 38.0957C30.3133 38.16 29.5487 38.4761 28.9335 39.0004L26.4921 41.0815C25.0564 42.3049 22.9434 42.3052 21.5077 41.0817L19.0663 39.0006C18.4511 38.4763 17.6865 38.1596 16.8808 38.0953L13.6815 37.8404C11.8013 37.6904 10.3101 36.1973 10.1601 34.317L9.9042 31.1188C9.8399 30.313 9.52223 29.5484 8.99795 28.9332L6.91787 26.4908C5.69442 25.0552 5.69385 22.9441 6.9173 21.5084L8.99925 19.066C9.52353 18.4508 9.83815 17.6862 9.90245 16.8805L10.1583 13.6822C10.3083 11.802 11.8038 10.3088 13.6841 10.1588L16.8798 9.90391C17.6855 9.83962 18.4505 9.52292 19.0657 8.99864L21.5079 6.91759C22.9436 5.69414 25.0564 5.69414 26.4921 6.91759Z"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</g>
</g>
Expand All @@ -32,8 +32,8 @@ export const CheckIcon = (props: SVGProps<SVGSVGElement>) => (
y2="41.9992"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#6100FF" stop-opacity="0" />
<stop offset="1" stop-color="#00FFD1" />
<stop stopColor="#6100FF" stopOpacity="0" />
<stop offset="1" stopColor="#00FFD1" />
</linearGradient>
</defs>
</svg>
Expand Down
10 changes: 5 additions & 5 deletions src/components/01-atoms/icons/GlobeIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export const GlobeIcon = (props: SVGProps<SVGSVGElement>) => (
<path
d="M6.125 24.4102H16.3333M6.125 24.4102C6.125 34.3513 14.3518 42.4102 24.5 42.4102M6.125 24.4102C6.125 14.469 14.3518 6.41016 24.5 6.41016M16.3333 24.4102H32.6667M16.3333 24.4102C16.3333 34.3513 19.9897 42.4102 24.5 42.4102M16.3333 24.4102C16.3333 14.469 19.9897 6.41016 24.5 6.41016M32.6667 24.4102H42.875M32.6667 24.4102C32.6667 14.469 29.0103 6.41016 24.5 6.41016M32.6667 24.4102C32.6667 34.3513 29.0103 42.4102 24.5 42.4102M42.875 24.4102C42.875 14.469 34.6482 6.41016 24.5 6.41016M42.875 24.4102C42.875 34.3513 34.6482 42.4102 24.5 42.4102"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</g>
</g>
Expand All @@ -32,8 +32,8 @@ export const GlobeIcon = (props: SVGProps<SVGSVGElement>) => (
y2="42.4102"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#6100FF" stop-opacity="0" />
<stop offset="1" stop-color="#00FFD1" />
<stop stopColor="#6100FF" stopOpacity="0" />
<stop offset="1" stopColor="#00FFD1" />
</linearGradient>
</defs>
</svg>
Expand Down
6 changes: 3 additions & 3 deletions src/components/01-atoms/icons/LineSeparatorIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export const LineSeparatorIcon = (props: SVGProps<SVGSVGElement>) => (
y2="27.4317"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#00F0FF" />
<stop offset="0.482483" stop-color="#5200FF" />
<stop offset="1" stop-color="#FF2DF7" />
<stop stopColor="#00F0FF" />
<stop offset="0.482483" stopColor="#5200FF" />
<stop offset="1" stopColor="#FF2DF7" />
</linearGradient>
</defs>
</svg>
Expand Down
10 changes: 5 additions & 5 deletions src/components/01-atoms/icons/SystemCodeIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export const SystemCodeIcon = (props: SVGProps<SVGSVGElement>) => (
<path
d="M5.75 10.7503H5.78678M5.78678 10.7503H40.2134M5.78678 10.7503C5.75 11.3136 5.75 12.0079 5.75 12.9007V30.1007C5.75 32.1075 5.75 33.1096 6.16781 33.8761C6.53532 34.5503 7.12132 35.0999 7.84261 35.4435C8.66181 35.8337 9.73476 35.8337 11.8775 35.8337L34.1226 35.8337C36.2653 35.8337 37.3367 35.8337 38.1558 35.4435C38.8771 35.0999 39.4651 34.5503 39.8326 33.8761C40.25 33.1103 40.25 32.1088 40.25 30.1058L40.25 12.8948C40.25 12.0049 40.25 11.3123 40.2134 10.7503M5.78678 10.7503C5.83268 10.0474 5.93586 9.54866 6.16781 9.12313C6.53532 8.44888 7.12132 7.9011 7.84261 7.55755C8.66261 7.16699 9.73684 7.16699 11.8837 7.16699H34.117C36.2639 7.16699 37.3358 7.16699 38.1558 7.55755C38.8771 7.9011 39.4651 8.44888 39.8326 9.12313C40.0645 9.54866 40.1676 10.0474 40.2134 10.7503M40.2134 10.7503H40.25M26.8333 19.7087L30.6667 23.292L26.8333 26.8753M19.1667 26.8753L15.3333 23.292L19.1667 19.7087"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</g>
</g>
Expand All @@ -32,8 +32,8 @@ export const SystemCodeIcon = (props: SVGProps<SVGSVGElement>) => (
y2="35.8337"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#6100FF" stop-opacity="0" />
<stop offset="1" stop-color="#00FFD1" />
<stop stopColor="#6100FF" stopOpacity="0" />
<stop offset="1" stopColor="#00FFD1" />
</linearGradient>
</defs>
</svg>
Expand Down
10 changes: 5 additions & 5 deletions src/components/01-atoms/icons/UserCardIdIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export const UserCardId = (props: SVGProps<SVGSVGElement>) => (
<path
d="M16 46.4999C16.1644 46.5 16.3339 46.5 16.5087 46.5H31.5M16 46.4999C13.447 46.4979 12.1078 46.466 11.0705 45.9374C10.0983 45.4421 9.30848 44.6496 8.81313 43.6774C8.25 42.5722 8.25 41.1274 8.25 38.2338V23.7672C8.25 20.8736 8.25 19.4257 8.81313 18.3205C9.30848 17.3483 10.0983 16.5585 11.0705 16.0631C12.1757 15.5 13.6236 15.5 16.5172 15.5H46.4838C49.3774 15.5 50.8222 15.5 51.9274 16.0631C52.8996 16.5585 53.6921 17.3483 54.1874 18.3205C54.75 19.4246 54.75 20.8707 54.75 23.7587V38.2413C54.75 41.1293 54.75 42.5733 54.1874 43.6774C53.6921 44.6496 52.8996 45.4421 51.9274 45.9374C50.8233 46.5 49.3793 46.5 46.4913 46.5H31.5M16 46.4999C16.0001 43.6465 19.4699 41.3333 23.75 41.3333C28.0302 41.3333 31.5 43.6465 31.5 46.5M16 46.4999C16 46.4999 16 46.4998 16 46.4999ZM47 36.1667H36.6667M47 28.4167H39.25M23.75 33.5833C20.8965 33.5833 18.5833 31.2701 18.5833 28.4167C18.5833 25.5632 20.8965 23.25 23.75 23.25C26.6035 23.25 28.9167 25.5632 28.9167 28.4167C28.9167 31.2701 26.6035 33.5833 23.75 33.5833Z"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</g>
</g>
Expand All @@ -32,8 +32,8 @@ export const UserCardId = (props: SVGProps<SVGSVGElement>) => (
y2="46.5"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#6100FF" stop-opacity="0" />
<stop offset="1" stop-color="#00FFD1" />
<stop stopColor="#6100FF" stopOpacity="0" />
<stop offset="1" stopColor="#00FFD1" />
</linearGradient>
</defs>
</svg>
Expand Down