Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jiep committed Jun 25, 2023
1 parent 84dc686 commit d964ebf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/LoadingIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ svg(xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512', )
import { defineComponent } from 'vue'
export default defineComponent({
name: 'LoadingIcon'
name: 'LoadingIcon'
})
</script>
</script>
5 changes: 2 additions & 3 deletions src/components/SeparatorIcon.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<template lang="pug">
svg(xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512')
path(d='M96 480c-8.188 0-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L242.8 256L73.38 86.63c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l192 192c12.5 12.5 12.5 32.75 0 45.25l-192 192C112.4 476.9 104.2 480 96 480z')
path(d='M96 480c-8.188 0-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L242.8 256L73.38 86.63c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l192 192c12.5 12.5 12.5 32.75 0 45.25l-192 192C112.4 476.9 104.2 480 96 480z')
</template>

<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: 'SeparatorIcon'
name: 'SeparatorIcon'
})
</script>

0 comments on commit d964ebf

Please sign in to comment.