11 lines
238 B
Svelte
11 lines
238 B
Svelte
<script lang="ts">
|
|
export let color: string = undefined
|
|
export let flip: boolean = false
|
|
</script>
|
|
|
|
<svg width="12" height="14"
|
|
class="arrow arrow--{color}"
|
|
class:arrow--flip={flip}
|
|
>
|
|
<use xlink:href="#arrow" />
|
|
</svg> |