UNPKG

@upv/react-ui-core

Version:

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

15 lines (14 loc) 364 B
import React from "react"; export interface EditableProfilePageProps { avatar?: string; name: string; location?: string; bio?: string; onSave: (data: { name: string; location?: string; bio?: string; avatar?: string; }) => void; } export declare const EditableProfilePage: React.FC<EditableProfilePageProps>;