UNPKG

razor-shared-library

Version:
9 lines (8 loc) 261 B
import { ReactElement } from 'react'; interface FullscreenViewProps { imageSrc: string; imageAlt: string; onClose: () => void; } export default function FullscreenView({ imageSrc, imageAlt, onClose, }: FullscreenViewProps): ReactElement; export {};