@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.48 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Law",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8 0a1 1 0 0 1 1 1v1h6a1 1 0 0 1 .025 2c.54 1.202.975 2.369.975 3a3 3 0 1 1-6 0c0-.631.436-1.798.975-3H9v10h1a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h1V4H5.025C5.565 5.202 6 6.369 6 7a3 3 0 0 1-6 0c0-.631.436-1.798.975-3A1 1 0 0 1 1 2h6V1a1 1 0 0 1 1-1ZM3 8a1 1 0 0 0 1-1c-.002-.01-.053-.338-.336-1.077A24.688 24.688 0 0 0 3 4.38a24.688 24.688 0 0 0-.664 1.543C2.053 6.662 2.002 6.989 2 7a1 1 0 0 0 1 1Zm11-1a1 1 0 1 1-2 0c.002-.011.053-.338.336-1.077A24.73 24.73 0 0 1 13 4.38c.251.54.482 1.07.664 1.543.283.739.334 1.066.336 1.077Z",
shapeRendering: "geometricPrecision"
}));
}
Law.displayName = 'Law';
export default createBaseComponent(Law);