@semcore/icon 16.0.0-prerelease.16 → 16.0.0-prerelease.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -8,6 +8,16 @@ CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangel
8
8
 
9
9
  - External icons.
10
10
 
11
+ ## [4.61.0] - 2025-04-09
12
+
13
+ ### Added
14
+
15
+ - New `AIToolkit` icon.
16
+
17
+ ### Changed
18
+
19
+ - `SEOToolkit` icon a little bit.
20
+
11
21
  ## [4.60.2] - 2025-04-04
12
22
 
13
23
  ### Changed
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@semcore/icon",
3
3
  "description": "Semrush Icon Component",
4
- "version": "16.0.0-prerelease.16",
4
+ "version": "16.0.0-prerelease.18",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/esm/index.mjs",
7
7
  "typings": "lib/types/index.d.ts",
@@ -9,11 +9,11 @@
9
9
  "author": "UI-kit team <ui-kit-team@semrush.com>",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
- "@semcore/flex-box": "16.0.0-prerelease.16",
12
+ "@semcore/flex-box": "16.0.0-prerelease.18",
13
13
  "classnames": "2.2.6"
14
14
  },
15
15
  "peerDependencies": {
16
- "@semcore/base-components": "^16.0.0-prerelease.16"
16
+ "@semcore/base-components": "^16.0.0-prerelease.18"
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
@@ -647,6 +647,11 @@
647
647
  "import": "./platform/AdsToolkit/index.mjs",
648
648
  "types": "./platform/AdsToolkit/index.d.ts"
649
649
  },
