Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
fix: fix collapse/expand icon coloring
Browse files Browse the repository at this point in the history
  • Loading branch information
erictaylor committed Dec 8, 2021
1 parent 794c4ac commit 809e5da
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/icons/Collapse16pxIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const Collapse16pxIcon = (props: SVGProps<SVGSVGElement>) => (
>
<path
d="M15.091 1.218l-5.028 5.029m0 0h5.028m-5.028 0V1.218M1.353 14.956l5.028-5.029m0 0H1.353m5.028 0v5.029"
stroke="#000"
stroke="currentColor"
strokeWidth={0.999}
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion src/icons/CollapseIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const CollapseIcon = (props: SVGProps<SVGSVGElement>) => (
>
<path
d="M22.137 2.327L14.594 9.87m0 0h7.543m-7.543 0V2.327M2.53 21.933l7.543-7.542m0 0H2.531m7.542 0v7.542"
stroke="#000"
stroke="currentColor"
strokeWidth={1.5}
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion src/icons/Expand16pxIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const Expand16pxIcon = (props: SVGProps<SVGSVGElement>) => (
>
<path
d="M9.063 7.247l5.028-5.029m0 0H9.063m5.028 0v5.029M7.381 8.927l-5.028 5.029m0 0h5.028m-5.028 0V8.927"
stroke="#000"
stroke="currentColor"
strokeWidth={0.999}
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion src/icons/ExpandIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const ExpandIcon = (props: SVGProps<SVGSVGElement>) => (
>
<path
d="M13.594 10.87l7.543-7.543m0 0h-7.543m7.543 0v7.543M11.073 13.39l-7.542 7.543m0 0h7.542m-7.542 0v-7.542"
stroke="#000"
stroke="currentColor"
strokeWidth={1.5}
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion src/icons/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated at Wed, 08 Dec 2021 18:38:51 GMT
// Generated at Wed, 08 Dec 2021 18:49:56 GMT
export { Add16pxIcon } from './Add16pxIcon';
export { Administrative16pxIcon } from './Administrative16pxIcon';
export { AlertCircle16pxIcon } from './AlertCircle16pxIcon';
Expand Down

0 comments on commit 809e5da

Please sign in to comment.