import { forwardRef } from 'react';
import { cn } from '../../lib/utils.js';
const Input = forwardRef(function Input({ className, type = 'text', ...props }, ref) {
return (
);
});
const Textarea = forwardRef(function Textarea({ className, ...props }, ref) {
return (
);
});
export { Input, Textarea };