@techabl/core-components
Version:
Easy use restyle components in React applications.
10 lines • 368 B
TypeScript
import React from 'react';
export interface ModalProps {
visible: boolean;
title: string;
onClose?: () => void;
isAutoClose?: boolean;
children?: React.ReactNode;
}
export declare const Modal: ({ visible, title, onClose, isAutoClose, children, }: ModalProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=modal.component.d.ts.map