UNPKG

@replyke/ui-core-react-js

Version:

Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

13 lines (12 loc) 404 B
interface UserProps { id?: string; avatar?: string | null | undefined; name?: string | null | undefined; username?: string | null | undefined; } declare function UserAvatar({ user, size, borderRadius, }: { user: UserProps | undefined; size?: number | undefined; borderRadius?: number | undefined; }): import("react/jsx-runtime").JSX.Element | null; export default UserAvatar;