@ima/devtools
Version:
IMA.js debugging panel in the Chrome Developer Tools window.
17 lines (16 loc) • 367 B
JSX
export default function SearchIcon() {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
strokeWidth='2'
strokeLinecap='round'
strokeLinejoin='round'
>
<circle cx='11' cy='11' r='8' />
<line x1='21' y1='21' x2='16.65' y2='16.65' />
</svg>
);
}