import { FormControlError, FormControlErrorIcon, FormControlErrorText, } from "../ui/form-control"; import { AlertCircleIcon } from "../ui/icon"; type props = { text: string }; export default function FormError({ text }: props) { return ( {text} ); }