layui/.svn/pristine/7b/7be09f68f77ddc442facd424e5c993f432239f31.svn-base
2022-12-09 16:41:41 +08:00

21 lines
346 B
Plaintext

<script lang="ts">
export default {
name: "ComponentIcon",
};
</script>
<script setup lang="ts">
import LayIcon from "../component/icon/index";
const props = defineProps<{
color?: string;
size?: string;
}>();
</script>
<template>
<lay-icon
:color="props.color"
:size="props.size"
type="layui-icon-component"
/>
</template>