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(
|
|
|
|
|
`transition-[color,box-shadow] duration-200 ease-in-out`,
|
|
|
|
|
`h-10 min-w-0 w-full`,
|
|
|
|
|
' placeholder:text-muted-foreground',
|
|
|
|
|
'selection:bg-primary selection:text-primary-foreground',
|
|
|
|
|
'flex rounded-md border bg-transparent px-3 py-1 text-base shadow-xs',
|
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',
|
|
|
|
|
'aria-invalid:ring-destructive/20 aria-invalid:border-destructive dark:aria-invalid:ring-destructive/40 dark:bg-input/30',
|
|
|
|
|
'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}
|