UNPKG

@pomegranate-ui/maracuya-ui

Version:

Maracuya is a design system built with React, Typescript & emotion

16 lines (15 loc) 409 B
/** * File Name: Modal */ /** @jsx jsx */ import React from 'react'; import { ICoreBase } from '../../core'; export interface IModal extends ICoreBase { isOpen?: boolean; tabIndex?: number; closeModal: () => void; backdrop?: boolean; ariaLabel?: string; css?: any; } export declare const Modal: React.MemoExoticComponent<(params: IModal) => React.ReactPortal | null>;