blob: 04247722cb483fa9403b19da003a943cb4ad4e27 (
plain)
1
2
3
4
5
6
7
8
9
|
import { cn } from '@/lib/utils';
import React from 'react';
export function Input({
className,
...props
}: React.InputHTMLAttributes<HTMLInputElement>) {
return <input className={cn('outline-none', className)} {...props} />;
}
|