UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

14 lines (13 loc) 335 B
import React from "react"; interface ProfileHeaderProps { avatarUrl?: string; name: string; username: string; bio?: string; isFollowing?: boolean; onFollowToggle?: () => void; editable?: boolean; onEditProfile?: () => void; } export declare const ProfileHeader: React.FC<ProfileHeaderProps>; export {};