layui/.svn/pristine/18/1882a6bb4bc65936c687eee5b48f68091c80bbfa.svn-base
2022-12-09 16:41:41 +08:00

21 lines
347 B
Plaintext

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