@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
19 lines (18 loc) • 558 B
TypeScript
import React from "react";
import { Theme } from "@material-ui/core";
export declare type ProfileAvatarProps = {
avatar?: any;
avatarColor: string;
children: React.ReactNode;
height: number;
image: any;
imageOnly?: boolean;
tagPalette: string;
tagText: string;
theme: Theme;
title: string;
type: string;
width: number;
};
declare const _default: ({ width, height, title, avatar, image, avatarColor, tagText, tagPalette, type, imageOnly, ...props }: ProfileAvatarProps) => JSX.Element;
export default _default;