Skip to content

Commit

Permalink
fix(feedback): Actor color applies to feedback icon (#13702)
Browse files Browse the repository at this point in the history
Fixes #13513
  • Loading branch information
c298lee committed Sep 17, 2024
1 parent afa79b6 commit e31fd63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/feedback/src/core/components/FeedbackIcon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function FeedbackIcon(): SVGElement {
width: `${SIZE}`,
height: `${SIZE}`,
viewBox: `0 0 ${SIZE} ${SIZE}`,
fill: 'var(--foreground)',
fill: 'var(--actor-color, var(--foreground))',
});

const g = setAttributesNS(createElementNS('g'), {
Expand Down

0 comments on commit e31fd63

Please sign in to comment.