21 lines
349 B
Plaintext
21 lines
349 B
Plaintext
<script lang="ts">
|
|
export default {
|
|
name: "CodeCircleIcon",
|
|
};
|
|
</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-code-circle"
|
|
/>
|
|
</template>
|