@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.24 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 Formal({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Formal",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12.8 1.227a1.303 1.303 0 0 0-.8-.225H4a1.309 1.309 0 0 0-1.261 1.836l.071.163H2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-.81l.071-.163a1.31 1.31 0 0 0-.461-1.611ZM9 13V6.625L11 8l1.306-3H13v8H9ZM3.694 5H3v8h4V6.625L5 8 3.694 5ZM6 3h4L8 6 6 3Z",
shapeRendering: "geometricPrecision"
}));
}
Formal.displayName = 'Formal';
export default createBaseComponent(Formal);