layui/.svn/pristine/b2/b28e33ac37a80a30cba896a7104ee516ee7585ef.svn-base
2022-12-09 16:41:41 +08:00

17 lines
320 B
Plaintext

<script lang="ts">
export default {
name: "SetIcon",
};
</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-set" />
</template>