UNPKG

@starlly-labs/photo-viewer

Version:

An exquisite React photo preview component

9 lines (8 loc) 305 B
import React from 'react'; interface ProtectionLayerProps { isVisible: boolean; onRestore: () => void; reason?: 'focus' | 'command' | 'printscreen'; } export default function ProtectionLayer({ isVisible, onRestore, reason }: ProtectionLayerProps): React.JSX.Element | null; export {};