import React from 'react';
import Icon from '@ant-design/icons';
interface ExternalIconProps {
className?: string;
color?: string;
}
const SVGIcon: React.FC<{ color?: string }> = ({ color = 'currentColor' }) => (
);
const ExternalLinkIcon = React.forwardRef((props, ref) => (
} ref={ref} {...props} />
));
export default ExternalLinkIcon;