2025-03-19 15:49:18 +08:00
|
|
|
import * as React from 'react'
|
2025-03-14 12:40:51 +08:00
|
|
|
|
2025-03-19 15:49:18 +08:00
|
|
|
import {merge} from '@/lib/utils'
|
2025-03-14 12:40:51 +08:00
|
|
|
|
2025-03-19 15:49:18 +08:00
|
|
|
function Input({className, type, ...props}: React.ComponentProps<'input'>) {
|
2025-03-14 12:40:51 +08:00
|
|
|
return (
|
|
|
|
|
<input
|
|
|
|
|
type={type}
|
|
|
|
|
data-slot="input"
|
2025-03-19 15:49:18 +08:00
|
|
|
className={merge(
|
2025-04-26 17:56:32 +08:00
|
|
|
`transition-[color] duration-200 ease-in-out`,
|
2025-03-19 15:49:18 +08:00
|
|
|
`h-10 min-w-0 w-full`,
|
2025-04-11 17:34:42 +08:00
|
|
|
'placeholder:text-muted-foreground',
|
2025-03-19 15:49:18 +08:00
|
|
|
'selection:bg-primary selection:text-primary-foreground',
|
2025-04-26 17:56:32 +08:00
|
|
|
'flex rounded-md border bg-card px-3 py-1 text-base',
|
2025-04-07 15:42:09 +08:00
|
|
|
'outline-none focus-visible:ring-4 ring-ring/50',
|
2025-03-19 15:49:18 +08:00
|
|
|
'disabled:cursor-not-allowed disabled:opacity-50',
|
2025-04-12 11:10:51 +08:00
|
|
|
'aria-invalid:ring-fail/20 aria-invalid:border-fail dark:aria-invalid:ring-fail/40 dark:bg-input/30',
|
2025-03-19 15:49:18 +08:00
|
|
|
'file:text-foreground file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:disabled:pointer-events-none',
|
|
|
|
|
className,
|
2025-03-14 12:40:51 +08:00
|
|
|
)}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-19 15:49:18 +08:00
|
|
|
export {Input}
|