@gfazioli/mantine-flip
Version:
Flip component is a wrapper for any component that can be flipped. It is used to create cards, flip boxes and more.
13 lines (10 loc) • 333 B
JavaScript
'use client';
import React from 'react';
import { useProps } from '@mantine/core';
function FlipBack(props) {
const { children } = useProps("FlipBack", {}, props);
return /* @__PURE__ */ React.createElement("div", null, children);
}
FlipBack.displayName = "FlipBack";
export { FlipBack };
//# sourceMappingURL=FlipBack.mjs.map