@scaleflex/icons
Version:
SVG icons as React components
28 lines • 1.24 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 Bookmark = function Bookmark(_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": "Bookmark",
ref: ref,
width: size,
height: size,
viewBox: "0 0 35 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M34.9488 6.84238H3.05176e-05V2.10535C3.05176e-05 0.947406 0.947436 0 2.10538 0H32.8434C34.0014 0 34.9488 0.947406 34.9488 2.10535V6.84238Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M33.2645 49.7384L17.4744 37.4222L1.57904 49.7384C0.947436 50.2648 3.05176e-05 49.7384 3.05176e-05 48.791V9H34.9488V29V48.75C34.9488 49.6974 34.0014 50.2648 33.2645 49.7384Z",
fill: color
}));
};
export default Bookmark;