diff --git a/components/annotation-canvas.tsx b/components/annotation-canvas.tsx index 508f033..288d7e8 100644 --- a/components/annotation-canvas.tsx +++ b/components/annotation-canvas.tsx @@ -2,7 +2,7 @@ import { useRef, useEffect, useCallback, useState, forwardRef, useImperativeHandle } from 'react'; import { Button } from '@/components/ui/button'; -import { Undo2, Trash2, Minus, Plus } from 'lucide-react'; +import { Undo2, Trash2, Minus, Plus, X } from 'lucide-react'; export interface AnnotationStroke { points: { x: number; y: number }[]; @@ -176,7 +176,7 @@ export const AnnotationCanvas = forwardRef @@ -191,7 +191,7 @@ export const AnnotationCanvas = forwardRef e.stopPropagation()} > {/* Toolbar */} -
+
{/* Colors */}
{COLORS.map(c => ( @@ -248,6 +248,13 @@ export const AnnotationCanvas = forwardRef
+ +
+ + {/* Close */} +
); diff --git a/components/video-page-content.tsx b/components/video-page-content.tsx index 7cc9bdb..7eb1806 100644 --- a/components/video-page-content.tsx +++ b/components/video-page-content.tsx @@ -3257,7 +3257,7 @@ export function VideoPageContent({ mode, videoId, projectId: propProjectId }: Vi Annotation attached