aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
13 lines • 517 B
TypeScript
import React from 'react';
export interface GlassBadgeLineProps extends React.HTMLAttributes<HTMLDivElement> {
items: {
label: string;
intent?: 'default' | 'success' | 'warning' | 'danger';
}[];
className?: string;
/** ARIA label for the badge line */
'aria-label'?: string;
}
export declare const GlassBadgeLine: React.ForwardRefExoticComponent<GlassBadgeLineProps & React.RefAttributes<HTMLDivElement>>;
export default GlassBadgeLine;
//# sourceMappingURL=GlassBadgeLine.d.ts.map