Skip to content

Commit

Permalink
fix/rename missed old icon names (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrtly authored Dec 8, 2022
1 parent 643c5f2 commit b6eb194
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/Pagination/PageArrowIcon.vue
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<template>
<span :class="[{'text-gray-900 hover:text-primary-300': !disabled}, { 'text-gray-100 hover:text-gray-100' : disabled }]">
<skip-to-left v-if="first" />
<chevrons-left v-if="first" />
<chevron-left v-if="previous" />
<chevron-right v-if="next" />
<skip-to-right v-if="last" />
<chevrons-right v-if="last" />
</span>
</template>

<script>
import { SkipToLeft, ChevronLeft, ChevronRight, SkipToRight } from '@/components/Icons';
import { ChevronsLeft, ChevronLeft, ChevronRight, ChevronsRight } from '@/components/Icons';
export default {
name: 'PageArrowIcon',
components: { SkipToLeft, ChevronLeft, ChevronRight, SkipToRight },
components: { ChevronsLeft, ChevronLeft, ChevronRight, ChevronsRight },
props: {
disabled: {
type: Boolean,
Expand Down

0 comments on commit b6eb194

Please sign in to comment.