platform/packages/ui/src/components/icons/Back.svelte
Alexander Platov 632ea611fa
Get rid of IconSize (#51)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2021-08-23 11:19:08 +02:00

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>