@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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "LightningFilled",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M11.8274 6.55747L6.46238 15.5471C5.82153 16.5015 4.34049 15.7978 4.67562 14.6981L6.41223 9H4.00019C3.39117 9 2.92358 8.46022 3.01041 7.85743L4.51022 0.857429C4.5811 0.365299 5.00279 0 5.5 0H9.09602C9.75989 0 10.2395 0.634984 10.0579 1.27353L8.99817 5H10.9972C11.7974 5 12.2734 5.89314 11.8274 6.55747Z",
shapeRendering: "geometricPrecision"
}));
}
LightningFilled.displayName = 'LightningFilled';
export default createBaseComponent(LightningFilled);