redbadger/website-honestly

View on GitHub
site/components/icons/map-pin.js

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
// @flow

import React from 'react';

export default function MapPin({ ...props }: {}) {
  return (
    <svg viewBox="0 0 26 35" xmlns="http://www.w3.org/2000/svg" {...props}>
      <path
        d="M12.6 0c3.465 0 6.431 1.198 8.899 3.594C23.966 5.99 25.2 8.88 25.2 12.266c0 2.708-1.05 5.963-3.15 9.765-2.1 3.802-4.2 6.927-6.3 9.375L12.6 35a24.796 24.796 0 0 1-1.378-1.523c-.551-.651-1.549-1.914-2.993-3.79A67.352 67.352 0 0 1 4.41 24.22c-1.103-1.771-2.113-3.776-3.032-6.016S0 13.984 0 12.266C0 8.88 1.234 5.99 3.701 3.594 6.17 1.198 9.135 0 12.6 0zm0 16.64c1.26 0 2.323-.43 3.19-1.288.866-.86 1.299-1.888 1.299-3.086s-.433-2.227-1.3-3.086c-.866-.86-1.929-1.29-3.189-1.29s-2.323.43-3.19 1.29c-.866.86-1.299 1.888-1.299 3.086s.433 2.226 1.3 3.086c.866.859 1.929 1.289 3.189 1.289z"
        fill="#FC1D42"
        fillRule="evenodd"
      />
    </svg>
  );
}