@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
31 lines (30 loc) • 693 B
TypeScript
export interface ParticipantTileActionsMenuProps {
/**
* Overrides or extends the styles applied to the component.
* @default null
*/
className?: string;
/**
* User Object
* @default null
*/
participant?: any;
/**
* Handle remove user
*/
onRemoveParticipant?: (p: any) => void;
/**
* Handle ban user
*/
onBanParticipant?: (p: any) => void;
/**
* Props to spread to popper
* @default empty object
*/
PopperProps?: any;
/**
* Any other properties
*/
[p: string]: any;
}
export default function ContributionActionsMenu(props: ParticipantTileActionsMenuProps): JSX.Element;