import { Box } from '@/ui/Box'; import { Image } from '@/ui/Image'; import { Surface } from '@/ui/Surface'; import { Text } from '@/ui/Text'; interface FriendItemProps { name: string; avatarUrl: string; country: string; } export function FriendItem({ name, avatarUrl, country }: FriendItemProps) { return ( {name} {name} {country} ); }