aboutsummaryrefslogtreecommitdiff
path: root/src/components/icon/PlayIcon.vue
blob: f54d203dcde397084f5523983f668d629f0d304e (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 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>