Files
web/components/TempDesignSystem/Form/ErrorMessage/Error.tsx
2024-07-01 15:38:50 +02:00

14 lines
366 B
TypeScript

import { InfoCircleIcon } from "@/components/Icons"
import Caption from "@/components/TempDesignSystem/Text/Caption"
import styles from "./error.module.css"
export default function Error({ children }: React.PropsWithChildren) {
return (
<Caption className={styles.message} fontOnly>
<InfoCircleIcon color="red" />
{children}
</Caption>
)
}