UNPKG

@coveord/plasma-mantine

Version:

A Plasma flavoured Mantine theme

20 lines (19 loc) 805 B
import { jsx as _jsx } from "react/jsx-runtime"; import { factory, Modal as MantineModal } from '@mantine/core'; import { ModalFooter as PlasmaModalFooter } from './ModalFooter'; const PlasmaModal = factory((props, ref)=>/*#__PURE__*/ _jsx(MantineModal, { ref: ref, ...props })); PlasmaModal.displayName = '@coveord/plasma-mantine/Modal'; PlasmaModal.Root = MantineModal.Root; PlasmaModal.Body = MantineModal.Body; PlasmaModal.Overlay = MantineModal.Overlay; PlasmaModal.Content = MantineModal.Content; PlasmaModal.Header = MantineModal.Header; PlasmaModal.Title = MantineModal.Title; PlasmaModal.CloseButton = MantineModal.CloseButton; PlasmaModal.Stack = MantineModal.Stack; PlasmaModal.Footer = PlasmaModalFooter; export const Modal = PlasmaModal; //# sourceMappingURL=Modal.js.map