File size: 1,035 Bytes
70b8e47
 
 
32561d8
 
 
70b8e47
304976c
32561d8
70b8e47
 
32561d8
 
 
 
70b8e47
32561d8
70b8e47
 
304976c
32561d8
304976c
70b8e47
304976c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70b8e47
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<script lang="ts">
	import { spring } from 'svelte/motion';

	import type { ZoomTransform } from 'd3-zoom';

	export let transform: ZoomTransform;
	export let color = '';
	export let emoji = '';
	export let position = { x: 0, y: 0 };

	// Spring animation for cursor
	const coords = spring(position, {
		stiffness: 0.07,
		damping: 0.35
	});
	// Update spring when x and y change
	$: coords.set(position);
</script>

<div
	class="absolute top-0 left-0 grid grid-cols-3 touch-none pointer-events-none"
	style={`transform: translateX(${$coords.x}px) translateY(${$coords.y}px);`}
>
	<svg
		class="block z-0 col-span-2 row-span-2"
		width="40"
		viewBox="0 0 15 15"
		fill="currentColor"
		xmlns="http://www.w3.org/2000/svg"
	>
		<path
			d="M0.91603 0.916054L7.09131 14.9234L8.89871 8.89873L14.9234 7.09133L0.91603 0.916054Z"
			fill="#FFB800"
		/>
	</svg>
	<div
		class="absolute right-0 text-4xl col-start-2 row-start-2"
		style={`text-shadow: 0px 5px 5px ${color}`}
	>
		{emoji}
	</div>
</div>

<style lang="postcss" scoped>
</style>