UNPKG

sebikostudio-icons

Version:
16 lines (11 loc) 1.33 kB
import React, { forwardRef } from 'react'; export const HandShakeIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "hand, grab, hand shake, shake, trust, deal, agreeing , agree, support"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M15.5 6.50007L11.8936 5.29795C11.3277 5.1093 10.707 5.18315 10.2012 5.49932L7.94243 6.91103C7.40806 7.24501 7.21519 7.93051 7.497 8.49414C7.78129 9.06272 8.45396 9.31847 9.04419 9.08238L10.5 8.50007L12.4125 11.5601C12.7779 12.1448 13.4189 12.5001 14.1085 12.5001H15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M18.5 6.5V13.5H15.5V6.5H18.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M4.5 6.5V13.5H1.5V6.5H4.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M4.5 7.5H7.25" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M13.5 12.5L12.0858 13.9142C11.7107 14.2893 11.202 14.5 10.6716 14.5H8.82456C8.60959 14.5 8.39603 14.4653 8.1921 14.3974L5.5 13.5H4.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default HandShakeIcon;