mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 21:07:44 +00:00
fixed
This commit is contained in:
12
src/lib/components/appwrite-network/map-tooltip.svelte
Normal file
12
src/lib/components/appwrite-network/map-tooltip.svelte
Normal file
@@ -0,0 +1,12 @@
|
||||
<script lang="ts">
|
||||
type Props = {
|
||||
coords: {
|
||||
x: number;
|
||||
y: number;
|
||||
};
|
||||
};
|
||||
|
||||
const { coords } = $props();
|
||||
</script>
|
||||
|
||||
<div style:left="{coords.x}px" style:top="{coords.y}px">Tooltip</div>
|
||||
Reference in New Issue
Block a user