Files
huly-platform/plugins/workbench-resources/src/components/icons/Collapsed.svelte
T
2022-04-29 12:27:17 +07:00

9 lines
282 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">
<polygon points="6.4,14.4 5.6,13.6 11.3,8 5.6,2.4 6.4,1.6 12.7,8 " />
</svg>