Skip to content

Commit

Permalink
revert: chevron left icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
Valazan committed Nov 22, 2023
1 parent 7d2c1dd commit dd97392
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dapp-kit-ui/src/assets/icons/chevron-left.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ export const ChevronLeftSvg = svg`
`;

export const LightChevronLeftSvg = html`
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#999999">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#777777">
${ChevronLeftSvg}
</svg>
`;
export const DarkChevronLeftSvg = html`
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#777777">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#999999">
${ChevronLeftSvg}
</svg>
`;

0 comments on commit dd97392

Please sign in to comment.