| 1 |
import { memo } from '@wordpress/element' |
| 2 |
|
| 3 |
const SearchIcon = (props) => { |
| 4 |
const { className, ...otherProps } = props |
| 5 |
|
| 6 |
return ( |
| 7 |
<svg |
| 8 |
className={className} |
| 9 |
width="24" |
| 10 |
height="24" |
| 11 |
viewBox="0 0 24 24" |
| 12 |
fill="none" |
| 13 |
xmlns="http://www.w3.org/2000/svg" |
| 14 |
{...otherProps}> |
| 15 |
<path |
| 16 |
d="M8 18.5504L12 14.8899" |
| 17 |
stroke="#1E1E1E" |
| 18 |
strokeWidth="1.5" |
| 19 |
/> |
| 20 |
<path |
| 21 |
d="M20.25 11.7523C20.25 14.547 18.092 16.7546 15.5 16.7546C12.908 16.7546 10.75 14.547 10.75 11.7523C10.75 8.95754 12.908 6.75 15.5 6.75C18.092 6.75 20.25 8.95754 20.25 11.7523Z" |
| 22 |
stroke="#1E1E1E" |
| 23 |
strokeWidth="1.5" |
| 24 |
/> |
| 25 |
</svg> |
| 26 |
) |
| 27 |
} |
| 28 |
|
| 29 |
export default memo(SearchIcon) |
| 30 |
|