UNPKG

@selfcommunity/react-ui

Version:

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

16 lines (15 loc) 378 B
import { SCUserType } from '@selfcommunity/types'; export interface ParticipantTileAvatarProps { className?: string; /** * User Object * @default null */ user?: SCUserType; /** * User Object * @default null */ participant?: any; } export default function ParticipantTileAvatar(inProps: ParticipantTileAvatarProps): JSX.Element;