
  // 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 BrowseIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="browse icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M3 9h18a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V10a1 1 0 0 1 1-1zm1 2v8h16v-8H4zm1-5h14a1 1 0 0 1 1 1v1H4V7a1 1 0 0 1 1-1zm3-3h8a1 1 0 0 1 1 1v1H7V4a1 1 0 0 1 1-1z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  BrowseIcon.displayName = "BrowseIcon"
  BrowseIcon.colors = Icon.colors
  BrowseIcon.sizes = Icon.sizes

  export { BrowseIcon }
  