import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const StoreLocationBm24: FC<ADSIcon>  = 
    ({fill, size = '1.5rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
  <path fill-rule="evenodd" d="M5.993 10.876C5.56 7.416 8.159 4 12.001 4c1.895 0 3.5.944 4.594 2.312 1.108 1.385 1.62 3.114 1.416 4.546-.095.664-.503 1.581-1.166 2.656-.647 1.05-1.477 2.152-2.306 3.165a55.165 55.165 0 0 1-2.563 2.907l-.287-.289a43.028 43.028 0 0 1-2.236-2.442c-.825-.977-1.649-2.058-2.292-3.122-.653-1.081-1.069-2.063-1.168-2.857Zm6.715 10.83L12.001 21l-.679.735-.002-.002-.004-.004-.016-.015-.058-.054-.215-.205a45.065 45.065 0 0 1-3.103-3.31c-.863-1.023-1.758-2.192-2.474-3.378-.707-1.169-1.29-2.437-1.442-3.643C3.441 6.584 6.843 2 12.001 2c2.605 0 4.75 1.306 6.156 3.063 1.392 1.74 2.13 4.01 1.834 6.079-.155 1.086-.748 2.294-1.444 3.422-.712 1.154-1.601 2.332-2.46 3.382a57.142 57.142 0 0 1-3.3 3.682l-.058.058-.015.015-.004.004-.002.002ZM12.001 21l.707.707a1 1 0 0 1-1.386.028l.679-.735ZM7.539 8.309A.5.5 0 0 1 8 8h8a.5.5 0 0 1 .353.854l-4 4a.5.5 0 0 1-.707 0l-4-4a.5.5 0 0 1-.108-.545Z"/>
</svg>
)
export default StoreLocationBm24