-
-
Notifications
You must be signed in to change notification settings - Fork 539
Expand file tree
/
Copy pathIconLink.tsx
More file actions
24 lines (22 loc) · 660 Bytes
/
IconLink.tsx
File metadata and controls
24 lines (22 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*/
import {memo} from 'react';
import type {SVGProps} from 'react';
export const IconLink = memo<SVGProps<SVGSVGElement>>(function IconLink(props) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1.33em"
height="1.33em"
viewBox="0 -2 24 24"
fill="currentColor"
{...props}>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M13.19 8.688a4.5 4.5 0 011.242 7.244l-4.5 4.5a4.5 4.5 0 01-6.364-6.364l1.757-1.757m13.35-.622l1.757-1.757a4.5 4.5 0 00-6.364-6.364l-4.5 4.5a4.5 4.5 0 001.242 7.244"
/>
</svg>
);
});