import React from 'react'

const FingerprintIcon: React.FC<React.SVGProps<SVGSVGElement>> = props => (
  <svg
    width={24}
    height={24}
    viewBox="0 0 24 24"
    fill="currentColor"
    xmlns="http://www.w3.org/2000/svg"
    {...props}
  >
    <path d="M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2-.13-.24-.04-.55.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67-.09.18-.26.28-.44.28zM3.5 9.72c-.1 0-.2-.03-.29-.09-.23-.16-.28-.47-.12-.7.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25.16.22.11.54-.12.7-.23.16-.54.11-.7-.12-.9-1.26-2.04-2.25-3.39-2.94-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07c-.13 0-.26-.05-.35-.15-.87-.87-1.34-2.43-2.01-4.25-.67-1.83-1.34-2.16-2.32-2.07-.19.02-.37-.13-.4-.32-.04-.19.13-.37.32-.4 1.22-.12 2.17.64 2.84 2.47.67 1.83 1.13 3.21 2 4.08.2.2.2.51 0 .71-.1.1-.22.15-.35.15zm1.75.25c-.23 0-.42-.09-.56-.23-.87-.87-1.69-2.07-2.46-3.58-.77-1.51-1.66-2.73-2.8-3.85-.22-.22-.22-.58 0-.8.22-.22.58-.22.8 0 1.36 1.36 2.35 2.75 3.17 4.35.82 1.6 1.52 2.64 2.39 3.51.2.2.2.51 0 .71-.1.1-.22.15-.35.15z" />
  </svg>
)

export default FingerprintIcon
