mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-18 14:23:36 +00:00
9 lines
252 B
Svelte
9 lines
252 B
Svelte
<script lang="ts">
|
|
export let size: 'small' | 'medium' | 'large'
|
|
const fill: string = 'currentColor'
|
|
</script>
|
|
|
|
<svg class="svg-{size}" {fill} viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M7.8,7.2L4,11h7.7L7.8,7.2z" />
|
|
</svg>
|