
  // 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 SocialFacebookIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="social facebook icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M19 4h-2.5C14.57 4 13 5.56 13 7.5V10h-2v3h2v7h3v-7h3v-3h-3V8a1 1 0 0 1 1-1h2V4zm2-2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h18z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  SocialFacebookIcon.displayName = "SocialFacebookIcon"
  SocialFacebookIcon.colors = Icon.colors
  SocialFacebookIcon.sizes = Icon.sizes

  export { SocialFacebookIcon }
  