Update icon package
This commit is contained in:
parent
751c7ea87a
commit
7afea6a6cc
9 changed files with 10 additions and 10 deletions
|
@ -10,7 +10,7 @@ const {
|
|||
} = Astro.props
|
||||
|
||||
// Icons
|
||||
import {CheckCircleSolid, XmarkCircleSolid} from 'iconoir-react'
|
||||
import {CheckCircleSolid, XmarkCircleSolid} from '@iconoir/vue'
|
||||
---
|
||||
|
||||
<div class="service">
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
const { Selected, Project, Search } = Astro.props
|
||||
import {ArrowDownCircle} from "iconoir-react"
|
||||
import {ArrowDownCircle} from "@iconoir/vue"
|
||||
---
|
||||
|
||||
<div class="mobile-docs-dropdown">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
import { Copyright } from "iconoir-react";
|
||||
import { Copyright } from "@iconoir/vue";
|
||||
---
|
||||
|
||||
<div class="footer">
|
||||
|
|
|
@ -29,7 +29,7 @@ export async function getStaticPaths() {
|
|||
export const prerender = true;
|
||||
|
||||
// Icons
|
||||
import { BookmarkBook, InputSearch, KeyCommand, ReportColumns, Search } from "iconoir-react";
|
||||
import { BookmarkBook, InputSearch, KeyCommand, ReportColumns, Search } from "@iconoir/vue";
|
||||
|
||||
// Hightlight Active Project
|
||||
if (ProjectCollection === 'minpluto') {
|
||||
|
|
|
@ -7,11 +7,11 @@ import Sidebar from "@components/docs/sidebar.astro";
|
|||
import SearchModal from '@components/docs/SearchBox.astro'
|
||||
|
||||
// Icons
|
||||
import { AppWindow, ChatBubbleEmpty, EyeClosed, InfoCircle, InputSearch, Linux, Mail, MailOpen, MediaVideoFolder, SendMail, ServerConnection, Terminal, WebWindowEnergyConsumption, Windows } from "iconoir-react";
|
||||
import { AppWindow, ChatBubbleEmpty, EyeClosed, InfoCircle, InputSearch, Linux, Mail, MailOpen, MediaVideoFolder, SendMail, ServerConnection, Terminal, WebWindowEnergyConsumption, Windows } from "@iconoir/vue";
|
||||
|
||||
// Get Content
|
||||
import { getCollection, getEntry } from "astro:content";
|
||||
import { OpenInBrowser } from "iconoir-react";
|
||||
import { OpenInBrowser } from "@iconoir/vue";
|
||||
|
||||
const { slug } = Astro.params;
|
||||
if (!slug) throw new Error("Slug not found");
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
// Icons
|
||||
import { Calendar } from "iconoir-react";
|
||||
import { Calendar } from "@iconoir/vue";
|
||||
|
||||
// Get Colletion and Slug
|
||||
import { getCollection, getEntry } from "astro:content";
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
import Document from '@layouts/Document.astro'
|
||||
|
||||
// Icons
|
||||
import {ServerConnection,PeaceHand} from "iconoir-react";
|
||||
import {ServerConnection,PeaceHand} from "@iconoir/vue";
|
||||
---
|
||||
|
||||
<Document ProjectCollection="minpluto">
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
import Document from '@layouts/Document.astro'
|
||||
|
||||
// Icons
|
||||
import {ServerConnection,PeaceHand, QuestionMark, WifiOff, DownloadCircle, ShieldAlert, ChatBubble} from "iconoir-react";
|
||||
import {ServerConnection,PeaceHand, QuestionMark, WifiOff, DownloadCircle, ShieldAlert, ChatBubble} from "@iconoir/vue";
|
||||
---
|
||||
|
||||
<Document ProjectCollection="penpot-desktop">
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
import Document from '@layouts/Document.astro'
|
||||
|
||||
// Icons
|
||||
import {ServerConnection,PeaceHand} from "iconoir-react";
|
||||
import {ServerConnection,PeaceHand} from "@iconoir/vue";
|
||||
---
|
||||
|
||||
<Document ProjectCollection="zorn">
|
||||
|
|
Loading…
Reference in a new issue