UNPKG

773 BJavaScriptView Raw
1import * as React from "react";
2
3function CameraIcon(props) {
4 return /*#__PURE__*/React.createElement("svg", Object.assign({
5 xmlns: "http://www.w3.org/2000/svg",
6 fill: "none",
7 viewBox: "0 0 24 24",
8 stroke: "currentColor",
9 "aria-hidden": "true"
10 }, props), /*#__PURE__*/React.createElement("path", {
11 strokeLinecap: "round",
12 strokeLinejoin: "round",
13 strokeWidth: 2,
14 d: "M3 9a2 2 0 012-2h.93a2 2 0 001.664-.89l.812-1.22A2 2 0 0110.07 4h3.86a2 2 0 011.664.89l.812 1.22A2 2 0 0018.07 7H19a2 2 0 012 2v9a2 2 0 01-2 2H5a2 2 0 01-2-2V9z"
15 }), /*#__PURE__*/React.createElement("path", {
16 strokeLinecap: "round",
17 strokeLinejoin: "round",
18 strokeWidth: 2,
19 d: "M15 13a3 3 0 11-6 0 3 3 0 016 0z"
20 }));
21}
22
23export default CameraIcon;
\No newline at end of file