♻️ Move from .vue files to Lucide for icons

This commit is contained in:
2023-06-04 00:08:30 +02:00
parent 7b04760a7d
commit 1ad6fc5e3a
18 changed files with 27 additions and 204 deletions

View File

@ -1,6 +1,6 @@
<script setup>
import { ref } from "vue";
import clipboardCopyIcon from "../components/icons/clipboard-copy-icon.vue";
import { ClipboardCopyIcon } from "lucide-vue-next";
const password = ref("");
const token = ref("");
@ -49,7 +49,7 @@ function copy() {
ref="token_element"
v-bind:value="token.token"
/>
<clipboardCopyIcon />
<ClipboardCopyIcon />
</div>
</div>
</template>