/* * SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file) * * SPDX-License-Identifier: AGPL-3.0-only */ import React from 'react' import { Modal } from 'react-bootstrap' import { ForkAwesomeIcon } from '../../../common/fork-awesome/fork-awesome-icon' import './lightbox.scss' import { ProxyImageFrame } from './proxy-image-frame' export interface ImageLightboxModalProps { show: boolean onHide: () => void alt?: string src?: string title?: string } export const ImageLightboxModal: React.FC = ({ show, onHide, src, alt, title }) => { return (   {alt ?? title ?? ''} ) }