Card über den Map

This commit is contained in:
ISA
2024-04-19 14:29:27 +02:00
parent 9b32c77e89
commit a954f2a66f
4 changed files with 77 additions and 47 deletions

22
components/ExpandIcon.js Normal file
View File

@@ -0,0 +1,22 @@
const ExpandIcon = () => {
return (
<svg
width="64"
height="64"
viewBox="0 0 64 64"
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="4"
>
<path d="M16 16L8 8M16 16H8V8" />
<path d="M48 16L56 8M48 16H56V8" />
<path d="M16 48L8 56M16 48H8V56" />
<path d="M48 48L56 56M48 48H56V56" />
</svg>
);
};
export default ExpandIcon;