bbm-component-library-test
Version:
React based component library for all BBM web applications
32 lines (26 loc) • 905 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var _react = require("react");
var _react2 = _interopRequireDefault(_react);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function Menu() {
return _react2.default.createElement(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "16",
height: "16",
viewBox: "0 0 26 27"
},
_react2.default.createElement("path", {
fill: "currentColor",
fillRule: "nonzero",
stroke: "currentColor",
strokeWidth: "1.6",
d: "M24.38 1.866a1.087 1.087 0 0 0-1.538 0L12.85 11.86 2.856 1.866a1.087 1.087 0 1 0-1.538 1.537l9.994 9.994-9.994 9.993a1.087 1.087 0 1 0 1.538 1.538l9.993-9.994 9.993 9.994a1.087 1.087 0 0 0 1.538-1.538l-9.993-9.993 9.993-9.994a1.087 1.087 0 0 0 0-1.537z"
})
);
}
exports.default = Menu;