tangled
alpha
login
or
join now
isuggest.selfce.st
/
strand
3
fork
atom
alternative tangled frontend (extremely wip)
3
fork
atom
overview
issues
pulls
pipelines
feat: abstract avatar
serenity
2 weeks ago
6c40cf7a
cc79c8c5
+5
1 changed file
expand all
collapse all
unified
split
src
components
Profile
Avatar.tsx
+5
src/components/Profile/Avatar.tsx
···
1
1
+
export const Avatar = ({ uri }: { uri: string | undefined }) => {
2
2
+
return (
3
3
+
<img src={uri} className="outline-accent h-10 rounded-full outline" />
4
4
+
);
5
5
+
};