Skip to content

Commit

Permalink
fix icon size
Browse files Browse the repository at this point in the history
  • Loading branch information
Amy Chen authored and Amy Chen committed Nov 9, 2023
1 parent 254317e commit b59e9f8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/icons/FailDownArrowIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function FailDownArrowIcon(props) {
<img
src={process.env.PUBLIC_URL + "/assets/images/failDownArrow.png"}
alt="worse"
width="16"
width="15"
{...props}
/>
);
Expand Down
2 changes: 1 addition & 1 deletion src/icons/FailUpArrowIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function FailUpArrowIcon(props) {
<img
src={process.env.PUBLIC_URL + "/assets/images/failUpArrow.png"}
alt="worse"
width="16"
width="15"
{...props}
/>
);
Expand Down
2 changes: 1 addition & 1 deletion src/icons/LineIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function LineIcon(props) {
<img
src={process.env.PUBLIC_URL + "/assets/images/line.png"}
alt="same"
width="16"
width="15"
{...props}
/>
);
Expand Down
2 changes: 1 addition & 1 deletion src/icons/PassUpArrowIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function PassUpArrowIcon(props) {
<img
src={process.env.PUBLIC_URL + "/assets/images/passUpArrow.png"}
alt="better"
width="16"
width="15"
{...props}
/>
);
Expand Down

0 comments on commit b59e9f8

Please sign in to comment.