mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-18 14:23:36 +00:00
9 lines
297 B
Svelte
9 lines
297 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">
|
|
<polygon points="10.6,14.4 4.3,8 10.6,1.6 11.4,2.4 5.7,8 11.4,13.6 "/>
|
|
</svg>
|