mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-30 21:14:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			240 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			240 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
| <MkEmoji :emoji="reaction" :is-reaction="true" :normal="true" :no-style="noStyle"/>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts" setup>
 | |
| import { } from 'vue';
 | |
| 
 | |
| const props = defineProps<{
 | |
| 	reaction: string;
 | |
| 	noStyle?: boolean;
 | |
| }>();
 | |
| </script>
 |