import { Plus } from 'lucide-react'; interface ImageFormProps { url: string; caption: string; alt: string; onUrlChange: (url: string) => void; onCaptionChange: (caption: string) => void; onAltChange: (alt: string) => void; onSubmit: () => void; submitLabel: string; } export function ImageForm({ url, caption, alt, onUrlChange, onCaptionChange, onAltChange, onSubmit, submitLabel }: ImageFormProps) { return (