UNPKG

@cardscan.ai/insurance-cardscan-react

Version:

A library that makes it easy to add health insurance card scanning to any web application

9 lines (8 loc) 294 B
import { ReactNode } from "react"; type GeneralModalProps = { show: boolean; children: ReactNode; ariaLabel?: string; }; declare const GeneralModal: ({ show, children, ariaLabel, }: GeneralModalProps) => import("react/jsx-runtime").JSX.Element; export default GeneralModal;