1 import { toNoteList } from '@/lib/link' 2 import { SecondaryPageLink } from '@/PageManager' 3 4 export function EmbeddedHashtag({ hashtag }: { hashtag: string }) { 5 return ( 6 <SecondaryPageLink 7 className="text-primary hover:underline" 8 to={toNoteList({ hashtag: hashtag.replace('#', '') })} 9 onClick={(e) => e.stopPropagation()} 10 > 11 {hashtag} 12 </SecondaryPageLink> 13 ) 14 } 15