import { Avatar, Group, Text } from '@mantine/core'; interface smallServiceItem { label: string; icon?: string; url?: string; } export default function SmallServiceItem(props: any) { const { service }: { service: smallServiceItem } = props; // TODO : Use Next/link return ( {service.icon && } {service.label} ); }