UNPKG

@upv/react-ui-core

Version:

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

11 lines (10 loc) 298 B
import React from "react"; export interface ProfileActionBarProps { isEditing: boolean; onEdit?: () => void; onCancel?: () => void; onSave?: () => void; isSaveDisabled?: boolean; isLoading?: boolean; } export declare const ProfileActionBar: React.FC<ProfileActionBarProps>;