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

17 lines
326 B
Plaintext

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