mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-21 04:09:21 +01:00
20 lines
317 B
Vue
20 lines
317 B
Vue
<script setup>
|
|
import { File } from "lucide-vue-next";
|
|
</script>
|
|
|
|
<template>
|
|
<div class="app">
|
|
<File :size="48">
|
|
<text
|
|
x="7.5"
|
|
y="19"
|
|
font-size="8"
|
|
font-family="Verdana,sans-serif"
|
|
:stroke-width="1"
|
|
>
|
|
JS
|
|
</text>
|
|
</File>
|
|
</div>
|
|
</template>
|