1 | import * as React from "react";
|
2 |
|
3 | function DocumentSearchIcon(props) {
|
4 | return 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), React.createElement("path", {
|
10 | d: "M4 4a2 2 0 012-2h4.586A2 2 0 0112 2.586L15.414 6A2 2 0 0116 7.414V16a2 2 0 01-2 2h-1.528A6 6 0 004 9.528V4z"
|
11 | }), React.createElement("path", {
|
12 | fillRule: "evenodd",
|
13 | d: "M8 10a4 4 0 00-3.446 6.032l-1.261 1.26a1 1 0 101.414 1.415l1.261-1.261A4 4 0 108 10zm-2 4a2 2 0 114 0 2 2 0 01-4 0z",
|
14 | clipRule: "evenodd"
|
15 | }));
|
16 | }
|
17 |
|
18 | export default DocumentSearchIcon; |
\ | No newline at end of file |