UNPKG

@frank-auth/react

Version:

Flexible and customizable React UI components for Frank Authentication

28 lines (27 loc) 749 B
'use client'; import { jsx as r } from "react/jsx-runtime"; import { withErrorBoundary as m } from "../../common/error-boundary.js"; import "@emotion/styled"; import { Card as t, CardBody as c } from "../../../ui/card/card.js"; import { EmailVerification as d } from "./email-verification.js"; const h = m( function({ variant: a = "shadow", radius: o = "lg", ...i }) { return /* @__PURE__ */ r( t, { className: `max-w-md mx-auto ${i.className || ""}`, variant: a, radius: o, children: /* @__PURE__ */ r(c, { className: "p-6", children: /* @__PURE__ */ r(d, { ...i }) }) } ); } ); export { h as EmailVerificationCard }; //# sourceMappingURL=email-verification-card.js.map