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

17 lines
328 B
Plaintext

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