nextuiq
Version:
NextUIQ is a modern, lightweight, and developer-friendly UI component library for React and Next.js. Built with TypeScript and Tailwind CSS, it offers customizable, accessible, and performance-optimized components with built-in dark mode, theme customizat
14 lines (13 loc) • 332 B
TypeScript
import { default as React } from 'react';
export interface TabOption {
id: string;
label: string | React.ReactNode;
value: string;
}
export interface TabsProps {
options: TabOption[];
value: string;
onChange: (value: string) => void;
className?: string;
}
export declare const Tabs: React.FC<TabsProps>;