@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) • 339 B
JavaScript
'use client';
import React from 'react';
import { useProps } from '@mantine/core';
function FlipFront(props) {
const { children } = useProps("FlipFront", {}, props);
return /* @__PURE__ */ React.createElement("div", null, children);
}
FlipFront.displayName = "FlipFront";
export { FlipFront };
//# sourceMappingURL=FlipFront.mjs.map