@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
20 lines • 1.04 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : 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 SvgIcon from '@mui/material/SvgIcon';
import React from 'react';
const PencilOutlinedIcon = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(SvgIcon, _extends({
width: "24",
height: "24",
viewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
fill: "none",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: "2",
d: "M21 18s-1.33 1.54-2.83 1.54-2.71-1.43-4.18-1.43A4 4 0 0 0 11 19.54m7.41-15.13.18.18a2 2 0 0 1 0 2.82l-12 12a2 2 0 0 1-1.42.59H3v-2.17a2 2 0 0 1 .59-1.42l12-12a2 2 0 0 1 2.82 0Z"
}));
});
export default PencilOutlinedIcon;