From 46a7836067cbd2f350a643e26e16827bc77fb220 Mon Sep 17 00:00:00 2001 From: Brian Muenzenmeyer Date: Fri, 25 Oct 2024 15:24:01 -0500 Subject: [PATCH] adds link to github profile --- .../Common/AvatarGroup/Avatar/index.tsx | 24 +++++++++++-------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/apps/site/components/Common/AvatarGroup/Avatar/index.tsx b/apps/site/components/Common/AvatarGroup/Avatar/index.tsx index 4837f9b40b585..70dce497d2bdc 100644 --- a/apps/site/components/Common/AvatarGroup/Avatar/index.tsx +++ b/apps/site/components/Common/AvatarGroup/Avatar/index.tsx @@ -1,6 +1,8 @@ import * as RadixAvatar from '@radix-ui/react-avatar'; import type { FC } from 'react'; +import Link from '@/components/Link'; + import styles from './index.module.css'; export type AvatarProps = { @@ -11,16 +13,18 @@ export type AvatarProps = { const Avatar: FC = ({ src, alt, fallback }) => ( - - - {fallback} - + + + + {fallback} + + );