@semcore/icon
Version:
Semrush Icon Component
30 lines • 1.34 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootForm({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Form",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M3 2a2 2 0 0 0-2 2v17a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5h-2v5H3V4h10V2H3Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M17.294 2.369a1.258 1.258 0 0 1 1.78 0l3.557 3.558a1.258 1.258 0 0 1 0 1.78L12.338 18H7v-5.338L17.294 2.368Zm.89 1.957-1.602 1.6 2.491 2.492 1.601-1.601-2.49-2.491Zm-9.171 9.17 6.155-6.155 2.49 2.49-6.154 6.156H9.013v-2.49Z",
shapeRendering: "geometricPrecision"
}));
}
RootForm.displayName = 'Form';
const Form = createBaseComponent(RootForm);
export { Form as default };