650
+ "./platform/AIToolkit": {
651
+ "require": "./platform/AIToolkit/index.js",
652
+ "import": "./platform/AIToolkit/index.mjs",
653
+ "types": "./platform/AIToolkit/index.d.ts"
654
+ },
650
655
  "./platform/AppCenter": {
651
656
  "require": "./platform/AppCenter/index.js",
652
657
  "import": "./platform/AppCenter/index.mjs",
@@ -0,0 +1,6 @@
1
+
2
+ import { IconProps } from '@semcore/icon';
3
+ import { Intergalactic } from '@semcore/core';
4
+ declare const _default: Intergalactic.Component<'svg', IconProps>;
5
+ export default _default;
6
+
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _core = require("@semcore/core");
12
+ var _index = _interopRequireDefault(require("../../lib/cjs/index.js"));
13
+ var _excluded = ["width", "height", "viewBox"];
14
+ function RootAIToolkit(_ref, ref) {
15
+ var _ref$width = _ref.width,
16
+ width = _ref$width === void 0 ? '24' : _ref$width,
17
+ _ref$height = _ref.height,
18
+ height = _ref$height === void 0 ? '24' : _ref$height,
19
+ _ref$viewBox = _ref.viewBox,
20
+ viewBox = _ref$viewBox === void 0 ? '0 0 24 24' : _ref$viewBox,
21
+ props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
22
+ return /*#__PURE__*/_react["default"].createElement(_index["default"], (0, _extends2["default"])({
23
+ ref: ref,
24
+ "data-name": "AIToolkit",
25
+ "data-group": "",
26
+ width: width,
27
+ height: height,
28
+ viewBox: viewBox
29
+ }, props), /*#__PURE__*/_react["default"].createElement("path", {
30
+ d: "M10.093 6.464C7.329 5.702 6.798 5.17 6.035 2.407a.555.555 0 0 0-1.07 0C4.202 5.17 3.67 5.702.907 6.464a.555.555 0 0 0 0 1.072c2.764.763 3.295 1.294 4.058 4.057a.555.555 0 0 0 1.07 0c.763-2.764 1.294-3.295 4.058-4.057a.556.556 0 0 0 0-1.072ZM22.93 12.25c-3.869-1.068-4.613-1.811-5.68-5.68a.778.778 0 0 0-1.5 0c-1.067 3.868-1.81 4.613-5.68 5.68a.778.778 0 0 0 0 1.5c3.869 1.069 4.613 1.811 5.68 5.68a.778.778 0 0 0 1.5 0c1.067-3.87 1.81-4.613 5.68-5.68a.778.778 0 0 0 0-1.5ZM9 18.379l-2.44-2.44a1.5 1.5 0 0 0-2.12 0l-4 4a1.5 1.5 0 0 0 2.12 2.122l2.94-2.94 2.44 2.44a1.5 1.5 0 0 0 2.12 0l2.5-2.5a1.5 1.5 0 0 0-2.12-2.122L9 18.38Z",
31
+ shapeRendering: "geometricPrecision"
32
+ }));
33
+ }
34
+ RootAIToolkit.displayName = 'AIToolkit';
35
+ var AIToolkit = (0, _core.createBaseComponent)(RootAIToolkit);
36
+ exports["default"] = AIToolkit;
@@ -0,0 +1,25 @@
1
+ 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); }
2
+ import React from 'react';
3
+ import { createBaseComponent } from '@semcore/core';
4
+ import Icon from '../../lib/esm/index.mjs';
5
+ function RootAIToolkit({
6
+ width = '24',
7
+ height = '24',
8
+ viewBox = '0 0 24 24',
9
+ ...props
10
+ }, ref) {
11
+ return /*#__PURE__*/React.createElement(Icon, _extends({
12
+ ref: ref,
13
+ "data-name": "AIToolkit",
14
+ "data-group": "",
15
+ width: width,
16
+ height: height,
17
+ viewBox: viewBox
18
+ }, props), /*#__PURE__*/React.createElement("path", {
19
+ d: "M10.093 6.464C7.329 5.702 6.798 5.17 6.035 2.407a.555.555 0 0 0-1.07 0C4.202 5.17 3.67 5.702.907 6.464a.555.555 0 0 0 0 1.072c2.764.763 3.295 1.294 4.058 4.057a.555.555 0 0 0 1.07 0c.763-2.764 1.294-3.295 4.058-4.057a.556.556 0 0 0 0-1.072ZM22.93 12.25c-3.869-1.068-4.613-1.811-5.68-5.68a.778.778 0 0 0-1.5 0c-1.067 3.868-1.81 4.613-5.68 5.68a.778.778 0 0 0 0 1.5c3.869 1.069 4.613 1.811 5.68 5.68a.778.778 0 0 0 1.5 0c1.067-3.87 1.81-4.613 5.68-5.68a.778.778 0 0 0 0-1.5ZM9 18.379l-2.44-2.44a1.5 1.5 0 0 0-2.12 0l-4 4a1.5 1.5 0 0 0 2.12 2.122l2.94-2.94 2.44 2.44a1.5 1.5 0 0 0 2.12 0l2.5-2.5a1.5 1.5 0 0 0-2.12-2.122L9 18.38Z",
20
+ shapeRendering: "geometricPrecision"
21
+ }));
22
+ }
23
+ RootAIToolkit.displayName = 'AIToolkit';
24
+ const AIToolkit = createBaseComponent(RootAIToolkit);
25
+ export { AIToolkit as default };
@@ -27,11 +27,11 @@ function RootSEOToolkit(_ref, ref) {
27
27
  height: height,
28
28
  viewBox: viewBox
29
29
  }, props), /*#__PURE__*/_react["default"].createElement("path", {
30
- d: "M5.836 3.864c-.316.242-.397.66-.34 1.049a2.94 2.94 0 0 1-.346 1.862c-.317.566-.794.98-1.338 1.215-.382.165-.726.459-.77.866a7.495 7.495 0 0 0 0 1.601c.044.407.388.7.77.866.544.236 1.02.649 1.338 1.215a2.94 2.94 0 0 1 .345 1.862c-.056.389.025.807.341 1.049.405.308.842.572 1.307.786.39.18.836.025 1.175-.237l.06-.045a7.691 7.691 0 0 1-.213-3.974A2.907 2.907 0 0 1 7 9.656c0-1.62 1.343-2.934 3-2.934.541 0 1.049.14 1.487.385a8.054 8.054 0 0 1 3.037-1.23 2.96 2.96 0 0 1-.02-.965c.057-.389-.024-.807-.34-1.049a6.953 6.953 0 0 0-1.306-.786c-.391-.18-.837-.025-1.176.237a2.736 2.736 0 0 1-3.364 0c-.339-.262-.785-.417-1.175-.237a6.952 6.952 0 0 0-1.307.786Z",
30
+ d: "M4.838 5.224c-.067-.405.016-.842.33-1.099a7.88 7.88 0 0 1 1.66-1.047c.393-.183.84-.023 1.17.262A3.046 3.046 0 0 0 10 4.1c.758 0 1.454-.284 2.002-.759.33-.285.776-.445 1.17-.262.594.277 1.151.63 1.66 1.047.314.257.397.694.33 1.1a3.72 3.72 0 0 0-.028.994 7.983 7.983 0 0 0-3.597 1.937 3.5 3.5 0 0 0-2.508 6.52c.058.706.209 1.386.44 2.027L7.171 19a.836.836 0 0 1-.344-.078 7.881 7.881 0 0 1-1.66-1.047c-.314-.257-.397-.694-.33-1.1a3.668 3.668 0 0 0-.38-2.324 3.265 3.265 0 0 0-1.621-1.495c-.388-.161-.729-.47-.777-.896a9.386 9.386 0 0 1 0-2.12c.048-.426.389-.735.777-.896a3.265 3.265 0 0 0 1.62-1.495 3.668 3.668 0 0 0 .38-2.325Z",
31
31
  shapeRendering: "geometricPrecision"
32
32
  }), /*#__PURE__*/_react["default"].createElement("path", {
33
33
  fillRule: "evenodd",
34
- d: "M16 19.436c3.314 0 6-2.627 6-5.867 0-3.241-2.686-5.868-6-5.868s-6 2.627-6 5.868c0 1.267.41 2.44 1.11 3.4l-2.585 2.527a1.444 1.444 0 0 0 0 2.074 1.524 1.524 0 0 0 2.122 0l2.766-2.705a6.09 6.09 0 0 0 2.587.571Zm0-2.934c1.657 0 3-1.313 3-2.933 0-1.62-1.343-2.935-3-2.935s-3 1.314-3 2.934 1.343 2.934 3 2.934Z",
34
+ d: "M23 14a6 6 0 0 1-8.971 5.214l-2.797 2.796a1.5 1.5 0 1 1-2.121-2.12l2.765-2.766A6 6 0 1 1 23 14Zm-3 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",
35
35
  clipRule: "evenodd",
36
36
  shapeRendering: "geometricPrecision"
37
37
  }));
