aotds-docks/src/lib/components/Output/Print/Systems/Firecons/index.svelte

23 lines
362 B
Svelte
Raw Normal View History

2021-06-13 17:14:22 +00:00
<div>
2022-03-26 17:55:12 +00:00
{#each range(1,firecons) as firecon}
2022-04-05 23:58:32 +00:00
<img class="firecon" src="{base}/icons/firecon.svg" alt="firecon" />
2021-06-13 17:14:22 +00:00
{/each}
</div>
2020-07-29 23:17:25 +00:00
2021-06-13 17:14:22 +00:00
<script>
2022-04-05 23:58:32 +00:00
import { base } from '$app/paths';
2022-03-26 17:55:12 +00:00
import {range} from "$lib/utils.js";
2020-07-29 23:17:25 +00:00
2021-06-13 17:14:22 +00:00
export let firecons = 0;
</script>
<style>
div {
display: flex;
gap: 0.5em;
}
2020-07-29 23:17:25 +00:00
img.firecon {
width: 1em;
}
</style>