platform/packages/ui/src/components/icons/Up.svelte
2022-04-29 12:27:17 +07:00

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>