import { Brush, Download, History, RefreshCw } from 'lucide-react'; import { useState } from 'react'; // Mini component for consistent button styling const ActionButton = ({ icon: Icon, label, onClick, disabled, ariaLabel, onMouseEnter, onMouseLeave }) => { return ( ); }; const OutputOptionsBar = ({ isLoading, hasGeneratedContent, onSendToDoodle, }) => { const [showDoodleTooltip, setShowDoodleTooltip] = useState(false); return (