Skip to content

Commit 6242a48

Browse files
committed
Removes @heroicons/vue dependency
1 parent 3e25a34 commit 6242a48

4 files changed

Lines changed: 13 additions & 18 deletions

File tree

components/Header.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<script setup>
2-
import { Bars3Icon } from "@heroicons/vue/20/solid";
3-
42
const route = useRoute();
53
</script>
64

components/MoreLink.vue

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<script setup>
2-
import { LinkIcon, CursorArrowRaysIcon } from "@heroicons/vue/16/solid";
3-
42
const props = defineProps({
53
to: {
64
type: String,
@@ -16,7 +14,19 @@ const props = defineProps({
1614
class="flex items-center text-sm font-bold text-white hover:text-orange-500"
1715
>
1816
<span class="translate-y-0.5">More</span>
19-
<CursorArrowRaysIcon class="ml-1 h-5 w-5" aria-hidden="true" />
17+
<svg
18+
xmlns="http://www.w3.org/2000/svg"
19+
viewBox="0 0 24 24"
20+
fill="currentColor"
21+
class="ml-1 h-5 w-5"
22+
aria-hidden="true"
23+
>
24+
<path
25+
fill-rule="evenodd"
26+
d="M12 1.5a.75.75 0 0 1 .75.75V4.5a.75.75 0 0 1-1.5 0V2.25A.75.75 0 0 1 12 1.5ZM5.636 4.136a.75.75 0 0 1 1.06 0l1.592 1.591a.75.75 0 0 1-1.061 1.06l-1.591-1.59a.75.75 0 0 1 0-1.061Zm12.728 0a.75.75 0 0 1 0 1.06l-1.591 1.592a.75.75 0 0 1-1.06-1.061l1.59-1.591a.75.75 0 0 1 1.061 0Zm-6.816 4.496a.75.75 0 0 1 .82.311l5.228 7.917a.75.75 0 0 1-.777 1.148l-2.097-.43 1.045 3.9a.75.75 0 0 1-1.45.388l-1.044-3.899-1.601 1.42a.75.75 0 0 1-1.247-.606l.569-9.47a.75.75 0 0 1 .554-.68ZM3 10.5a.75.75 0 0 1 .75-.75H6a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 10.5Zm14.25 0a.75.75 0 0 1 .75-.75h2.25a.75.75 0 0 1 0 1.5H18a.75.75 0 0 1-.75-.75Zm-8.962 3.712a.75.75 0 0 1 0 1.061l-1.591 1.591a.75.75 0 1 1-1.061-1.06l1.591-1.592a.75.75 0 0 1 1.06 0Z"
27+
clip-rule="evenodd"
28+
/>
29+
</svg>
2030
</NuxtLink>
2131
</div>
2232
</template>

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"format": "prettier --parser vue components/ pages/ layouts/ --write"
1111
},
1212
"devDependencies": {
13-
"@heroicons/vue": "^2.2.0",
1413
"@nuxt/content": "^3.5.1",
1514
"@nuxtjs/tailwindcss": "^6.14.0",
1615
"@tailwindcss/typography": "^0.5.16",

pnpm-lock.yaml

Lines changed: 0 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)