diff --git a/src/Components/Map/Subcomponents/ItemPopupComponents/PopupButton.tsx b/src/Components/Map/Subcomponents/ItemPopupComponents/PopupButton.tsx
new file mode 100644
index 00000000..fb653a44
--- /dev/null
+++ b/src/Components/Map/Subcomponents/ItemPopupComponents/PopupButton.tsx
@@ -0,0 +1,11 @@
+import * as React from 'react'
+import { Link } from 'react-router-dom'
+import { getValue } from '../../../../Utils/GetValue'
+import { Item } from '../../../../types'
+
+export const PopupButton = ({url, parameter, text, color, item} : {url: string, parameter: string, text: string, color : string, item? : Item}) => {
+ return (
+
+
+ )
+}