UNPKG

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

12 lines (11 loc) 311 B
import { default as React } from 'react'; export interface AvatarProps { src?: string; alt?: string; size?: 'sm' | 'md' | 'lg'; fallback?: string; className?: string; status?: 'online' | 'offline' | 'busy' | 'away'; id?: string; } export declare const Avatar: React.FC<AvatarProps>;