UNPKG

sebikostudio-icons

Version:
13 lines (8 loc) 835 B
import React, { forwardRef } from 'react'; export const OpeninNewWindowIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "open in new window, new window, box in, arrow up right, open, open in"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> <path d="M12.5 16.5H15.5C16.0523 16.5 16.5 16.0523 16.5 15.5V4.5C16.5 3.94771 16.0523 3.5 15.5 3.5H4.50002C3.94774 3.5 3.50003 3.94771 3.50002 4.5L3.5 7.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M12.5 7.5L12.5 12.5M12.5 7.5H7.49997M12.5 7.5L3.5 16.4998" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default OpeninNewWindowIcon;