"use client"; import { Icon } from "@calcom/ui"; import type { IconName } from "@calcom/ui"; export const IconGrid = (props: { title: string; icons: IconName[]; rootClassName?: string; iconClassName?: string; }) => (

{props.title}

{props.icons.map((icon) => { return (
{icon}
); })}
);