import { motion } from 'framer-motion' import { Sliders } from 'lucide-react' export default function AdvancedSettings({ settings, onSettingsChange, includeCaption, onIncludeCaptionChange }) { const handleChange = (key, value) => { onSettingsChange({ ...settings, [key]: value }) } return (

Advanced Settings

handleChange('base_size', parseInt(e.target.value))} className="w-full bg-white/5 border border-white/10 rounded-xl px-3 py-2 text-sm focus:outline-none focus:border-purple-500" />
handleChange('image_size', parseInt(e.target.value))} className="w-full bg-white/5 border border-white/10 rounded-xl px-3 py-2 text-sm focus:outline-none focus:border-purple-500" />
) }