layui/.svn/pristine/43/43989e03e1a79e2a7296fd98b7b977b679616fbb.svn-base
2022-12-09 16:41:41 +08:00

17 lines
324 B
Plaintext

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