
  // 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 ChatFilledIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="chat filled icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M6 23.451c0 .215.252.33.414.189L12.9 18H21a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h3v5.451zM18 7H6v2h12V7zM6 11h10v2H6v-2z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  ChatFilledIcon.displayName = "ChatFilledIcon"
  ChatFilledIcon.colors = Icon.colors
  ChatFilledIcon.sizes = Icon.sizes

  export { ChatFilledIcon }
  