import type { Icon } from "@/types/icons" import { IconCard } from "./icon-card" interface IconsGridProps { filteredIcons: { name: string; data: Icon }[] matchedAliases: Record } export function IconsGrid({ filteredIcons, matchedAliases }: IconsGridProps) { return (
{filteredIcons.slice(0, 120).map(({ name, data }) => ( ))}
) }