frame preview component

This commit is contained in:
AnActualEmerald 2022-09-01 01:09:11 -04:00
parent b789cc6917
commit 33054f5e75
Signed by: emerald
GPG Key ID: CC76D6B296CAC8B0
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<script lang="ts">
export let index: number;
//TODO: load frame from ray
</script>
<div class="preview" />
<style lang="scss">
.preview {
border-radius: 10px;
background-color: rgba(150, 150, 150, 0.5);
width: 15vh;
height: 15vh;
}
</style>