mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-15 17:53:28 -05:00
* Initial * Progress * Form fields fun * Pov * Progress * Some errors * Progress * Progress * Progress * Progress * Comment * Progress * Remove comment * Fix editing * Redundant check
12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
import { Text } from "react-aria-components";
|
|
|
|
export function SendouFieldMessage({
|
|
children,
|
|
}: { children: React.ReactNode }) {
|
|
return (
|
|
<Text slot="description" className="info-message">
|
|
{children}
|
|
</Text>
|
|
);
|
|
}
|