@vela-ui/react
Version:
Vela UI React components
28 lines (26 loc) • 610 B
JavaScript
// src/icons/search.tsx
import { jsx, jsxs } from "react/jsx-runtime";
var SearchIcon = (props) => {
return /* @__PURE__ */ jsxs(
"svg",
{
fill: "none",
stroke: "currentColor",
strokeWidth: 2,
strokeLinecap: "round",
strokeLinejoin: "round",
width: "1em",
height: "1em",
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [
/* @__PURE__ */ jsx("path", { d: "m21 21-4.34-4.34" }),
/* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "8" })
]
}
);
};
export {
SearchIcon
};