UNPKG

@fchh/fcos-suite-ui

Version:

Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).

9 lines (8 loc) 349 B
import { PropsWithChildren } from 'react'; export interface LightboxProps { isOpen: boolean; onClose: () => void; onClickNext: () => void; onClickPrev: () => void; } export declare function Lightbox({ isOpen, onClose, children, onClickNext, onClickPrev, }: PropsWithChildren<LightboxProps>): import("react/jsx-runtime").JSX.Element;