mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-23 13:59:22 +01:00
21 lines
338 B
Vue
21 lines
338 B
Vue
<script setup lang="ts">
|
|
import { setLucideProps } from '../src/context';
|
|
import { House } from '../src/lucide-vue';
|
|
|
|
const props = defineProps<{
|
|
size?: number;
|
|
color?: string;
|
|
strokeWidth?: number;
|
|
}>();
|
|
|
|
setLucideProps({
|
|
size: 48,
|
|
color: 'red',
|
|
strokeWidth: 4,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<House v-bind="props"/>
|
|
</template>
|