@clubmed/trident-ui
Version:
Shared ClubMed React UI components
9 lines (8 loc) • 381 B
TypeScript
import { HTMLAttributes, PropsWithChildren } from 'react';
interface AvatarProps extends HTMLAttributes<HTMLDivElement> {
alt?: string;
src?: string | undefined;
srcSet?: string | undefined;
}
export declare function Avatar({ alt, src, srcSet, style, children, className, ...props }: PropsWithChildren<AvatarProps>): import("react/jsx-runtime").JSX.Element;
export {};