All files / src/icons Search.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    1x 1x   1x                                                 1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const Search = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Search(props, ref) {
  return (
    <Icon {...props} name="Search">
      <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="M16.2554 14.1341C17.0406 12.9483 17.498 11.526 17.498 9.99805C17.498 5.85591 14.1402 2.49805 9.99805 2.49805C5.85591 2.49805 2.49805 5.85591 2.49805 9.99805C2.49805 14.1402 5.85591 17.498 9.99805 17.498C11.526 17.498 12.9483 17.0406 14.1341 16.2554L19.5878 21.7091L21.7091 19.5878L16.2554 14.1341ZM9.99805 14.498C12.4833 14.498 14.498 12.4833 14.498 9.99805C14.498 7.51277 12.4833 5.49805 9.99805 5.49805C7.51277 5.49805 5.49805 7.51277 5.49805 9.99805C5.49805 12.4833 7.51277 14.498 9.99805 14.498Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Search.displayName = 'Search'
 
export default Search