
  // 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 PhoneIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="phone icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M7 1a2 2 0 0 0-2 2v18a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H7zm.5 3a.5.5 0 0 0-.5.5v14a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-14a.5.5 0 0 0-.5-.5h-9zM11 2.75a.25.25 0 0 1 .25-.25h1.5a.25.25 0 1 1 0 .5h-1.5a.25.25 0 0 1-.25-.25zM12 20a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  PhoneIcon.displayName = "PhoneIcon"
  PhoneIcon.colors = Icon.colors
  PhoneIcon.sizes = Icon.sizes

  export { PhoneIcon }
  