UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

10 lines (9 loc) 300 B
import React from 'react'; import { BadgeProps } from '@mui/material'; export interface UserAvatarProps extends BadgeProps { className?: string; children?: React.ReactNode; hide: boolean; smaller?: boolean; } export default function UserAvatar(inProps: UserAvatarProps): JSX.Element;