All files / src/components/svg IconLocations.tsx

50% Statements 1/2
0% Branches 0/2
0% Functions 0/1
50% Lines 1/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16              2x                
import * as React from 'react';
import { SVGProps } from 'react';
interface SVGRProps {
  title?: string;
  titleId?: string;
}
 
const SvgIconLocations = ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => (
  <svg viewBox='0 0 12 13' xmlns='http://www.w3.org/2000/svg' aria-labelledby={titleId} {...props}>
    {title ? <title id={titleId}>{title}</title> : null}
    <path d='M5.99974 0C3.79652 0 1.99974 1.79678 1.99974 4C1.99974 4.98569 2.58426 6.08205 3.24713 7.17187C3.91 8.2617 4.68276 9.2988 5.16054 9.91471C5.578 10.4526 6.42147 10.4526 6.83893 9.91471C7.31671 9.2988 8.08947 8.2617 8.75234 7.17187C9.41521 6.08205 9.99974 4.98569 9.99974 4C9.99974 1.79678 8.20296 0 5.99974 0ZM5.99974 1C7.66252 1 8.99974 2.33722 8.99974 4C8.99974 4.51664 8.52716 5.61717 7.89752 6.65234C7.26789 7.68752 6.51278 8.70366 6.04857 9.30208C6.01536 9.34487 5.98412 9.34487 5.95091 9.30208C5.48669 8.70366 4.73158 7.68752 4.10195 6.65234C3.47232 5.61717 2.99974 4.51664 2.99974 4C2.99974 2.33722 4.33696 1 5.99974 1ZM5.99974 3C5.73452 3 5.48017 3.10536 5.29263 3.29289C5.10509 3.48043 4.99974 3.73478 4.99974 4C4.99974 4.26522 5.10509 4.51957 5.29263 4.70711C5.48017 4.89464 5.73452 5 5.99974 5C6.26495 5 6.51931 4.89464 6.70684 4.70711C6.89438 4.51957 6.99974 4.26522 6.99974 4C6.99974 3.73478 6.89438 3.48043 6.70684 3.29289C6.51931 3.10536 6.26495 3 5.99974 3ZM1.90794 8.33333C1.44727 8.33333 1.0282 8.60537 0.841535 9.02604L0.1013 10.6927C-0.0596996 11.055 -0.02746 11.4697 0.18854 11.8021C0.404873 12.1347 0.770722 12.3333 1.16706 12.3333H10.8318C11.2281 12.3333 11.5943 12.1347 11.8103 11.8021C12.0266 11.4697 12.0592 11.0554 11.8982 10.6927L11.1579 9.02604C10.9709 8.60537 10.5525 8.33333 10.0915 8.33333H9.00625C8.79391 8.655 8.56351 8.988 8.31484 9.33333H10.0915C10.1572 9.33333 10.2172 9.37196 10.2439 9.43229L10.9841 11.099C11.0161 11.171 10.9904 11.2295 10.9717 11.2578C10.9531 11.2861 10.9111 11.3333 10.8324 11.3333H1.16706C1.08839 11.3333 1.04541 11.2855 1.02708 11.2572C1.00875 11.2288 0.983045 11.171 1.01471 11.099L1.7556 9.43229C1.78226 9.37229 1.84227 9.33333 1.90794 9.33333H3.68398C3.43498 8.988 3.20523 8.655 2.99323 8.33333H1.90794Z' />
  </svg>
);
 
export default SvgIconLocations;