Skip to content

Commit

Permalink
fix: update color issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MohammadPCh committed May 8, 2023
1 parent 26edffc commit fa52f13
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 18 deletions.
4 changes: 2 additions & 2 deletions src/components/icons/Increase/Increase16.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ export const IconIncrease16: FC<IIconProps> = ({
>
<path
d='M15.3333 4L8.99999 10.3333L5.66666 7L0.666656 12'
stroke='#24262E'
stroke={color}
stroke-linecap='round'
stroke-linejoin='round'
/>
<path
d='M11.3333 4H15.3333V8'
stroke='#24262E'
stroke={color}
stroke-linecap='round'
stroke-linejoin='round'
/>
Expand Down
4 changes: 2 additions & 2 deletions src/components/icons/Increase/Increase24.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ export const IconIncrease24: FC<IIconProps> = ({
>
<path
d='M23 6L13.5 15.5L8.5 10.5L1 18'
stroke='#24262E'
stroke={color}
stroke-width='1.5'
stroke-linecap='round'
stroke-linejoin='round'
/>
<path
d='M17 6H23V12'
stroke='#24262E'
stroke={color}
stroke-width='1.5'
stroke-linecap='round'
stroke-linejoin='round'
Expand Down
4 changes: 2 additions & 2 deletions src/components/icons/Increase/Increase32.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ export const IconIncrease32: FC<IIconProps> = ({
>
<path
d='M30.6667 8L18 20.6667L11.3333 14L1.33334 24'
stroke='#24262E'
stroke={color}
stroke-width='2'
stroke-linecap='round'
stroke-linejoin='round'
/>
<path
d='M22.6667 8H30.6667V16'
stroke='#24262E'
stroke={color}
stroke-width='2'
stroke-linecap='round'
stroke-linejoin='round'
Expand Down
5 changes: 1 addition & 4 deletions src/components/icons/Passport/Passport16.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import React, { FC } from 'react';
import { IIconProps } from '../type';

export const IconPassport16: FC<IIconProps> = ({
size = 16,
color = 'currentColor',
}) => (
export const IconPassport16: FC<IIconProps> = ({ size = 16 }) => (
<svg
width={size}
height={size}
Expand Down
5 changes: 1 addition & 4 deletions src/components/icons/Passport/Passport24.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import React, { FC } from 'react';
import { IIconProps } from '../type';

export const IconPassport24: FC<IIconProps> = ({
size = 24,
color = 'currentColor',
}) => (
export const IconPassport24: FC<IIconProps> = ({ size = 24 }) => (
<svg
width={size}
height={size}
Expand Down
5 changes: 1 addition & 4 deletions src/components/icons/Passport/Passport32.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import React, { FC } from 'react';
import { IIconProps } from '../type';

export const IconPassport32: FC<IIconProps> = ({
size = 32,
color = 'currentColor',
}) => (
export const IconPassport32: FC<IIconProps> = ({ size = 32 }) => (
<svg
width={size}
height={size}
Expand Down

0 comments on commit fa52f13

Please sign in to comment.