21 lines
		
	
	
		
			349 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			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>
 |