Implement gender icon renderbox for vue components

This commit is contained in:
2024-10-01 12:15:31 +02:00
parent 2eb686ffdb
commit 37cfc035a3
2 changed files with 15 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
<template>
<i :class="gender.icon"></i>
</template>
<script setup>
const props = defineProps({
gender: Object
})
</script>