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