This commit is contained in:
2024-07-09 19:15:01 +05:30
parent 0259b2f436
commit 32831c5579
2 changed files with 2 additions and 2 deletions

View File

@@ -500,7 +500,7 @@ const GlobalStateProvider = ({ children }) => {
},
{
id: 2,
Type: <AiOutlineFileGif />,
Type: <AiOutlineFileGif fontSize={25} />,
fileName: "Investment Private",
document: "Investment.pdf",
status: true,

View File

@@ -90,7 +90,7 @@ const InvestmentDocuments = ({ id, isOpen, onClose, firstField, create, setCreat
case 'image/jpeg':
case 'image/png':
case 'image/gif':
return <AiOutlineFileGif />;
return <AiOutlineFileGif fontSize={25} />;
default:
return <FaRegFileAlt />;
}