Rocky_Mountain_Vending/components/forms/form-input.tsx
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

56 lines
No EOL
2 KiB
TypeScript

"use client"
import * as React from "react"
import { cn } from "@/lib/utils"
export interface FormInputProps
extends React.InputHTMLAttributes<HTMLInputElement> {
label?: string
error?: string
helperText?: string
}
const FormInput = React.forwardRef<HTMLInputElement, FormInputProps>(
({ className, type, label, error, helperText, id, ...props }, ref) => {
const inputId = id || `input-${Math.random().toString(36).substr(2, 9)}`
return (
<div className="space-y-2">
{label && (
<label
htmlFor={inputId}
className="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
>
{label}
</label>
)}
<div className="relative">
<input
id={inputId}
type={type}
data-slot="input"
className={cn(
"file:text-foreground placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 border-input h-10 w-full min-w-0 rounded-md border bg-transparent px-3 py-2 text-base shadow-xs transition-[color,box-shadow,border-color] 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:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px]",
error
? "aria-invalid:border-destructive focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40"
: "",
className,
)}
ref={ref}
{...props}
/>
</div>
{error && (
<p className="text-sm text-destructive">{error}</p>
)}
{helperText && !error && (
<p className="text-sm text-muted-foreground">{helperText}</p>
)}
</div>
)
}
)
FormInput.displayName = "FormInput"
export { FormInput }