mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-21 21:09:20 +01:00
17 lines
254 B
Vue
17 lines
254 B
Vue
<script setup>
|
|
import { Scan, User } from "lucide-vue-next";
|
|
</script>
|
|
|
|
<template>
|
|
<div class="app">
|
|
<Scan :size="48">
|
|
<User
|
|
:size="12"
|
|
x="6"
|
|
y="6"
|
|
absoluteStrokeWidth
|
|
/>
|
|
</Scan>
|
|
</div>
|
|
</template>
|