Prefer icons from modrinth/assets (#3394)

Replaced all icon usages of `apps/frontend/src/assets/image/utils` for `@modrinth/assets`.

The only icon which has been changed is the `WorldIcon`, which has been replaced by the `GlobeIcon`.
This commit is contained in:
Erb3
2025-03-19 02:28:23 +01:00
committed by GitHub
parent a19bf3dc0e
commit c4b60f1720
142 changed files with 373 additions and 661 deletions

View File

@@ -21,7 +21,7 @@
</div>
<div class="button-group">
<button class="iconified-button" @click="cancel">
<CrossIcon />
<XIcon />
Cancel
</button>
<button class="iconified-button danger-button" :disabled="action_disabled" @click="proceed">
@@ -35,13 +35,12 @@
<script>
import { renderString } from "@modrinth/utils";
import CrossIcon from "~/assets/images/utils/x.svg?component";
import TrashIcon from "~/assets/images/utils/trash.svg?component";
import { TrashIcon, XIcon } from "@modrinth/assets";
import Modal from "~/components/ui/Modal.vue";
export default {
components: {
CrossIcon,
XIcon,
TrashIcon,
Modal,
},