BetterDiscordApp-rauenzi/src/ui/icons/close.js

20 lines
751 B
JavaScript
Raw Normal View History

2019-05-30 07:06:17 +02:00
import {React} from "modules";
2019-05-28 23:27:25 +02:00
2019-06-10 05:40:35 +02:00
export default class XSvg extends React.Component {
2019-05-28 20:19:48 +02:00
constructor(props) {
super(props);
}
render() {
2019-05-30 07:06:17 +02:00
return React.createElement(
2019-05-28 20:19:48 +02:00
"svg",
{xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 12 12", style: {width: "18px", height: "18px"}},
2019-05-30 07:06:17 +02:00
React.createElement(
2019-05-28 20:19:48 +02:00
"g",
{className: "background", fill: "none", fillRule: "evenodd"},
2019-05-30 07:06:17 +02:00
React.createElement("path", {d: "M0 0h12v12H0"}),
React.createElement("path", {className: "fill", fill: "#dcddde", d: "M9.5 3.205L8.795 2.5 6 5.295 3.205 2.5l-.705.705L5.295 6 2.5 8.795l.705.705L6 6.705 8.795 9.5l.705-.705L6.705 6"})
2019-05-28 20:19:48 +02:00
)
);
}
}