import { Image } from '@/ui/Image'; import { Box } from '@/ui/primitives/Box'; import { Surface } from '@/ui/primitives/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} ); }