Changed pptx icon
All checks were successful
Automated Container Build / build-and-push (push) Successful in 47s

This commit is contained in:
Elijah 2026-05-25 10:22:07 -07:00
parent 9454ad28ea
commit b4d3488a85
2 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
import React, { useState, useEffect, useRef } from 'react';
import { Plus, Pencil, Trash2, Pin, FileText, Presentation, FileSpreadsheet } from 'lucide-react';
import { Plus, Pencil, Trash2, Pin, FileText, Projector, FileSpreadsheet } from 'lucide-react';
import api from '@/lib/api';
interface FileItem {
@ -33,7 +33,7 @@ function WordIcon({ className }: { className?: string }) {
function PptIcon({ className }: { className?: string }) {
return (
<div className={`flex items-center justify-center text-white bg-[#D24726] rounded-lg ${className || ''}`}>
<Presentation className="w-[55%] h-[55%]" />
<Projector className="w-[55%] h-[55%]" />
</div>
);
}