UNPKG

@starlly-labs/photo-viewer

Version:

An exquisite React photo preview component

14 lines (13 loc) 457 B
import React from 'react'; interface Props { bannerVisible?: boolean; index: number; imageLength: number; toolbarRender: any; toolbarLeftRender?: any; toolbarRightRender?: any; toolbarBottomRender?: any; overlayParams: any; } export default function CustomToolbars({ bannerVisible, index, imageLength, toolbarRender, overlayParams, toolbarLeftRender, toolbarRightRender, }: Props): React.JSX.Element; export {};