aboutsummaryrefslogtreecommitdiff
path: root/src/components/icon/PlayIcon.vue
blob: 7e5d82384bff18cdaf160e2ad71f0e57bc5ebf35 (plain)
1
2
3
4
5
6
7
8
9
10
11
<template>
<svg viewBox="-2 0 24 24" fill="none"
	stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
	<polygon points="5 3 19 12 5 21 5 3"></polygon>
</svg>
</template>

<script lang="ts">
import {defineComponent, PropType} from 'vue';
export default defineComponent({});
</script>