Skip to content

Commit e31fd63

Browse files
authored
fix(feedback): Actor color applies to feedback icon (getsentry#13702)
Fixes getsentry#13513
1 parent afa79b6 commit e31fd63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: packages/feedback/src/core/components/FeedbackIcon.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function FeedbackIcon(): SVGElement {
1414
width: `${SIZE}`,
1515
height: `${SIZE}`,
1616
viewBox: `0 0 ${SIZE} ${SIZE}`,
17-
fill: 'var(--foreground)',
17+
fill: 'var(--actor-color, var(--foreground))',
1818
});
1919

2020
const g = setAttributesNS(createElementNS('g'), {

0 commit comments

Comments
 (0)