@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.55 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 AskAI({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "AskAI",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M0 2a1 1 0 0 0 1 1h11a1 1 0 0 0 0-2H1a1 1 0 0 0-1 1ZM1 7.001a1 1 0 0 1 0-2h7a1 1 0 0 1 0 2H1ZM1 11.002a1 1 0 0 1 0-2h4a1 1 0 0 1 0 2H1ZM14.373 5.26a.4.4 0 0 0-.75 0l-.305.824a.4.4 0 0 1-.236.236l-.824.305a.4.4 0 0 0 0 .75l.824.305a.4.4 0 0 1 .236.237l.304.823a.4.4 0 0 0 .75 0l.305-.823a.4.4 0 0 1 .237-.237l.823-.305a.4.4 0 0 0 0-.75l-.823-.305a.4.4 0 0 1-.237-.236l-.304-.823ZM11.374 9.264a.4.4 0 0 0-.75 0l-.575 1.553a.4.4 0 0 1-.236.236l-1.552.574a.4.4 0 0 0 0 .75l1.552.575a.4.4 0 0 1 .236.236l.574 1.553a.4.4 0 0 0 .75 0l.575-1.553a.4.4 0 0 1 .236-.236l1.552-.574a.4.4 0 0 0 0-.75l-1.552-.575a.4.4 0 0 1-.236-.237l-.574-1.552Z",
shapeRendering: "geometricPrecision"
}));
}
AskAI.displayName = 'AskAI';
export default createBaseComponent(AskAI);