UNPKG

@selfcommunity/react-ui

Version:

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

18 lines (17 loc) 630 B
import { SCLiveStreamType } from '@selfcommunity/types'; import { ReactNode } from 'react'; export interface LiveStreamInfoDetailsProps { liveStream: SCLiveStreamType; liveStreamId?: number; hideDateIcon?: boolean; hideLocationIcon?: boolean; hideCreatedIcon?: boolean; hasDateInfo?: boolean; hasLocationInfo?: boolean; hasCreatedInfo?: boolean; hasInProgress?: boolean; beforeDateInfo?: ReactNode | null; beforeLocationInfo?: ReactNode | null; beforeCreatedInfo?: ReactNode | null; } export default function LiveStreamInfoDetails(inProps: LiveStreamInfoDetailsProps): JSX.Element;