UNPKG

sebikostudio-icons

Version:
14 lines (9 loc) 976 B
import React, { forwardRef } from 'react'; export const ConnectorIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "curve line, curve, connector, two circles, curved line, bezier curve, vector"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M5 4.5C13 4.5 7 15.5 15 15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M3.5 6C2.67157 6 2 5.32843 2 4.5C2 3.67157 2.67157 3 3.5 3C4.32843 3 5 3.67157 5 4.5C5 5.32843 4.32843 6 3.5 6Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M16.5 17C15.6716 17 15 16.3284 15 15.5C15 14.6716 15.6716 14 16.5 14C17.3284 14 18 14.6716 18 15.5C18 16.3284 17.3284 17 16.5 17Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default ConnectorIcon;