UNPKG

669 BJavaScriptView Raw
1const React = require("react");
2
3function ZoomOutIcon(props) {
4 return /*#__PURE__*/React.createElement("svg", Object.assign({
5 xmlns: "http://www.w3.org/2000/svg",
6 viewBox: "0 0 20 20",
7 fill: "currentColor",
8 "aria-hidden": "true"
9 }, props), /*#__PURE__*/React.createElement("path", {
10 fillRule: "evenodd",
11 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",
12 clipRule: "evenodd"
13 }), /*#__PURE__*/React.createElement("path", {
14 fillRule: "evenodd",
15 d: "M5 8a1 1 0 011-1h4a1 1 0 110 2H6a1 1 0 01-1-1z",
16 clipRule: "evenodd"
17 }));
18}
19
20module.exports = ZoomOutIcon;
\No newline at end of file