UNPKG

@upv/react-ui-core

Version:

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

12 lines (11 loc) 251 B
import React from "react"; interface Stat { label: string; value: number | string; } interface ProfileStatsBarProps { stats: Stat[]; compact?: boolean; } export declare const ProfileStatsBar: React.FC<ProfileStatsBarProps>; export {};