We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ec7d94c + a7e8cfb commit 464455dCopy full SHA for 464455d
forms-flow-components/src/components/SvgIcons/index.tsx
@@ -872,3 +872,28 @@ export const UpArrowIcon = ({ color = baseColor, ...props }) => (
872
/>
873
</svg>
874
);
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
892
+ d="M1 5L9 5"
893
894
895
896
897
898
+ </svg>
899
+);
0 commit comments