diff --git a/components/PastEditionCard/index.js b/components/PastEditionCard/index.js
index 2a9ac9fd..73806159 100644
--- a/components/PastEditionCard/index.js
+++ b/components/PastEditionCard/index.js
@@ -1,5 +1,4 @@
 import React from 'react'
-import {ExternalLink} from 'lucide-react'
 const PastEditonCard = ({ url }) => {
     let year = url.split('.')[1]
     return (
@@ -9,7 +8,11 @@ const PastEditonCard = ({ url }) => {
                 <div>
                     <a href={url} rel='noreferrer' target='_blank' className='flex hover:scale-95 transiti items-center justify-center'>
                        <p className='mr-2 text-white text-sm'>View Website</p> 
-                       <ExternalLink color='white' size={19} />
+                       <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="19" height="19" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
+                        <path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/>
+                        <polyline points="15 3 21 3 21 9"/>
+                        <line x1="10" y1="14" x2="21" y2="3"/>
+                        </svg>
                     </a>
                 </div>
             </div>
diff --git a/package.json b/package.json
index 6f01eae2..1ef500c4 100644
--- a/package.json
+++ b/package.json
@@ -17,7 +17,6 @@
     "@googleapis/sheets": "^7.0.0",
     "axios": "^1.7.4",
     "d3": "^7.8.5",
-    "lucide-react": "^0.350.0",
     "net": "^1.0.2",
     "next": "^14.2.21",
     "next-on-netlify": "^3.0.1",