mirror of
https://github.com/psforever/PSFPortal.git
synced 2026-01-19 18:14:45 +00:00
14 lines
341 B
Svelte
14 lines
341 B
Svelte
|
|
<script>
|
||
|
|
export let character;
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<span class="faction-icon">
|
||
|
|
{#if character.faction_id == 1}
|
||
|
|
<img height=32 src="/img/nc_icon.png" alt="NC" />
|
||
|
|
{:else if character.faction_id == 0}
|
||
|
|
<img height=32 src="/img/tr_icon.png" alt="TR" />
|
||
|
|
{:else if character.faction_id == 2}
|
||
|
|
<img height=32 src="/img/vs_icon.png" alt="VS" />
|
||
|
|
{/if}
|
||
|
|
</span>
|