
  // 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 LockFillIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="lock fill icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path fillRule="evenodd" clipRule="evenodd" d="M17 8v2h1a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-9a1 1 0 0 1 1-1h1V8c0-2.756 2.243-5 5-5s5 2.244 5 5zm-5-3c-1.654 0-3 1.346-3 3v2h6V8c0-1.654-1.346-3-3-3zm0 12a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  LockFillIcon.displayName = "LockFillIcon"
  LockFillIcon.colors = Icon.colors
  LockFillIcon.sizes = Icon.sizes

  export { LockFillIcon }
  