Skip to content

Commit 464455d

Browse files
authored
Merge pull request #518 from AOT-Technologies/Feature/FWF-4344-ConnectIcon
FWF-4344:[Feature]-Connect Icon Added
2 parents ec7d94c + a7e8cfb commit 464455d

File tree

1 file changed

+25
-0
lines changed
  • forms-flow-components/src/components/SvgIcons

1 file changed

+25
-0
lines changed

forms-flow-components/src/components/SvgIcons/index.tsx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -872,3 +872,28 @@ export const UpArrowIcon = ({ color = baseColor, ...props }) => (
872872
/>
873873
</svg>
874874
);
875+
876+
export const ConnectIcon = ({ color = baseColor, ...props }) => (
877+
<svg
878+
width="10"
879+
height="10"
880+
viewBox="0 0 10 10"
881+
fill= {color}
882+
xmlns="http://www.w3.org/2000/svg"
883+
>
884+
<path
885+
d="M5 1L5 9"
886+
stroke= {color}
887+
strokeWidth="2"
888+
strokeLinecap="round"
889+
strokeLinejoin="round"
890+
/>
891+
<path
892+
d="M1 5L9 5"
893+
stroke= {color}
894+
strokeWidth="2"
895+
strokeLinecap="round"
896+
strokeLinejoin="round"
897+
/>
898+
</svg>
899+
);

0 commit comments

Comments
 (0)