mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-27 04:44:43 -05:00
14 lines
226 B
TypeScript
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>
|
|
);
|
|
}
|