layui/.svn/pristine/63/63354cf936c405f5ec2c940396dce47f9c8d8709.svn-base
2022-12-09 16:41:41 +08:00

17 lines
322 B
Plaintext

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