sendou.ink/app/components/elements/FieldMessage.tsx
Kalle dd1adad94b
Some checks are pending
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
BIome v2 upgrade
2025-06-22 16:49:27 +03:00

14 lines
226 B
TypeScript

import { Text } from "react-aria-components";
export function SendouFieldMessage({
children,
}: {
children: React.ReactNode;
}) {
return (
<Text slot="description" className="info-message">
{children}
</Text>
);
}