import BDV2 from "../modules/v2"; export default class V2C_XSvg extends BDV2.reactComponent { constructor(props) { super(props); } render() { return BDV2.react.createElement( "svg", {xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 12 12", style: {width: "18px", height: "18px"}}, BDV2.react.createElement( "g", {className: "background", fill: "none", fillRule: "evenodd"}, BDV2.react.createElement("path", {d: "M0 0h12v12H0"}), BDV2.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"}) ) ); } }