UNPKG

sebikostudio-icons

Version:
18 lines (13 loc) 1.33 kB
import React, { forwardRef } from 'react'; export const LinkBreak2Icon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "link break, unlink"} 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"/> <path d="M6.5 1.5V4.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M13.5 18.5V15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M1.5 6.5H4.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M18.5 13.5H15.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M2 2L4 4" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M18 18L16 16" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default LinkBreak2Icon;