You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
981 B
16 lines
981 B
2 years ago
|
import React from 'react';
|
||
|
import Icon from '@ant-design/icons';
|
||
|
|
||
2 years ago
|
const SVGIcon: React.FC<{ color?: string }> = ({ color = 'currentColor' }) => (
|
||
2 years ago
|
<svg viewBox="0 0 1024 1024" width="1em" height="1em" fill={color}>
|
||
2 years ago
|
<path d="M853.333 469.333A42.667 42.667 0 0 0 810.667 512v256A42.667 42.667 0 0 1 768 810.667H256A42.667 42.667 0 0 1 213.333 768V256A42.667 42.667 0 0 1 256 213.333h256A42.667 42.667 0 0 0 512 128H256a128 128 0 0 0-128 128v512a128 128 0 0 0 128 128h512a128 128 0 0 0 128-128V512a42.667 42.667 0 0 0-42.667-42.667z" />
|
||
|
<path d="M682.667 213.333h67.413L481.707 481.28a42.667 42.667 0 0 0 0 60.587 42.667 42.667 0 0 0 60.586 0L810.667 273.92v67.413A42.667 42.667 0 0 0 853.333 384 42.667 42.667 0 0 0 896 341.333V170.667A42.667 42.667 0 0 0 853.333 128H682.667a42.667 42.667 0 0 0 0 85.333z" />
|
||
|
</svg>
|
||
|
);
|
||
|
|
||
2 years ago
|
const ExternalLinkIcon: React.FC<{ className?: string }> = (props) => (
|
||
|
<Icon component={SVGIcon} {...props} />
|
||
|
);
|
||
2 years ago
|
|
||
|
export default ExternalLinkIcon;
|