
  // 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 PlayCircleFilledIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="play circle filled icon" viewBox="0 0 20 20"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path clipRule="evenodd" d="M0 10C0 4.48 4.48 0 10 0s10 4.48 10 10-4.48 10-10 10S0 15.52 0 10zm8.389 3.74 5.299-3.532a.25.25 0 0 0 0-.416l-5.3-3.533A.25.25 0 0 0 8 6.467v7.066a.25.25 0 0 0 .389.208z" fillRule="evenodd"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  PlayCircleFilledIcon.displayName = "PlayCircleFilledIcon"
  PlayCircleFilledIcon.colors = Icon.colors
  PlayCircleFilledIcon.sizes = Icon.sizes

  export { PlayCircleFilledIcon }
  