| 
									
										
										
										
											2022-11-25 08:21:53 +00:00
										 |  |  | <script setup lang="ts"> | 
					
						
							|  |  |  | import type { Account } from 'masto' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | defineProps<{ | 
					
						
							|  |  |  |   account: Account | 
					
						
							|  |  |  | }>() | 
					
						
							|  |  |  | </script> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <template> | 
					
						
							| 
									
										
										
										
											2022-11-28 20:42:17 +00:00
										 |  |  |   <div flex="~ col gap2" rounded min-w-90 max-w-120 z-100 overflow-hidden p-4> | 
					
						
							| 
									
										
										
										
											2022-11-28 09:51:15 +00:00
										 |  |  |     <div flex="~ gap2" items-center> | 
					
						
							| 
									
										
										
										
											2022-11-30 17:15:18 +00:00
										 |  |  |       <NuxtLink :to="getAccountRoute(account)" flex-auto rounded-full hover:bg-active transition-100 pr5 mr-a> | 
					
						
							| 
									
										
										
										
											2022-11-28 09:51:15 +00:00
										 |  |  |         <AccountInfo :account="account" /> | 
					
						
							| 
									
										
										
										
											2022-11-25 08:21:53 +00:00
										 |  |  |       </NuxtLink> | 
					
						
							| 
									
										
										
										
											2022-11-28 09:51:15 +00:00
										 |  |  |       <AccountFollowButton text-sm :account="account" /> | 
					
						
							| 
									
										
										
										
											2022-11-25 08:21:53 +00:00
										 |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2022-11-26 20:41:18 +00:00
										 |  |  |     <ContentRich text-4 text-secondary :content="account.note" :emojis="account.emojis" /> | 
					
						
							| 
									
										
										
										
											2022-11-28 09:51:15 +00:00
										 |  |  |     <AccountPostsFollowers text-sm :account="account" /> | 
					
						
							| 
									
										
										
										
											2022-11-25 08:21:53 +00:00
										 |  |  |   </div> | 
					
						
							|  |  |  | </template> |