mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-10 12:55:44 +00:00
9 lines
481 B
Svelte
9 lines
481 B
Svelte
<script lang="ts">
|
|
export let size: 'small' | 'medium' | 'large'
|
|
const fill: string = 'var(--theme-caption-color)'
|
|
</script>
|
|
|
|
<svg class="svg-{size}" {fill} xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M8.7,8l5.6-5.6c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0L8,7.3L2.4,1.6c-0.2-0.2-0.5-0.2-0.7,0s-0.2,0.5,0,0.7L7.3,8l-5.6,5.6 c-0.2,0.2-0.2,0.5,0,0.7c0.1,0.1,0.2,0.1,0.4,0.1s0.3,0,0.4-0.1L8,8.7l5.6,5.6c0.1,0.1,0.2,0.1,0.4,0.1s0.3,0,0.4-0.1 c0.2-0.2,0.2-0.5,0-0.7L8.7,8z"/>
|
|
</svg>
|