'use client'; import { Image } from '@/ui/Image'; import { SidebarItem } from '@/ui/SidebarItem'; import { Text } from '@/ui/Text'; import { Surface } from '@/ui/Surface'; import React from 'react'; interface FriendItemProps { name: string; avatarUrl: string; country: string; } export function FriendItem({ name, avatarUrl, country }: FriendItemProps) { return ( {name} } > {name} {country} ); }