monday-ui-react-core
Version:
Official monday.com UI resources for application development in React.js
19 lines (18 loc) • 551 B
TypeScript
import React from "react";
import { AvatarSize } from "./AvatarConstants";
import VibeComponentProps from "../../types/VibeComponentProps";
import { SubIcon } from "../../types";
export interface AvatarBadgeProps extends VibeComponentProps {
src?: string;
/**
* Use to provide SVG Components
*/
icon?: SubIcon;
ariaLabel?: string;
tabIndex?: string | number;
className?: string;
size?: string;
}
export declare const AvatarBadge: React.FC<AvatarBadgeProps> & {
sizes?: typeof AvatarSize;
};