Skip to content

Commit

Permalink
🍱 Added search icon
Browse files Browse the repository at this point in the history
  • Loading branch information
dn1t authored Dec 16, 2023
1 parent e09e849 commit ead4622
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions eva-icons/icons/search.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { EvaIcon, EvaProps } from "../types.d.ts";

export const Search: EvaIcon = (props: EvaProps) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={props.size ?? 24}
height={props.size ?? 24}
viewBox="0 0 24 24"
fill={props.color ?? "currentColor"}
stroke="none"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
{...{ ...props, size: undefined, color: undefined }}
>
<g data-name="Layer 2">
<g data-name="search">
<rect width="24" height="24" opacity="0"/>
<path d="M20.71 19.29l-3.4-3.39A7.92 7.92 0 0 0 19 11a8 8 0 1 0-8 8 7.92 7.92 0 0 0 4.9-1.69l3.39 3.4a1 1 0 0 0 1.42 0 1 1 0 0 0 0-1.42zM5 11a6 6 0 1 1 6 6 6 6 0 0 1-6-6z"/>
</g>
</g>
</svg>
);
};

0 comments on commit ead4622

Please sign in to comment.