@replyke/ui-core-react-native
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
13 lines (12 loc) • 412 B
TypeScript
interface UserProps {
id?: string;
avatar?: string | null | undefined;
name?: string | null | undefined;
username?: string | null | undefined;
}
declare const UserAvatar: ({ user, size, borderRadius, }: {
user: UserProps | null | undefined;
size?: number | undefined;
borderRadius?: number | undefined;
}) => import("react/jsx-runtime").JSX.Element | null;
export default UserAvatar;