cleaning out legacy and making it work

This commit is contained in:
talksik
2022-05-12 17:44:55 -05:00
parent dad50345a6
commit 07b90e12bc
24 changed files with 31 additions and 45 deletions
@@ -0,0 +1,15 @@
import { Avatar, Badge } from "antd";
import { UserOutlined } from "@ant-design/icons";
const AvatarWithBadge = ({ src }: { src: string }) => (
<>
<span>
<Badge dot>
<Avatar shape="square" src={src} />
</Badge>
</span>
</>
);
export default AvatarWithBadge;