import { TechnologyIcon } from '@nx/graph/ui-icons'; import { HTMLProps } from 'react'; export interface TargetTechnologiesProps extends HTMLProps { technologies?: string[]; showTooltip?: boolean; } export function TargetTechnologies({ technologies, showTooltip, ...props }: TargetTechnologiesProps) { if (!technologies || technologies.length === 0) { return null; } return (
{technologies.map((technology, index) => ( ))}
); }