Skip to content

Commit 2c09660

Browse files
authored
Add Associations Icon in React (#247)
* Create ArrowsLeftRight.js * Change props to camelCase
1 parent f980592 commit 2c09660

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import * as React from "react";
2+
const SvgArrowsLeftRight = (props) => (
3+
<svg
4+
width="1em"
5+
height="1em"
6+
viewBox="0 0 32 32"
7+
fill="none"
8+
xmlns="http://www.w3.org/2000/svg"
9+
{...props}>
10+
<g
11+
clipPath="url(#a)"
12+
stroke="currentColor"
13+
strokeLinecap="round"
14+
strokeLinejoin="round"
15+
strokeWidth="2">
16+
<path
17+
d="m22 18 4 4-4 4"
18+
/>
19+
<path
20+
d="m6 22h20"
21+
/>
22+
<path
23+
d="m10 14-4-4 4-4"
24+
/>
25+
<path
26+
d="M26 10H6"
27+
/>
28+
</g>
29+
</svg>
30+
);
31+
export default SvgArrowsLeftRight;

0 commit comments

Comments
 (0)