UNPKG

@smitch/fluid

Version:

A Next/React ui-component libray.

11 lines (10 loc) 279 B
/// <reference types="react" /> export interface ModalProps extends React.HTMLAttributes<HTMLDialogElement> { src: string; alt: string; caption?: string; className?: string | undefined; onClick?: () => void; open: boolean; theme?: 'light' | 'dark'; }