UNPKG

sebikostudio-icons

Version:
14 lines (9 loc) 994 B
import React, { forwardRef } from 'react'; export const RetentionIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "retention, user retention, user, user circle arrow, arrow"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M2 2.5H6.25C6.38807 2.5 6.5 2.61193 6.5 2.75V6.5M6.5 2.65C3.58702 3.67959 1.5 6.73445 1.5 10C1.5 13.6284 4.07664 16.6551 7.5 17.35" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M16 6C16 7.65685 14.6569 9 13 9C11.3431 9 10 7.65685 10 6C10 4.34315 11.3431 3 13 3C14.6569 3 16 4.34315 16 6Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M7.5 14.5C7.5 13 9 11.5 11 11.5H15C17 11.5 18.5 13 18.5 14.5V17.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default RetentionIcon;