Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanvvalkenhoef committed Jan 4, 2024
1 parent 6352080 commit 2ff753b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/components-react/src/Avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ export const Avatar = ({ children, className, src, alt, privateProfile, ...props
) : privateProfile ? (
<IconUser className="kernteam-avatar__text" />
) : (
<IconBuilding className="kernteam-avatar__text" /
</div>
);
<IconBuilding className="kernteam-avatar__text" />
)}
</div>
);
};

Avatar.displayName = 'Avatar';

0 comments on commit 2ff753b

Please sign in to comment.