xref: /expo/docs/components/icons/Permalink.tsx (revision 33643b60)
1import * as React from 'react';
2
3const PermaLink = () => (
4  <svg
5    aria-label="permalink"
6    className="anchor-icon"
7    width="24"
8    height="24"
9    viewBox="0 0 24 24"
10    fill="none"
11    xmlns="http://www.w3.org/2000/svg">
12    <path
13      d="M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71"
14      stroke="#9B9B9B"
15      strokeWidth="2"
16      strokeLinecap="round"
17      strokeLinejoin="round"
18    />
19    <path
20      d="M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71"
21      stroke="#9B9B9B"
22      strokeWidth="2"
23      strokeLinecap="round"
24      strokeLinejoin="round"
25    />
26  </svg>
27);
28
29export default PermaLink;
30