forked from MapComplete/MapComplete
9 lines
150 B
Svelte
9 lines
150 B
Svelte
|
|
<script lang="ts">
|
||
|
|
/**
|
||
|
|
* in pixels
|
||
|
|
*/
|
||
|
|
export let height: Store<number>
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<div style={"height: "+$height+"px; background: red;"} />
|