alternative tangled frontend (extremely wip)

feat: abstract avatar

serenity 6c40cf7a cc79c8c5

+5
+5
src/components/Profile/Avatar.tsx
···
··· 1 + export const Avatar = ({ uri }: { uri: string | undefined }) => { 2 + return ( 3 + <img src={uri} className="outline-accent h-10 rounded-full outline" /> 4 + ); 5 + };