@onesy/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 798 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@onesy/ui-react';
const IconMaterialSearch = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "Search",
short_name: "Search",
viewBox: "0 -960 960 960"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M380-320q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l224 224q11 11 11 28t-11 28q-11 11-28 11t-28-11L532-372q-30 24-69 38t-83 14Zm0-80q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z"
}));
});
IconMaterialSearch.displayName = 'OnesyIconMaterialSearch';
export default IconMaterialSearch;