react-oddball-icons
Version:
Odd corporate logos to spice up your website
19 lines (18 loc) • 521 B
JSX
import * as React from "react";
const SvgMagnifyingGlassAlt = (props) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 64 64"
{...props}
>
<path
stroke="#000"
strokeWidth={2}
d="M28 40c6.627 0 12-5.373 12-12s-5.373-12-12-12-12 5.373-12 12 5.373 12 12 12ZM38 38l.82 2.733a3.86 3.86 0 0 0 3.008 2.69l.238.044A3.57 3.57 0 0 1 45 46.982c0 1.51.95 2.857 2.371 3.365L52 52"
/>
</svg>
);
export default SvgMagnifyingGlassAlt;