Skip to content

Commit

Permalink
Merge pull request #3 from SuveenE/cursor-pointer
Browse files Browse the repository at this point in the history
Cursor pointer for download button
  • Loading branch information
jinyang628 authored Nov 24, 2024
2 parents a7d31a6 + e646349 commit fe5037c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/videoGenerator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,10 @@ export default function VideoGenerator({
{generating ? "Generating..." : "Create Video"}
</button>
{videoUrl && progress === 100 ? (
<DownloadIcon className="w-[10%]" onClick={handleDownload} />
<DownloadIcon
className="w-[10%] cursor-pointer"
onClick={handleDownload}
/>
) : null}
</div>
<div className="flex flex-col gap-4 border-2 border-gray-300 p-4 rounded-md min-h-128">
Expand Down

0 comments on commit fe5037c

Please sign in to comment.