
  // 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 PaperclipIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="paperclip icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M10 3a3 3 0 0 0-3 3v10a5 5 0 0 0 10 0V7.25a.25.25 0 0 1 .25-.25h1.5a.25.25 0 0 1 .25.25V16a7 7 0 1 1-14 0V6a5 5 0 0 1 10 0v9a3 3 0 1 1-6 0V7.25A.25.25 0 0 1 9.25 7h1.5a.25.25 0 0 1 .25.25V15a1 1 0 1 0 2 0V6a3 3 0 0 0-3-3z" fillOpacity=".95"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  PaperclipIcon.displayName = "PaperclipIcon"
  PaperclipIcon.colors = Icon.colors
  PaperclipIcon.sizes = Icon.sizes

  export { PaperclipIcon }
  