iconoir/packages/iconoir-react/src/server/Search.tsx

29 lines
632 B
TypeScript

import * as React from "react";
function SvgSearch(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M17 17l4 4M3 11a8 8 0 1016 0 8 8 0 00-16 0z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgSearch);
export default ForwardRef;