@vector-im/compound-design-tokens
Version:
Compound design tokens
19 lines • 581 B
JavaScript
import { forwardRef } from "react";
import { jsx as _jsx } from "react/jsx-runtime";
function SearchIcon(props, ref) {
return /*#__PURE__*/_jsx("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
fill: "currentColor",
viewBox: "0 0 24 24",
ref: ref,
...props,
children: /*#__PURE__*/_jsx("path", {
d: "M15.05 16.463a7.5 7.5 0 1 1 1.414-1.414l3.243 3.244a1 1 0 0 1-1.414 1.414zM16 10.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0"
})
});
}
;
SearchIcon.displayName = "SearchIcon";
export default forwardRef(SearchIcon);