import { cn } from '@/lib/utils'; import React from 'react'; interface Props { text: string; className?: string; } export const ErrorText: React.FC = ({ text, className }) => { return

{text}

; };