import { pathForLens } from '@/app/paths'; import { Lens, formatLensText } from '.'; import EntityLink, { EntityLinkExternalProps, } from '@/components/primitives/EntityLink'; import { TbCone } from 'react-icons/tb'; export default function PhotoLens({ lens, type, badged, contrast, prefetch, countOnHover, className, }: { lens: Lens hideAppleIcon?: boolean countOnHover?: number } & EntityLinkExternalProps) { return ( } type={type} className={className} badged={badged} contrast={contrast} prefetch={prefetch} hoverEntity={countOnHover} /> ); }