@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
19 lines (18 loc) • 489 B
TypeScript
import { BaseItemProps } from '../../../../shared/BaseItem';
import { SCFeedUnitActivityType } from '@selfcommunity/types';
export interface ActionsRelevantActivityProps extends BaseItemProps {
/**
* Overrides or extends the styles applied to the component.
* @default null
*/
className?: string;
/**
* Activity obj
* @default null
*/
activityObject: SCFeedUnitActivityType;
/**
* Any other properties
*/
[p: string]: any;
}