@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
24 lines (23 loc) • 616 B
TypeScript
import { SCFeedUnitActivityType } from '@selfcommunity/types';
export interface RelevantActivitiesProps {
/**
* Overrides or extends the styles applied to the component.
* @default null
*/
className?: string;
/**
* Activities available.
* @default []
*/
activities: SCFeedUnitActivityType[];
/**
* The number of relevant activities shown
* @default 5
*/
showMaxRelevantActivities?: number;
/**
* Any other properties
*/
[p: string]: any;
}
export default function RelevantActivities(props: RelevantActivitiesProps): JSX.Element;