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

26 lines
407 B
Svelte
Raw Normal View History

2020-07-29 23:17:25 +00:00
<div>
2022-03-01 17:42:33 +00:00
{#each _.range(standard) as i}
2020-07-29 23:17:25 +00:00
<img src="icons/screen.svg" alt="screen" />
{/each}
2022-03-01 17:42:33 +00:00
{#each _.range(advanced) as i}
2020-07-29 23:17:25 +00:00
<img src="icons/screen-advanced.svg" alt="advanced screen" />
{/each}
</div>
<script>
2022-03-01 17:42:33 +00:00
import _ from "lodash";
2020-07-29 23:17:25 +00:00
export let standard = 0;
export let advanced = 0;
</script>
<style>
img {
width: 1em;
}
div {
display: flex;
gap: 0.5em;
}
</style>