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
15 lines (14 loc) • 394 B
TypeScript
import { default as React } from 'react';
export interface AvatarTextProps {
src?: string;
fallback?: string;
title: string;
subtitle?: string;
size?: 'sm' | 'md' | 'lg';
status?: 'online' | 'offline' | 'busy' | 'away';
className?: string;
id?: string;
titleId?: string;
subtitleId?: string;
}
export declare const AvatarText: React.FC<AvatarTextProps>;