@iswa/jsx
Version:
international sign writing alphabet in jsx
14 lines (11 loc) • 809 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: 38
}, props), /*#__PURE__*/React.createElement("path", {
d: "M23 29l-8-8-8 8h16z"
}), /*#__PURE__*/React.createElement("path", {
d: "M2 0v12.75A4.443 4.443 0 014.5 12a4.5 4.5 0 010 9c-.928 0-1.788-.27-2.5-.75V32a4 4 0 004 4c2.761 0 5-3.134 5-7h8a9 9 0 01-9 9H6a6 6 0 01-6-6V0h2zm2.5 14a2.5 2.5 0 100 5 2.5 2.5 0 000-5z"
}));
export default SvgComponent;