UNPKG

sebikostudio-icons

Version:
12 lines (7 loc) 796 B
import React, { forwardRef } from 'react'; export const Link2NoneIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "link none, link, hyperlink, chain, url"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M14.5001 10.5002L16.3846 8.61568C17.8416 7.15861 17.9572 4.95719 16.5001 3.50012C15.0431 2.04305 12.8416 2.15857 11.3846 3.61564L9.5001 5.50011M5.50007 9.50006L3.6156 11.3845C2.15853 12.8416 2.04289 15.0431 3.49996 16.5002C4.95703 17.9572 7.15856 17.8416 8.61563 16.3845L10.5001 14.5001" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default Link2NoneIcon;