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