
  // 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 PlayCircleIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="play circle icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3.688-7.792-5.3 3.533a.25.25 0 0 1-.388-.208V8.467a.25.25 0 0 1 .389-.208l5.299 3.533a.25.25 0 0 1 0 .416z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  PlayCircleIcon.displayName = "PlayCircleIcon"
  PlayCircleIcon.colors = Icon.colors
  PlayCircleIcon.sizes = Icon.sizes

  export { PlayCircleIcon }
  