l-Icon.vue
355 字节
<script setup lang="ts">
import {IconPark, IIconAllProps} from "@icon-park/vue-next/lib/all";
const props = defineProps<IIconAllProps>()
</script>
<template>
<IconPark class="l-icon anticon" v-bind="props" :key="props.type"/>
</template>
<style scoped>
.l-icon {
display: inline-flex;
align-items: center;
justify-content: center;
}
</style>