@scaleflex/icons
Version:
SVG icons as React components
28 lines • 1.04 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var Unsplash = function Unsplash(_ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Unsplash",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M49 48.5005V21.7331H33.8792V35.1167H16.1208V21.7331H1V48.5005H49Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M16.1208 13.8841V0.500488H33.8792V13.8841H16.1208Z",
fill: color
}));
};
export default Unsplash;