UNPKG

sebikostudio-icons

Version:
15 lines (10 loc) 854 B
import React, { forwardRef } from 'react'; export const ExitFullScreenIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "exit full screen, full screen, exit, screen, corners, target"} 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.5V12.5H16.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M7.5 16.5V12.5H3.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M12.5 3.5V7.5H16.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M7.5 3.5V7.5H3.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default ExitFullScreenIcon;