
  // 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 ClockIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="clock icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path d="M11.513 7h1a.5.5 0 0 1 .5.5v4.078l2.9 2.9a.5.5 0 0 1 0 .706l-.707.708a.5.5 0 0 1-.708 0l-3.485-3.486V7.5a.5.5 0 0 1 .5-.5zM2 12C2 6.486 6.486 2 12 2s10 4.486 10 10-4.486 10-10 10S2 17.514 2 12zm2 0c0 4.411 3.589 8 8 8s8-3.589 8-8-3.589-8-8-8-8 3.589-8 8z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  ClockIcon.displayName = "ClockIcon"
  ClockIcon.colors = Icon.colors
  ClockIcon.sizes = Icon.sizes

  export { ClockIcon }
  