aotds-docks/src/routes/(editor)/export/print/PrintShip/MainSystems/Ftl.svelte

14 lines
200 B
Svelte

{#if type && type !== "none"}
<img src="/icons/ftl-drive.svg" alt="ftl drive" title="ftl drive" />
{/if}
<script>
export let type = null;
</script>
<style>
img {
height: 2em;
}
</style>