forked from aaronshaf/react-toggle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathx.js
More file actions
22 lines (18 loc) · 694 Bytes
/
x.js
File metadata and controls
22 lines (18 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"use strict";
var _interopRequire = function (obj) { return obj && obj.__esModule ? obj["default"] : obj; };
var React = _interopRequire(require("react"));
module.exports = React.createClass({
displayName: "x.es6",
render: function render() {
return React.createElement(
"svg",
{ width: "10", height: "10", viewBox: "0 0 10 10", xmlns: "http://www.w3.org/2000/svg" },
React.createElement(
"title",
null,
"switch-x"
),
React.createElement("path", { d: "M9.9 2.12L7.78 0 4.95 2.828 2.12 0 0 2.12l2.83 2.83L0 7.776 2.123 9.9 4.95 7.07 7.78 9.9 9.9 7.776 7.072 4.95 9.9 2.12", fill: "#fff", "fill-rule": "evenodd" })
);
}
});