@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.34 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 Law({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Law",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M13 5V2.91c0-.503-.448-.91-1-.91s-1 .407-1 .91V5H2a1 1 0 0 0 0 2h.835C1.893 8.89 1 10.956 1 12a4 4 0 0 0 8 0c0-1.044-.893-3.11-1.835-5H11v13H8a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-3V7h3.835C15.893 8.89 15 10.956 15 12a4 4 0 0 0 8 0c0-1.044-.893-3.11-1.835-5H22a1 1 0 1 0 0-2h-9Zm-6 7a2 2 0 1 1-4 0h4Zm-.647-2H3.647L5 7.154 6.353 10ZM21 12a2 2 0 1 1-4 0h4Zm-3.353-2h2.706L19 7.154 17.647 10Z",
shapeRendering: "geometricPrecision"
}));
}
Law.displayName = 'Law';
export default createBaseComponent(Law);