1 | const React = require("react");
|
2 | function Bars3BottomRightIcon({
|
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: "M3.75 6.75h16.5M3.75 12h16.5M12 17.25h8.25"
|
22 | }));
|
23 | }
|
24 | const ForwardRef = React.forwardRef(Bars3BottomRightIcon);
|
25 | module.exports = ForwardRef; |
\ | No newline at end of file |