/// import { IconProps } from './Icon'; interface ProjectLinkIconProps { type: string; } export default function ProjectLinkIcon({ type, ...iconProps }: IconProps & ProjectLinkIconProps): JSX.Element; export {};