layui/.svn/pristine/8d/8d68691c716d7eb1b9a9240e5d20d13f2aca18f9.svn-base
2022-12-09 16:41:41 +08:00

17 lines
322 B
Plaintext

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