UNPKG

@sikka/hawa

Version:

Modern UI Kit made with Tailwind

18 lines (14 loc) 430 B
import React from 'react'; type RadiusType = "full" | "inherit" | "none"; interface AvatarProps { isUploadable?: boolean; src?: string; alt?: string; size?: "2xs" | "xs" | "sm" | "default" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl"; radius?: RadiusType; className?: string; icon?: React.ReactNode; hideIcon?: boolean; } declare const Avatar: React.FC<AvatarProps>; export { Avatar };