mirror of
https://github.com/stack-auth/stack.git
synced 2026-07-12 21:00:52 +08:00
13 lines
204 B
TypeScript
13 lines
204 B
TypeScript
'use client';
|
|
|
|
export function FormWarningText({ text }: { text?: string }) {
|
|
if (!text) {
|
|
return null;
|
|
}
|
|
return (
|
|
<div className="text-red-500 text-sm mt-1">
|
|
{text}
|
|
</div>
|
|
);
|
|
}
|