layui/.svn/pristine/58/5820d9a355eaa1cf3250af1ab73f5cf09fc8265a.svn-base
2022-12-09 16:41:41 +08:00

21 lines
353 B
Plaintext

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