import { forwardRef, type InputHTMLAttributes } from 'react';
import { cn } from '@/src/lib/utils';
export type AdminInputProps = InputHTMLAttributes;
export const AdminInput = forwardRef(function AdminInput(
{ className, type = 'text', ...props },
ref,
) {
return (
);
});