@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
24 lines (23 loc) • 807 B
TypeScript
import { SCEventType } from '@selfcommunity/types';
import { ReactNode } from 'react';
export interface EventInfoDetailsProps {
event: SCEventType;
eventId?: number;
hideDateIcon?: boolean;
hideRecurringIcon?: boolean;
hidePrivacyIcon?: boolean;
hideLocationIcon?: boolean;
hideCreatedIcon?: boolean;
hasDateInfo?: boolean;
hasRecurringInfo?: boolean;
hasPrivacyInfo?: boolean;
hasLocationInfo?: boolean;
hasCreatedInfo?: boolean;
hasInProgress?: boolean;
beforeDateInfo?: ReactNode | null;
beforeRecurringInfo?: ReactNode | null;
beforePrivacyInfo?: ReactNode | null;
beforeLocationInfo?: ReactNode | null;
beforeCreatedInfo?: ReactNode | null;
}
export default function EventInfoDetails(inProps: EventInfoDetailsProps): JSX.Element;