@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
31 lines • 1.36 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { Svg, Path } from 'react-native-svg';
import { genOutlineIcon } from "./gen";
var PhotoOutline = genOutlineIcon(function (_ref, props) {
var size = _ref.size,
color = _ref.color,
strokeWidth = _ref.strokeWidth;
return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
viewBox: "0 0 24 24",
fill: "none",
width: size,
height: size
}), /*#__PURE__*/React.createElement(Path, {
d: "M8 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2Z",
stroke: color,
strokeWidth: strokeWidth || 2,
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement(Path, {
d: "M21.6 4c.22 0 .4.18.4.4v15.2a.4.4 0 0 1-.4.4H2.4a.4.4 0 0 1-.4-.4V4.4c0-.22.18-.4.4-.4h19.2Z",
stroke: color,
strokeWidth: strokeWidth || 2,
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement(Path, {
d: "m7 20 10-10 5 5",
stroke: color,
strokeWidth: strokeWidth || 2,
strokeLinejoin: "round"
}));
});
export default PhotoOutline;