Skip to content

Commit 89145e5

Browse files
committed
fix: correct className typo in avatar (react) (#2074)
* fix: correct className typo * fix: revert class change on image
1 parent d1e4353 commit 89145e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/sage-react/lib/Avatar/Avatar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const Avatar = ({
8282
<img alt={image.alt || ''} className="sage-avatar__image" src={image.src} id={image.id} />
8383
)}
8484
{(!image.src || useFallbackGraphic) && (
85-
<pds-icon name="user-filled" color="var(--pine-color-mercury-500)" className="sage-avatar__graphic" />
85+
<pds-icon name="user-filled" color="var(--pine-color-mercury-500)" class="sage-avatar__graphic" />
8686
)}
8787
</div>
8888
);

0 commit comments

Comments
 (0)