17 lines
		
	
	
		
			328 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			328 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
<script lang="ts">
 | 
						|
export default {
 | 
						|
  name: "DiamondIcon",
 | 
						|
};
 | 
						|
</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-diamond" />
 | 
						|
</template>
 |