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 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const ListSearch = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function ListSearch(props, ref) {
return (
<Icon {...props} name="ListSearch">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path d="M2 6H10V4H2V6Z" fill="currentColor" />
<path d="M2 14H7.25V12H2V14Z" fill="currentColor" />
<path d="M2 18H10V16H2V18Z" fill="currentColor" />
<path d="M2 10H7.25V8H2V10Z" fill="currentColor" />
<path
fillRule="evenodd"
clipRule="evenodd"
d="M14 16C14.86 16 15.6694 15.7829 16.3761 15.4004L20.26 19.6727L21.7399 18.3273L17.911 14.1155C18.5926 13.261 19 12.1781 19 11C19 8.23858 16.7614 6 14 6C11.2386 6 9 8.23858 9 11C9 13.7614 11.2386 16 14 16ZM14 14C15.6569 14 17 12.6569 17 11C17 9.34315 15.6569 8 14 8C12.3431 8 11 9.34315 11 11C11 12.6569 12.3431 14 14 14Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
ListSearch.displayName = 'ListSearch'
export default ListSearch
|