
  // 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 DesktopIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="desktop icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M20.998 3H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h8v2H7.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h8.998a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5H13v-2h7.998a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zM4 5v11h16l-.002-11H4z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  DesktopIcon.displayName = "DesktopIcon"
  DesktopIcon.colors = Icon.colors
  DesktopIcon.sizes = Icon.sizes

  export { DesktopIcon }
  