diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-07-03 20:37:46 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-07-03 23:25:28 +1000 |
| commit | 567a21a8d0498f467f558d9ec1a6db8f1b52c0e6 (patch) | |
| tree | e08d687d05acf648c2a0d877455556dfdef632d8 /src/components/icon/DownIcon.vue | |
| parent | 89fc34f82956f2410ee7f1d90e03945e10805dda (diff) | |
Add SCollapsible component
Also update info-modal source-info styling
Diffstat (limited to 'src/components/icon/DownIcon.vue')
| -rw-r--r-- | src/components/icon/DownIcon.vue | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/icon/DownIcon.vue b/src/components/icon/DownIcon.vue new file mode 100644 index 0000000..dc954d1 --- /dev/null +++ b/src/components/icon/DownIcon.vue @@ -0,0 +1,11 @@ +<template> +<svg viewBox="0 0 24 24" fill="none" + stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> + <polyline points="6 9 12 15 18 9"></polyline> +</svg> +</template> + +<script lang="ts"> +import {defineComponent, PropType} from 'vue'; +export default defineComponent({}); +</script> |
