import { Spinner } from "@allurereport/web-components"; import { type FunctionalComponent } from "preact"; import * as styles from "./styles.scss"; export const AttachmentVideo: FunctionalComponent<{ attachment: { src: string; contentType?: string }; }> = ({ attachment }) => { if (!attachment) { return ; } return ( ); };