@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.16 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 Amp({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Amp",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2 12C2 6.477 6.476 2 12 2c5.523 0 10 4.477 10 10 0 5.522-4.477 10-10 10-5.524 0-10-4.478-10-10Zm8.7 7 5.242-8.38a.411.411 0 0 0-.354-.62h-2.701L14 5h-.701l-5.242 8.38a.411.411 0 0 0 .355.62h2.7L10 19h.7Z",
shapeRendering: "geometricPrecision"
}));
}
Amp.displayName = 'Amp';
export default createBaseComponent(Amp);