mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
15 lines
273 B
TypeScript
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>
|
|
);
|
|
}
|