import { memo } from "react" type SvgProps = React.ComponentPropsWithoutRef<"svg"> export const LinkIcon = memo(({ className, ...props }: SvgProps) => { return ( ) }) LinkIcon.displayName = "LinkIcon"