UNPKG

@upv/react-ui-core

Version:

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

14 lines (13 loc) 313 B
import React from "react"; interface ProfileCardProps { name: string; username: string; bio?: string; avatarUrl?: string; isVerified?: boolean; isEditable?: boolean; compact?: boolean; onEdit?: () => void; } export declare const ProfileCard: React.FC<ProfileCardProps>; export {};