forked from nikita/muzika-gromche
19 lines
365 B
Vue
19 lines
365 B
Vue
<script setup lang="ts">
|
|
import type { TimelineMarkerData } from '@/lib/Timeline';
|
|
|
|
const {
|
|
timelineMarker,
|
|
} = defineProps<{
|
|
timelineMarker: TimelineMarkerData,
|
|
}>();
|
|
|
|
const left = '15%';
|
|
</script>
|
|
<template>
|
|
<div class="tw:absolute tw:w-px tw:h-full" :style="{
|
|
left,
|
|
backgroundColor: timelineMarker.color,
|
|
}" />
|
|
</template>
|
|
<style scoped></style>
|