Skip to content

Commit 3f4ef90

Browse files
committed
chore: make icon inherit color property from it's parent
1 parent 834b572 commit 3f4ef90

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/components/Icons/components/Use/RulerIcon.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ import React from 'react';
22

33
const RulerIcon = () => {
44
return (
5-
<svg
6-
style={{ width: 18, height: 18, fill: 'var(--color-icon-low-emphasis)' }}
7-
>
5+
<svg style={{ width: 18, height: 18, fill: 'currentcolor' }}>
86
<use xlinkHref="#ruler"></use>
97
</svg>
108
);

src/components/Icons/components/Use/ToomanIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const ToomanIcon = () => {
66
style={{
77
width: 18,
88
height: 18,
9-
fill: 'var(--color-icon-medium-emphasis)',
9+
fill: 'currentcolor',
1010
}}
1111
>
1212
<use xlinkHref="#tooman"></use>

0 commit comments

Comments
 (0)