layui/.svn/pristine/17/176712c36b13b8f791e469cef7a15aa19f5b18c9.svn-base
2022-12-09 16:41:41 +08:00

21 lines
349 B
Plaintext

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