aboutsummaryrefslogtreecommitdiff
path: root/src/components/icon/PlayIcon.vue
blob: e885993ca4e8f3cbb07b78925672198d75342b59 (plain)
1
2
3
4
5
6
7
8
9
10
11
<script lang="ts">
import {defineComponent, PropType} from 'vue';
export default defineComponent({});
</script>

<template>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"
	stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
	<polygon points="7 3 21 12 7 21 7 3"></polygon>
</svg>
</template>