@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.27 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 LightningFilled({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "LightningFilled",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M6.84604 0.820044C6.93294 0.345051 7.34684 0 7.82972 0H14.0019C14.6882 0 15.1705 0.675487 14.9477 1.32461L13 7H16.9985C17.7956 7 18.2723 7.88709 17.8324 8.55186L8.32422 22.5469C7.71002 23.475 6.26699 22.8566 6.51553 21.7717L8.99997 12H6.00029C5.37595 12 4.90426 11.4342 5.01662 10.82L6.84604 0.820044Z",
shapeRendering: "geometricPrecision"
}));
}
LightningFilled.displayName = 'LightningFilled';
export default createBaseComponent(LightningFilled);