jbilcke-hf's picture
jbilcke-hf HF Staff
AiTube is dead, long live AiTube
1c60115
raw
history blame
205 Bytes
"use client"
import Avatar, { ReactAvatarProps } from "react-avatar"
export default function DefaultAvatarImpl(props: ReactAvatarProps): JSX.Element {
return (
<Avatar
{...props}
/>
)
}