@iswa/jsx
Version:
international sign writing alphabet in jsx
17 lines (14 loc) • 843 B
JavaScript
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from "react";
const SvgComponent = props => /*#__PURE__*/React.createElement("svg", _extends({
width: 23,
height: 30
}, props), /*#__PURE__*/React.createElement("path", {
d: "M8 15h15v15H8z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#fff",
d: "M10 17h6v11h-6z"
}), /*#__PURE__*/React.createElement("path", {
d: "M3 11c-3 0-3 3-3 3v3h2v-2.625V14c0-1 1-1 1-1h4c1 0 .997.962 1 1v1h2v-1c0-3-3-3-3-3H3zM14 0v15h2V0h-2zM0 25v2s0 3 3 3h5v-2H3s-1 0-1-1v-2H0z"
}));
export default SvgComponent;