Sha256: 90dbd1a6421b1b9789793ff57d3cd8a0d472d7ea3e3d680362a78bae5fa34297
Contents?: true
Size: 550 Bytes
Versions: 2
Compression:
Stored size: 550 Bytes
Contents
import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; export declare type AvatarProps = { aria?: { [key: string]: string; }; className?: string; data?: { [key: string]: string; }; dark?: boolean; id?: string; imageAlt?: string; imageUrl?: string; name?: string; size?: "md" | "lg" | "sm" | "xl" | "xs" | "xxs"; status?: "away" | "offline" | "online"; } & GlobalProps; declare const Avatar: (props: AvatarProps) => React.ReactElement; export default Avatar;
Version data entries
2 entries across 2 versions & 1 rubygems