mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 04:00:09 +00:00
15 lines
357 B
JavaScript
15 lines
357 B
JavaScript
"use client";
|
|
"use client";
|
|
|
|
// src/components/elements/form-warning.tsx
|
|
import { jsx } from "react/jsx-runtime";
|
|
function FormWarningText({ text }) {
|
|
if (!text) {
|
|
return null;
|
|
}
|
|
return /* @__PURE__ */ jsx("div", { className: "text-red-500 text-sm mt-1", children: text });
|
|
}
|
|
export {
|
|
FormWarningText
|
|
};
|
|
//# sourceMappingURL=form-warning.js.map
|