Scripts/resources/[ps]/ps-adminmenu/ui/src/components/EntityInformation.svelte

21 lines
734 B
Svelte
Raw Normal View History

2024-12-29 20:11:16 +00:00
<script>
import { ENTITY_INFO } from "@store/entityInfo"
import { fly } from "svelte/transition"
</script>
<div class="w-screen h-screen flex items-center">
<div class="w-[25vh] bg-primary flex flex-col gap-[2vh] rounded-[0.5vh] p-[2vh] ml-[2vh] font-medium" transition:fly={{ x: -100 }}>
<div class="h-[2vh] w-full flex items-center gap-[1vh] text-[1.5vh]">
<i class="fas fa-code"></i>
<p>Entity Information</p>
</div>
<div>
<p>Model: {$ENTITY_INFO?.name}</p>
<p>Hash: {$ENTITY_INFO?.hash}</p>
<br>
<p>C - Copy Information</p>
<p>E - Delete Entity</p>
<p>ESC - Close</p>
</div>
</div>
</div>