UNPKG

@upv/react-ui-core

Version:

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

13 lines (12 loc) 272 B
import React from "react"; export interface Tab { key: string; label: string; } interface ProfileTabsProps { tabs: Tab[]; activeTab: string; onTabChange: (key: string) => void; } export declare const ProfileTabs: React.FC<ProfileTabsProps>; export {};