luke-else.co.uk/src/lib/components/timeline/TimelineConnector.svelte

14 lines
211 B
Svelte

<script lang="ts">
export let style: string = null;
</script>
<span class="timeline-connector" {style} />
<style>
.timeline-connector {
width: 2px;
background-color: #bdbdbd;
flex-grow: 1;
}
</style>