We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 043c1be commit b95f3cdCopy full SHA for b95f3cd
app/classrooms/[classroomId]/upload/uploadComponent.tsx
@@ -20,6 +20,7 @@ import {
20
import { Skeleton } from "@shared/components/ui/skeleton";
21
import { ScrollArea } from "@shared/components/ui/scroll-area";
22
import { toast } from "sonner";
23
+import { SquareArrowOutUpRight } from "lucide-react";
24
25
type UploadedFile = {
26
id: string;
@@ -204,7 +205,7 @@ function FileList({ uploadedFiles }: { uploadedFiles: UploadedFile[] }) {
204
205
target="_blank"
206
className="font-medium hover:underline"
207
>
- {file.name}
208
+ {file.name}<SquareArrowOutUpRight className="inline scale-75"/>
209
</Link>
210
<p className="text-sm text-muted-foreground">
211
{(file.size / 1024).toFixed(2)} KB - {file.type} -{" "}
0 commit comments