initial commit

This commit is contained in:
maotovisk 2025-11-07 13:36:00 -03:00
commit 2e0cbc254c
174 changed files with 27742 additions and 0 deletions

View file

@ -0,0 +1,17 @@
import { cn } from '@/lib/utils';
import { type HTMLAttributes } from 'react';
export default function InputError({
message,
className = '',
...props
}: HTMLAttributes<HTMLParagraphElement> & { message?: string }) {
return message ? (
<p
{...props}
className={cn('text-sm text-red-600 dark:text-red-400', className)}
>
{message}
</p>
) : null;
}