UNPKG

aura-glass

Version:

A comprehensive glassmorphism design system for React applications with 142+ production-ready components

27 lines 729 B
/** * Glass Tab Item Component * Individual tab item with glassmorphic styling for tab navigation */ import React, { CSSProperties, ReactNode } from "react"; /** * Glass Tab Item Props */ export interface GlassTabItemProps { children?: ReactNode; label: string; value: string; active?: boolean; disabled?: boolean; icon?: ReactNode; badge?: string | number; onClick?: (value: string) => void; className?: string; style?: CSSProperties; href?: string; target?: string; } /** * Glass Tab Item Component */ export declare const GlassTabItem: React.ForwardRefExoticComponent<GlassTabItemProps & React.RefAttributes<HTMLButtonElement>>; //# sourceMappingURL=GlassTabItem.d.ts.map