
  // 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 PauseIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="pause icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M14.5 19h3a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5zm-4.5-.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v13z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  PauseIcon.displayName = "PauseIcon"
  PauseIcon.colors = Icon.colors
  PauseIcon.sizes = Icon.sizes

  export { PauseIcon }
  