mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-26 19:44:57 +02:00
9 lines
267 B
Svelte
9 lines
267 B
Svelte
<script lang="ts">
|
|
export let size: 'small' | 'medium' | 'large'
|
|
const fill: string = 'var(--theme-caption-color)'
|
|
</script>
|
|
|
|
<svg class="svg-{size}" {fill} viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M7.8,10.8L11.7,7H4L7.8,10.8z"/>
|
|
</svg>
|