mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-20 09:19:21 +01:00
11 lines
169 B
Vue
11 lines
169 B
Vue
|
|
<script setup>
|
||
|
|
import { ThumbsUp } from "lucide-vue-next";
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<button :style="{ color: '#fff' }">
|
||
|
|
<ThumbsUp />
|
||
|
|
Like
|
||
|
|
</button>
|
||
|
|
</template>
|