
  // 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 ChatAltIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="chat icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M6.414 23.64A.25.25 0 0 1 6 23.451V18H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-8.1l-6.486 5.64zM8 16v3.61L12.152 16H20V4H4v12h4z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  ChatAltIcon.displayName = "ChatAltIcon"
  ChatAltIcon.colors = Icon.colors
  ChatAltIcon.sizes = Icon.sizes

  export { ChatAltIcon }
  