sendou.ink/app/components/elements/FieldMessage.tsx
Kalle fef1ffc955
Design refresh + a bunch of stuff (#2864)
Co-authored-by: hfcRed <hfcred@gmx.net>
2026-03-19 17:51:42 +02:00

15 lines
273 B
TypeScript

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