diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-03-28 12:57:20 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-03-28 12:57:20 +1100 |
| commit | bcf60b4e1aa2283821010715b33009d8f4a48207 (patch) | |
| tree | 46630455ae407f30758c5b255f5fe41ccfe00a5a /src/components/icon/PlayIcon.vue | |
| parent | 10ccee584417d51afc583484b692a8d7086a0d5f (diff) | |
Convert SVG icons into icon components
Diffstat (limited to 'src/components/icon/PlayIcon.vue')
| -rw-r--r-- | src/components/icon/PlayIcon.vue | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/icon/PlayIcon.vue b/src/components/icon/PlayIcon.vue new file mode 100644 index 0000000..293c827 --- /dev/null +++ b/src/components/icon/PlayIcon.vue @@ -0,0 +1,13 @@ +<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"> + <circle cx="12" cy="12" r="10"/> + <polygon points="10 8 16 12 10 16 10 8"/> +</svg> +</template> |
