import { h } from 'preact'; const smartSvgIcon = (content, d) => ( ); /** * Displays video in Connect. * * @param {string} props.videoPath The URL of a video * @param {function} props.onTriggerVideoContent Fires when a video is clicked on * @param {boolean} props.fullscreen Whether or not to show the video in fullscreen * * @returns A video component */ export function VideoContent(props) { const { videoPath, onTriggerVideoContent, fullscreen } = props; if (!videoPath) { return null; } return (