
  // This file is generated by running the "icons" bin script.
  // Manual changes might be lost - proceed with caution!
  
  import React, { forwardRef } from 'react'
  import Icon, { IconComponent } from '..'
  
  
  const WindowIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="window icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M18 2.975a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-12zm1 7v-2h4a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-4h2v3h13.997l.002-6H19v-2h3v-2h-3zm-3-4h-6v-2h6v2zm-10-2v2h2v-2H6zm-2 2H2v-2h2v2zm-2 2v6h13.997l.002-6H2z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  WindowIcon.displayName = "WindowIcon"
  WindowIcon.colors = Icon.colors
  WindowIcon.sizes = Icon.sizes

  export { WindowIcon }
  