26 lines
843 B
JavaScript
26 lines
843 B
JavaScript
|
const React = require("react");
|
||
|
function BookmarkIcon({
|
||
|
title,
|
||
|
titleId,
|
||
|
...props
|
||
|
}, svgRef) {
|
||
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||
|
xmlns: "http://www.w3.org/2000/svg",
|
||
|
fill: "none",
|
||
|
viewBox: "0 0 24 24",
|
||
|
strokeWidth: 1.5,
|
||
|
stroke: "currentColor",
|
||
|
"aria-hidden": "true",
|
||
|
"data-slot": "icon",
|
||
|
ref: svgRef,
|
||
|
"aria-labelledby": titleId
|
||
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||
|
id: titleId
|
||
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||
|
strokeLinecap: "round",
|
||
|
strokeLinejoin: "round",
|
||
|
d: "M17.593 3.322c1.1.128 1.907 1.077 1.907 2.185V21L12 17.25 4.5 21V5.507c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0Z"
|
||
|
}));
|
||
|
}
|
||
|
const ForwardRef = /*#__PURE__*/ React.forwardRef(BookmarkIcon);
|
||
|
module.exports = ForwardRef;
|