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

17 lines
325 B
Plaintext

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