@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.35 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 React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Form({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Form",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M11.402.37a1.26 1.26 0 0 1 1.783 0l2.446 2.445a1.26 1.26 0 0 1 0 1.783L8.228 12H4V7.772L11.402.369Zm.892 1.96-1.255 1.256 1.375 1.375 1.255-1.255-1.375-1.375ZM6.017 8.608 9.625 5 11 6.375 7.393 9.983H6.017V8.607Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M2 1a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-3h-2v3H2V3h5V1H2Z",
shapeRendering: "geometricPrecision"
}));
}
Form.displayName = 'Form';
export default createBaseComponent(Form);