notion-design-system
Version:
A comprehensive Notion-inspired design system built with React, TypeScript, and Tailwind CSS
12 lines (11 loc) • 342 B
TypeScript
import React from 'react';
import { BaseComponentProps } from '../../types';
export interface AvatarProps extends BaseComponentProps {
src?: string;
alt?: string;
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
fallback?: string;
shape?: 'circle' | 'square';
}
declare const Avatar: React.FC<AvatarProps>;
export default Avatar;