UNPKG

react-newsfeed

Version:

A customizable social media post component for React applications that mimics popular social media feeds with features like likes, comments, and image galleries.

8 lines (7 loc) 215 B
interface AvatarProps { src: string; alt: string; size?: "sm" | "md" | "lg" | "xs"; } export default function Avatar({ src, alt, size }: AvatarProps): import("react/jsx-runtime").JSX.Element; export {};