All files / src/icons Siren.tsx

83.33% Statements 5/6
100% Branches 0/0
0% Functions 0/1
83.33% Lines 5/6

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 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78    1x 1x   1x                                                                                                                                         1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const Siren = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Siren(props, ref) {
  return (
    <Icon {...props} name="Siren">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M12.1045 2.5V4.5H11.1045V2.5H12.1045Z"
          fill="currentColor"
        />
        <path
          d="M4.10449 21.5C4.10449 20.3954 4.99992 19.5 6.10449 19.5H18.1045C19.2091 19.5 20.1045 20.3954 20.1045 21.5H4.10449Z"
          fill="currentColor"
        />
        <path
          d="M9.93506 6.5C8.38345 6.5 7.08786 7.68315 6.94738 9.22839L6.10451 18.5H11.109C11.106 18.4686 11.1045 18.4368 11.1045 18.4047V12.5169C11.1045 11.9646 11.5522 11.5169 12.1045 11.5169C12.6568 11.5169 13.1045 11.9646 13.1045 12.5169V18.4047C13.1045 18.4368 13.103 18.4686 13.1 18.5H18.1045L17.2616 9.22839C17.1212 7.68316 15.8256 6.5 14.274 6.5H9.93506Z"
          fill="currentColor"
        />
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M2.63574 14.5944H4.63574V13.5944H2.63574V14.5944Z"
          fill="currentColor"
        />
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M21.3642 14.5944H19.3642V13.5944H21.3642V14.5944Z"
          fill="currentColor"
        />
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M2.9505 9.38946L4.86737 9.96008L5.15268 9.00165L3.23581 8.43103L2.9505 9.38946Z"
          fill="currentColor"
        />
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M21.0495 9.3894L19.1326 9.96002L18.8473 9.00159L20.7642 8.43097L21.0495 9.3894Z"
          fill="currentColor"
        />
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M5.24291 4.22056L6.65712 5.63478L7.36423 4.92767L5.95001 3.51346L5.24291 4.22056Z"
          fill="currentColor"
        />
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M18.7571 4.22051L17.3428 5.63472L16.6357 4.92761L18.05 3.5134L18.7571 4.22051Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Siren.displayName = 'Siren'
 
export default Siren