@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
17 lines (16 loc) • 520 B
TypeScript
import { Theme } from "@material-ui/core";
export declare type AvatarProps = {
avatarStyle?: any;
className?: string;
height?: number;
image?: object | string;
imageAlt?: string;
palette?: any;
theme?: Theme;
title: string;
type?: string;
variant?: "circle" | "square" | "rounded";
width?: number;
};
declare const _default: ({ width, height, image, imageAlt, theme, palette, title, type, avatarStyle, variant, ...rest }: AvatarProps) => JSX.Element;
export default _default;