All files / src/components/svg Site.tsx

0% Statements 0/2
0% Branches 0/2
0% Functions 0/1
0% Lines 0/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                           
import * as React from 'react';
import { SVGProps } from 'react';
interface SVGRProps {
  title?: string;
  titleId?: string;
}
const SvgSite = ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => (
  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' aria-labelledby={titleId} {...props}>
    {title ? <title id={titleId}>{title}</title> : null}
    <path d='M9.271 4a.75.75 0 0 0-.462.144l-5.5 4A.75.75 0 0 0 3 8.75v10.5a.75.75 0 0 0 1.191.606l5.059-3.678 5.059 3.678a.75.75 0 0 0 .882 0l5.5-4A.75.75 0 0 0 21 15.25V4.75a.75.75 0 0 0-1.191-.606L14.75 7.822 9.691 4.144A.75.75 0 0 0 9.271 4M9.25 5.678l5.059 3.678a.75.75 0 0 0 .882 0L19.5 6.223v8.645l-4.75 3.454-5.059-3.678a.75.75 0 0 0-.882 0L4.5 17.777V9.132zm-.507 3.311a.75.75 0 0 0-.523.23l-.47.47-.47-.47a.75.75 0 1 0-1.06 1.061l.47.47-.47.47a.75.75 0 1 0 1.06 1.06l.47-.47.47.47a.751.751 0 0 0 1.23-.817.8.8 0 0 0-.17-.243l-.47-.47.47-.47a.75.75 0 0 0-.537-1.29m9.007.511a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-6.5.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m2 1.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m3 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-1.5 2a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5' />
  </svg>
);
export default SvgSite;