Skip to content

Commit

Permalink
Revert "Add fill attribute to pointer-up and pointer-down icons"
Browse files Browse the repository at this point in the history
This reverts commit ea267fe.
  • Loading branch information
robertknight committed Jun 24, 2024
1 parent 36ac90d commit 62d923a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions images/icons/pointer-down.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions images/icons/pointer-up.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/icons/PointerDown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function PointerDownIcon(props: PointerDownIconProps) {
data-component="PointerDownIcon"
{...props}
>
<path fill="currentColor" stroke="currentColor" d="m15.5 0-7 8-8-8" />
<path stroke="currentColor" d="m15.5 0-7 8-8-8" />
</svg>
);
}
2 changes: 1 addition & 1 deletion src/components/icons/PointerUp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function PointerUpIcon(props: PointerUpIconProps) {
data-component="PointerUpIcon"
{...props}
>
<path fill="currentColor" stroke="currentColor" d="m.5 9 7-8 8 8" />
<path stroke="currentColor" d="m.5 9 7-8 8 8" />
</svg>
);
}

0 comments on commit 62d923a

Please sign in to comment.