Files
huly-platform/plugins/workbench-resources/src/components/icons/Down.svelte
T
2021-08-23 11:19:08 +02:00

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>