@iswa/jsx
Version:
international sign writing alphabet in jsx
14 lines (11 loc) • 833 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: 21,
height: 22
}, props), /*#__PURE__*/React.createElement("path", {
d: "M7.5 13.5L3 18h1l3.5-3.5L11 18h1l-4.5-4.5z"
}), /*#__PURE__*/React.createElement("path", {
d: "M1 0v17c0 1.657.895 3 2 3a2 2 0 002-2h5a4 4 0 01-4 4H5a5 5 0 01-5-5V0h1zM12.5.5L8 5h1l3.5-3.5L16 5h1L12.5.5zM12 5v13a4 4 0 004 4 5 5 0 005-5h-5c0 1.657-.672 3-1.5 3S13 18.657 13 17V5h-1z"
}));
export default SvgComponent;