mediahub-fe/app/[locale]/(protected)/dashboard/analytics/components/recent-activity.tsx

37 lines
968 B
TypeScript
Raw Normal View History

2024-11-28 17:23:53 +00:00
"use client";
import {
DockIcon,
ImageIcon,
MicIcon,
PaperclipIcon,
TextIcon,
VideoIcon,
YoutubeIcon,
} from "lucide-react";
2024-11-26 03:09:48 +00:00
const RecentActivity = () => {
return (
2024-11-28 17:23:53 +00:00
<div className="flex flex-col gap-5">
<div className="flex flex-row items-center gap-3">
<ImageIcon size={40} className="text-blue-700" />
<p className="text-2xl">0 FOTO</p>
</div>
<div className="flex flex-row items-center gap-3">
<YoutubeIcon size={40} className="text-blue-700" />
<p className="text-2xl">0 AUDIO VISUAL</p>
</div>
<div className="flex flex-row items-center gap-3">
<DockIcon size={40} className="text-blue-700" />
<p className="text-2xl">0 TEXT</p>
</div>
<div className="flex flex-row items-center gap-3">
<MicIcon size={40} className="text-blue-700" />
<p className="text-2xl">0 AUDIO</p>
</div>
</div>
2024-11-26 03:09:48 +00:00
);
};
2024-11-28 17:23:53 +00:00
export default RecentActivity;