Skip to content

Commit

Permalink
Set fill as currentColor
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanbrud committed Aug 15, 2023
1 parent 42164cb commit e50fa95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/components/inputs/Slider/Slider.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,5 @@ export const SliderInputArrowStyled = styled(SliderInputArrow)`
background: ${core.color.stroke};
}
path {
fill: ${core.color.text(0)};
}
color: ${core.color.text(0)};
`;
2 changes: 1 addition & 1 deletion src/components/inputs/Slider/SliderInputArrow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const SliderInputArrow = (props) => (
width="12"
height="10"
viewBox="0 0 12 10"
fill="none"
fill="currentColor"
{...props}
>
<path
Expand Down

0 comments on commit e50fa95

Please sign in to comment.