@@ -16,11 +16,11 @@ function RootSEOToolkit({
16
16
  height: height,
17
17
  viewBox: viewBox
18
18
  }, props), /*#__PURE__*/React.createElement("path", {
19
- d: "M5.836 3.864c-.316.242-.397.66-.34 1.049a2.94 2.94 0 0 1-.346 1.862c-.317.566-.794.98-1.338 1.215-.382.165-.726.459-.77.866a7.495 7.495 0 0 0 0 1.601c.044.407.388.7.77.866.544.236 1.02.649 1.338 1.215a2.94 2.94 0 0 1 .345 1.862c-.056.389.025.807.341 1.049.405.308.842.572 1.307.786.39.18.836.025 1.175-.237l.06-.045a7.691 7.691 0 0 1-.213-3.974A2.907 2.907 0 0 1 7 9.656c0-1.62 1.343-2.934 3-2.934.541 0 1.049.14 1.487.385a8.054 8.054 0 0 1 3.037-1.23 2.96 2.96 0 0 1-.02-.965c.057-.389-.024-.807-.34-1.049a6.953 6.953 0 0 0-1.306-.786c-.391-.18-.837-.025-1.176.237a2.736 2.736 0 0 1-3.364 0c-.339-.262-.785-.417-1.175-.237a6.952 6.952 0 0 0-1.307.786Z",
19
+ d: "M4.838 5.224c-.067-.405.016-.842.33-1.099a7.88 7.88 0 0 1 1.66-1.047c.393-.183.84-.023 1.17.262A3.046 3.046 0 0 0 10 4.1c.758 0 1.454-.284 2.002-.759.33-.285.776-.445 1.17-.262.594.277 1.151.63 1.66 1.047.314.257.397.694.33 1.1a3.72 3.72 0 0 0-.028.994 7.983 7.983 0 0 0-3.597 1.937 3.5 3.5 0 0 0-2.508 6.52c.058.706.209 1.386.44 2.027L7.171 19a.836.836 0 0 1-.344-.078 7.881 7.881 0 0 1-1.66-1.047c-.314-.257-.397-.694-.33-1.1a3.668 3.668 0 0 0-.38-2.324 3.265 3.265 0 0 0-1.621-1.495c-.388-.161-.729-.47-.777-.896a9.386 9.386 0 0 1 0-2.12c.048-.426.389-.735.777-.896a3.265 3.265 0 0 0 1.62-1.495 3.668 3.668 0 0 0 .38-2.325Z",
20
20
  shapeRendering: "geometricPrecision"
21
21
  }), /*#__PURE__*/React.createElement("path", {
22
22
  fillRule: "evenodd",
23
- d: "M16 19.436c3.314 0 6-2.627 6-5.867 0-3.241-2.686-5.868-6-5.868s-6 2.627-6 5.868c0 1.267.41 2.44 1.11 3.4l-2.585 2.527a1.444 1.444 0 0 0 0 2.074 1.524 1.524 0 0 0 2.122 0l2.766-2.705a6.09 6.09 0 0 0 2.587.571Zm0-2.934c1.657 0 3-1.313 3-2.933 0-1.62-1.343-2.935-3-2.935s-3 1.314-3 2.934 1.343 2.934 3 2.934Z",
23
+ d: "M23 14a6 6 0 0 1-8.971 5.214l-2.797 2.796a1.5 1.5 0 1 1-2.121-2.12l2.765-2.766A6 6 0 1 1 23 14Zm-3 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",
24
24
  clipRule: "evenodd",
25
25
  shapeRendering: "geometricPrecision"
26
26
  }));
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path d="M10.093 6.464C7.329 5.702 6.798 5.17 6.035 2.407a.555.555 0 0 0-1.07 0C4.202 5.17 3.67 5.702.907 6.464a.555.555 0 0 0 0 1.072c2.764.763 3.295 1.294 4.058 4.057a.555.555 0 0 0 1.07 0c.763-2.764 1.294-3.295 4.058-4.057a.556.556 0 0 0 0-1.072ZM22.93 12.25c-3.869-1.068-4.613-1.811-5.68-5.68a.778.778 0 0 0-1.5 0c-1.067 3.868-1.81 4.613-5.68 5.68a.778.778 0 0 0 0 1.5c3.869 1.069 4.613 1.811 5.68 5.68a.778.778 0 0 0 1.5 0c1.067-3.87 1.81-4.613 5.68-5.68a.778.778 0 0 0 0-1.5ZM9 18.379l-2.44-2.44a1.5 1.5 0 0 0-2.12 0l-4 4a1.5 1.5 0 0 0 2.12 2.122l2.94-2.94 2.44 2.44a1.5 1.5 0 0 0 2.12 0l2.5-2.5a1.5 1.5 0 0 0-2.12-2.122L9 18.38Z" />
3
+ </svg>
@@ -1,4 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
- <path d="M5.836 3.864c-.316.242-.397.66-.34 1.049a2.94 2.94 0 0 1-.346 1.862c-.317.566-.794.98-1.338 1.215-.382.165-.726.459-.77.866a7.495 7.495 0 0 0 0 1.601c.044.407.388.7.77.866.544.236 1.02.649 1.338 1.215a2.94 2.94 0 0 1 .345 1.862c-.056.389.025.807.341 1.049.405.308.842.572 1.307.786.39.18.836.025 1.175-.237l.06-.045a7.691 7.691 0 0 1-.213-3.974A2.907 2.907 0 0 1 7 9.656c0-1.62 1.343-2.934 3-2.934.541 0 1.049.14 1.487.385a8.054 8.054 0 0 1 3.037-1.23 2.96 2.96 0 0 1-.02-.965c.057-.389-.024-.807-.34-1.049a6.953 6.953 0 0 0-1.306-.786c-.391-.18-.837-.025-1.176.237a2.736 2.736 0 0 1-3.364 0c-.339-.262-.785-.417-1.175-.237a6.952 6.952 0 0 0-1.307.786Z"/>
3
- <path fill-rule="evenodd" d="M16 19.436c3.314 0 6-2.627 6-5.867 0-3.241-2.686-5.868-6-5.868s-6 2.627-6 5.868c0 1.267.41 2.44 1.11 3.4l-2.585 2.527a1.444 1.444 0 0 0 0 2.074 1.524 1.524 0 0 0 2.122 0l2.766-2.705a6.09 6.09 0 0 0 2.587.571Zm0-2.934c1.657 0 3-1.313 3-2.933 0-1.62-1.343-2.935-3-2.935s-3 1.314-3 2.934 1.343 2.934 3 2.934Z" clip-rule="evenodd"/>
4
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M4.838 5.224c-.067-.405.016-.842.33-1.099a7.88 7.88 0 0 1 1.66-1.047c.393-.183.84-.023 1.17.262A3.046 3.046 0 0 0 10 4.1c.758 0 1.454-.284 2.002-.759.33-.285.776-.445 1.17-.262.594.277 1.151.63 1.66 1.047.314.257.397.694.33 1.1a3.72 3.72 0 0 0-.028.994 7.983 7.983 0 0 0-3.597 1.937 3.5 3.5 0 0 0-2.508 6.52c.058.706.209 1.386.44 2.027L7.171 19a.836.836 0 0 1-.344-.078 7.881 7.881 0 0 1-1.66-1.047c-.314-.257-.397-.694-.33-1.1a3.668 3.668 0 0 0-.38-2.324 3.265 3.265 0 0 0-1.621-1.495c-.388-.161-.729-.47-.777-.896a9.386 9.386 0 0 1 0-2.12c.048-.426.389-.735.777-.896a3.265 3.265 0 0 0 1.62-1.495 3.668 3.668 0 0 0 .38-2.325Z"/><path fill-rule="evenodd" d="M23 14a6 6 0 0 1-8.971 5.214l-2.797 2.796a1.5 1.5 0 1 1-2.121-2.12l2.765-2.766A6 6 0 1 1 23 14Zm-3 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" clip-rule="evenodd"/></svg>