Skip to content

Commit

Permalink
fix: Fix icon scaling (#618)
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm committed Jun 28, 2024
1 parent 1a52b88 commit f346f40
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/components/icons/BuildIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ export default createIcon(({ size, color }) => (
<defs>
<clipPath id="clip0_1441_192">
<rect
width={size}
height={size}
width={16}
height={16}
fill={color}
/>
</clipPath>
Expand Down
8 changes: 4 additions & 4 deletions src/components/icons/ClusterIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,16 @@ export default createIcon(({ size, color }) => (
<defs>
<clipPath id="clip0_1441_165">
<rect
width={size}
height={size}
width="16"
height="16"
fill="white"
transform="translate(0 0.393311)"
/>
</clipPath>
<clipPath id="clip1_1441_165">
<rect
width={size}
height={size}
width="16"
height="16"
fill="white"
transform="translate(16 0.393311) rotate(90)"
/>
Expand Down
4 changes: 2 additions & 2 deletions src/components/icons/ReturnIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export default createIcon(({ size, color }) => (
<defs>
<clipPath id="clip0_5603_14797">
<rect
width={size}
height={size}
width={16}
height={16}
fill="white"
/>
</clipPath>
Expand Down
4 changes: 2 additions & 2 deletions src/components/icons/RobotIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ export default createIcon(({ size, color }) => (
<defs>
<clipPath id="clip0_1441_438">
<rect
width={size}
height={size}
width={16}
height={16}
fill="white"
/>
</clipPath>
Expand Down

0 comments on commit f346f40

Please sign in to comment.