@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.25 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 Lightning({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Lightning",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M5.03 16a1 1 0 0 1-.41-.09 1 1 0 0 1-.57-1.14L5.41 9H4a1 1 0 0 1-.75-.35 1 1 0 0 1-.24-.8l1-7a1 1 0 0 1 1-.85h5a1 1 0 0 1 .94 1.39L9.83 4h2.22a1 1 0 0 1 .89.53 1 1 0 0 1-.07 1l-7 10a1 1 0 0 1-.84.47Zm.13-9h1.51a1 1 0 0 1 1 1.22l-.45 1.92L10.11 6H8.25a1 1 0 0 1-.83-.45 1 1 0 0 1-.08-1l1.12-2.6H5.87L5.16 7Z",
shapeRendering: "geometricPrecision"
}));
}
Lightning.displayName = 'Lightning';
export default createBaseComponent(Lightning);