This commit is contained in:
ct
2025-07-08 02:04:16 +08:00
parent 6a66f96d22
commit e37e80b040
2 changed files with 6 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ import { Button } from '@/components/ui/button';
import { cn } from '@/lib/utils'; import { cn } from '@/lib/utils';
import { useMitt } from '@/plugins/MittContext'; import { useMitt } from '@/plugins/MittContext';
import useVideoEditorStore from '@/stores/VideoEditorStore'; import useVideoEditorStore from '@/stores/VideoEditorStore';
import { Download, GraduationCap, Play, Square, SquarePen } from 'lucide-react'; import { Download, Play, Square, SquarePen } from 'lucide-react';
const EditorControls = ({ className = '', onEditClick = () => {}, isEditActive = false }) => { const EditorControls = ({ className = '', onEditClick = () => {}, isEditActive = false }) => {
const { videoIsPlaying } = useVideoEditorStore(); const { videoIsPlaying } = useVideoEditorStore();
@@ -66,13 +66,13 @@ const EditorControls = ({ className = '', onEditClick = () => {}, isEditActive =
<Share2 className="h-8 w-8" /> <Share2 className="h-8 w-8" />
</Button> */} </Button> */}
<Button onClick={handleAIButton} variant="outline" size="icon" className="font-display h-12 w-12 rounded-full border font-bold shadow-sm"> {/* <Button onClick={handleAIButton} variant="outline" size="icon" className="font-display h-12 w-12 rounded-full border font-bold shadow-sm">
AI AI
</Button> </Button> */}
<Button variant="outline" size="icon" className="h-12 w-12 rounded-full border shadow-sm"> {/* <Button variant="outline" size="icon" className="h-12 w-12 rounded-full border shadow-sm">
<GraduationCap className="h-8 w-8" /> <GraduationCap className="h-8 w-8" />
</Button> </Button> */}
</div> </div>
); );
}; };

File diff suppressed because one or more lines are too long