|
38 | 38 | class="relative inline-flex items-center px-2 py-2 rounded-l-md border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50"
|
39 | 39 | >
|
40 | 40 | <span class="sr-only">Previous</span>
|
41 | | - <ChevronLeftIcon class="h-5 w-5" /> |
| 41 | + <svg |
| 42 | + xmlns="http://www.w3.org/2000/svg" |
| 43 | + class="h-5 w-5" |
| 44 | + viewBox="0 0 20 20" |
| 45 | + fill="currentColor" |
| 46 | + > |
| 47 | + <path |
| 48 | + fill-rule="evenodd" |
| 49 | + d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" |
| 50 | + clip-rule="evenodd" |
| 51 | + /> |
| 52 | + </svg> |
42 | 53 | </component>
|
43 | 54 |
|
44 | 55 | <div v-for="(link, key) in meta.links" :key="key">
|
|
59 | 70 | class="relative inline-flex items-center px-2 py-2 rounded-r-md border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50"
|
60 | 71 | >
|
61 | 72 | <span class="sr-only">Next</span>
|
62 | | - <ChevronRightIcon class="h-5 w-5" /> |
| 73 | + <svg |
| 74 | + xmlns="http://www.w3.org/2000/svg" |
| 75 | + class="h-5 w-5" |
| 76 | + viewBox="0 0 20 20" |
| 77 | + fill="currentColor" |
| 78 | + > |
| 79 | + <path |
| 80 | + fill-rule="evenodd" |
| 81 | + d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" |
| 82 | + clip-rule="evenodd" |
| 83 | + /> |
| 84 | + </svg> |
63 | 85 | </component>
|
64 | 86 | </nav>
|
65 | 87 | </div>
|
|
68 | 90 | </template>
|
69 | 91 |
|
70 | 92 | <script>
|
71 | | -import { ChevronLeftIcon, ChevronRightIcon } from "@vue-hero-icons/solid"; |
72 | 93 | import Pagination from "./../Components/Pagination.vue";
|
73 | 94 |
|
74 | 95 | export default {
|
75 | 96 | mixins: [Pagination],
|
76 | | - |
77 | | - components: { |
78 | | - ChevronLeftIcon, |
79 | | - ChevronRightIcon, |
80 | | - }, |
81 | 97 | };
|
82 | 98 | </script>
|
0 commit comments