copilot-swe-agent[bot]
Add new UI components and update front page design
57c2af0
import * as React from 'react'
import { cn } from '@/lib/cn'
function Input({ className, type, ...props }: React.ComponentProps<'input'>) {
return (
<input
type={type}
className={cn(
'file:text-foreground placeholder:text-muted-foreground h-9 w-full min-w-0 rounded-md border bg-transparent px-3 py-1 text-base shadow-xs transition-[color,box-shadow] outline-none file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm',
'focus-visible:ring-2 focus-visible:ring-primary-500/50',
className,
)}
{...props}
/>
)
}
export { Input }