1 | const React = require("react");
|
2 | function GiftTopIcon({
|
3 | title,
|
4 | titleId,
|
5 | ...props
|
6 | }, svgRef) {
|
7 | return React.createElement("svg", Object.assign({
|
8 | xmlns: "http://www.w3.org/2000/svg",
|
9 | fill: "none",
|
10 | viewBox: "0 0 24 24",
|
11 | strokeWidth: 1.5,
|
12 | stroke: "currentColor",
|
13 | "aria-hidden": "true",
|
14 | ref: svgRef,
|
15 | "aria-labelledby": titleId
|
16 | }, props), title ? React.createElement("title", {
|
17 | id: titleId
|
18 | }, title) : null, React.createElement("path", {
|
19 | strokeLinecap: "round",
|
20 | strokeLinejoin: "round",
|
21 | d: "M12 3.75v16.5M2.25 12h19.5M6.375 17.25a4.875 4.875 0 004.875-4.875V12m6.375 5.25a4.875 4.875 0 01-4.875-4.875V12m-9 8.25h16.5a1.5 1.5 0 001.5-1.5V5.25a1.5 1.5 0 00-1.5-1.5H3.75a1.5 1.5 0 00-1.5 1.5v13.5a1.5 1.5 0 001.5 1.5zm12.621-9.44c-1.409 1.41-4.242 1.061-4.242 1.061s-.349-2.833 1.06-4.242a2.25 2.25 0 013.182 3.182zM10.773 7.63c1.409 1.409 1.06 4.242 1.06 4.242S9 12.22 7.592 10.811a2.25 2.25 0 113.182-3.182z"
|
22 | }));
|
23 | }
|
24 | const ForwardRef = React.forwardRef(GiftTopIcon);
|
25 | module.exports = ForwardRef; |
\ | No newline at end of file |