1 | const React = require("react");
|
2 | function BookmarkSquareIcon({
|
3 | title,
|
4 | titleId,
|
5 | ...props
|
6 | }, svgRef) {
|
7 | return React.createElement("svg", Object.assign({
|
8 | xmlns: "http://www.w3.org/2000/svg",
|
9 | viewBox: "0 0 24 24",
|
10 | fill: "currentColor",
|
11 | "aria-hidden": "true",
|
12 | ref: svgRef,
|
13 | "aria-labelledby": titleId
|
14 | }, props), title ? React.createElement("title", {
|
15 | id: titleId
|
16 | }, title) : null, React.createElement("path", {
|
17 | fillRule: "evenodd",
|
18 | d: "M6 3a3 3 0 00-3 3v12a3 3 0 003 3h12a3 3 0 003-3V6a3 3 0 00-3-3H6zm1.5 1.5a.75.75 0 00-.75.75V16.5a.75.75 0 001.085.67L12 15.089l4.165 2.083a.75.75 0 001.085-.671V5.25a.75.75 0 00-.75-.75h-9z",
|
19 | clipRule: "evenodd"
|
20 | }));
|
21 | }
|
22 | const ForwardRef = React.forwardRef(BookmarkSquareIcon);
|
23 | module.exports = ForwardRef; |
\ | No newline at end of file |