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

21 lines
351 B
Plaintext

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