import React from 'react';

function IconSearch(props: any) {
    return (
        <svg xmlns="http://www.w3.org/2000/svg" width={props.width} height={props.height} className={props.className} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
    );
}

export default IconSearch;