mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			505 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			505 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <base-icon :size="size" :icon="icon" :type="type" :icons="icons" />
 | 
						|
</template>
 | 
						|
<script>
 | 
						|
import BaseIcon from './Icon';
 | 
						|
import icons from './icons.json';
 | 
						|
 | 
						|
export default {
 | 
						|
  name: 'FluentIcon',
 | 
						|
  components: {
 | 
						|
    BaseIcon,
 | 
						|
  },
 | 
						|
  props: {
 | 
						|
    icon: {
 | 
						|
      type: String,
 | 
						|
      required: true,
 | 
						|
    },
 | 
						|
    size: {
 | 
						|
      type: [String, Number],
 | 
						|
      default: '20',
 | 
						|
    },
 | 
						|
    type: {
 | 
						|
      type: String,
 | 
						|
      default: 'outline',
 | 
						|
    },
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return { icons };
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |