All files / src/icons Calendar.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    1x 1x   1x                                                             1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const Calendar = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Calendar(props, ref) {
  return (
    <Icon {...props} name="Calendar">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path d="M5.89429 11H8.72727V13.75H5.89429V11Z" fill="currentColor" />
        <path d="M8.72727 15H6V17.75H8.72727V15Z" fill="currentColor" />
        <path d="M13.3636 11H10.5307V13.75H13.3636V11Z" fill="currentColor" />
        <path d="M13.3636 15H10.5307V17.75H13.3636V15Z" fill="currentColor" />
        <path d="M18 11H15.167V13.75H18V11Z" fill="currentColor" />
        <path d="M18 15H15.167V17.75H18V15Z" fill="currentColor" />
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M6 2.5C6 2.22386 6.22386 2 6.5 2H9C9.27614 2 9.5 2.22386 9.5 2.5V4H14.5V2.5C14.5 2.22386 14.7239 2 15 2H17.5C17.7761 2 18 2.22386 18 2.5V4H21C21.5523 4 22 4.44772 22 5V21C22 21.5523 21.5523 22 21 22H3C2.44772 22 2 21.5523 2 21V5C2 4.44772 2.44772 4 3 4H6V2.5ZM19.5 9.25H4.5V19.5H19.5V9.25Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Calendar.displayName = 'Calendar'
 
export default Calendar