@heroicons/react
Version:
20 lines (18 loc) • 667 B
JavaScript
import * as React from "react";
function ZoomOutIcon(props) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
"aria-hidden": "true"
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M5 8a1 1 0 011-1h4a1 1 0 110 2H6a1 1 0 01-1-1z",
clipRule: "evenodd"
}));
}
export default ZoomOutIcon;