@atlaskit/icon-lab 5.8.0 → 5.9.0

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.
Files changed (76) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/core/ai-generative-text.js +2 -2
  3. package/core/assets-object-type.d.ts +13 -0
  4. package/core/assets-object-type.js +29 -0
  5. package/core/assets-object.d.ts +13 -0
  6. package/core/assets-object.js +29 -0
  7. package/core/assets-schema.js +3 -3
  8. package/core/blast-radius.d.ts +13 -0
  9. package/core/blast-radius.js +29 -0
  10. package/core/chart-bullet.d.ts +13 -0
  11. package/core/chart-bullet.js +29 -0
  12. package/core/chart-extrapolate.d.ts +13 -0
  13. package/core/chart-extrapolate.js +29 -0
  14. package/core/chart-funnel.d.ts +13 -0
  15. package/core/chart-funnel.js +29 -0
  16. package/core/data-bucket.d.ts +13 -0
  17. package/core/data-bucket.js +29 -0
  18. package/core/data-formula.d.ts +13 -0
  19. package/core/data-formula.js +29 -0
  20. package/core/data-function.d.ts +13 -0
  21. package/core/data-function.js +29 -0
  22. package/core/data-pivot.d.ts +13 -0
  23. package/core/data-pivot.js +29 -0
  24. package/core/data-transpose.d.ts +13 -0
  25. package/core/data-transpose.js +29 -0
  26. package/core/data-unpivot.d.ts +13 -0
  27. package/core/data-unpivot.js +29 -0
  28. package/core/data-visualization-heatmap.d.ts +13 -0
  29. package/core/data-visualization-heatmap.js +29 -0
  30. package/core/data-visualization-metric.d.ts +13 -0
  31. package/core/data-visualization-metric.js +29 -0
  32. package/core/data-zero-fill.d.ts +13 -0
  33. package/core/data-zero-fill.js +29 -0
  34. package/core/key.d.ts +13 -0
  35. package/core/key.js +29 -0
  36. package/core/power-cable.d.ts +13 -0
  37. package/core/power-cable.js +29 -0
  38. package/core/table-row-limit.d.ts +13 -0
  39. package/core/table-row-limit.js +29 -0
  40. package/core/template-sync.d.ts +13 -0
  41. package/core/template-sync.js +29 -0
  42. package/core/template.js +4 -4
  43. package/core/text-cursor.d.ts +13 -0
  44. package/core/text-cursor.js +29 -0
  45. package/core/world.d.ts +13 -0
  46. package/core/world.js +29 -0
  47. package/dist/cjs/metadata-core.js +214 -4
  48. package/dist/es2019/metadata-core.js +214 -4
  49. package/dist/esm/metadata-core.js +214 -4
  50. package/dist/types/metadata-core.d.ts +1 -1
  51. package/dist/types-ts4.5/metadata-core.d.ts +1 -1
  52. package/package.json +3 -3
  53. package/svgs/core/ai-generative-text.svg +1 -1
  54. package/svgs/core/assets-object-type.svg +1 -0
  55. package/svgs/core/assets-object.svg +1 -0
  56. package/svgs/core/assets-schema.svg +1 -1
  57. package/svgs/core/blast-radius.svg +1 -0
  58. package/svgs/core/chart-bullet.svg +1 -0
  59. package/svgs/core/chart-extrapolate.svg +1 -0
  60. package/svgs/core/chart-funnel.svg +1 -0
  61. package/svgs/core/data-bucket.svg +1 -0
  62. package/svgs/core/data-formula.svg +1 -0
  63. package/svgs/core/data-function.svg +1 -0
  64. package/svgs/core/data-pivot.svg +1 -0
  65. package/svgs/core/data-transpose.svg +1 -0
  66. package/svgs/core/data-unpivot.svg +1 -0
  67. package/svgs/core/data-visualization-heatmap.svg +1 -0
  68. package/svgs/core/data-visualization-metric.svg +1 -0
  69. package/svgs/core/data-zero-fill.svg +1 -0
  70. package/svgs/core/key.svg +1 -0
  71. package/svgs/core/power-cable.svg +1 -0
  72. package/svgs/core/table-row-limit.svg +1 -0
  73. package/svgs/core/template-sync.svg +1 -0
  74. package/svgs/core/template.svg +1 -1
  75. package/svgs/core/text-cursor.svg +1 -0
  76. package/svgs/core/world.svg +1 -0
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::dd034fd19a69034cf846427feb898e18>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const DataVisualizationHeatmapIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default DataVisualizationHeatmapIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::a763c8dd712723c9d650695ac53e1be3>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "DataVisualizationHeatmap".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for representing heatmap data visualizations.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const DataVisualizationHeatmapIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "DataVisualizationHeatmapIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-1.99-1.796L1 13V3a2 2 0 0 1 2-2zM2.5 13l.01.1a.5.5 0 0 0 .49.4h4.25V8.75H2.5zm6.25.5H13a.5.5 0 0 0 .5-.5V8.75H8.75zM3 2.5a.5.5 0 0 0-.5.5v4.25h4.75V2.5z" clip-rule="evenodd"/><path fill="currentcolor" d="M5.88 5.88h-2v-2h2zm6.25 6.25h-2v-2h2z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ DataVisualizationHeatmapIcon.displayName = 'DataVisualizationHeatmapIcon';
29
+ var _default = exports.default = DataVisualizationHeatmapIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::fb49a81929f7520c74e6c88d8f8d74dc>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const DataVisualizationMetricIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default DataVisualizationMetricIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::caf7c91e82456aba15e73fc941c75ef8>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "DataVisualizationMetric".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for single data indicator or metric visualizations.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const DataVisualizationMetricIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "DataVisualizationMetricIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 3a.5.5 0 0 0-.4-.49L14 2.5H2a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5zM16 13a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h12l.204.01A2 2 0 0 1 16 3z"/><path fill="currentcolor" d="M5 6h1v1.5H5zm2.5-.12c0-.76-.62-1.37-1.37-1.37H4.88c-.76 0-1.37.62-1.37 1.38v1.75C3.5 8.39 4.12 9 4.88 9H6v1H4v1.5h2.13c.76 0 1.38-.62 1.38-1.37zm3.5.62c.22 0 .43.1.58.27l1.25 1.5a.75.75 0 0 1-.58 1.23h-2.5a.75.75 0 0 1-.58-1.23l1.25-1.5.06-.06A.75.75 0 0 1 11 6.5"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ DataVisualizationMetricIcon.displayName = 'DataVisualizationMetricIcon';
29
+ var _default = exports.default = DataVisualizationMetricIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::a419626a00e6a1598f8ff0921557df45>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const DataZeroFillIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default DataZeroFillIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::78e21eedddc8d0d7c9448c501c255dcf>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "DataZeroFill".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for replacing empty data fields with zero.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const DataZeroFillIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "DataZeroFillIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="m11.5 5.759-6.629 6.185A3 3 0 0 0 7.5 13.5h1a3 3 0 0 0 3-3zM13 10.5A4.5 4.5 0 0 1 8.5 15h-1A4.5 4.5 0 0 1 3 10.5v-5A4.5 4.5 0 0 1 7.5 1h1A4.5 4.5 0 0 1 13 5.5zm-8.5-.259 6.628-6.186A3 3 0 0 0 8.5 2.5h-1a3 3 0 0 0-3 3z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ DataZeroFillIcon.displayName = 'DataZeroFillIcon';
29
+ var _default = exports.default = DataZeroFillIcon;
package/core/key.d.ts ADDED
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::c52f0d685694decc9e692f08150ff53d>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const KeyIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default KeyIcon;
package/core/key.js ADDED
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::b2b85317457fc6507314039a33523cf0>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "Key".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Known uses: Foreign key or primary key of a data table.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const KeyIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "KeyIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 5.5a4 4 0 1 0-7.74 1.424.75.75 0 0 1-.17.797L1.5 12.81v1.69h2.25v-1.25a.75.75 0 0 1 .75-.75h1.25v-1a.75.75 0 0 1 .309-.606l2.203-1.602.08-.052a.75.75 0 0 1 .644-.036A4 4 0 0 0 14.5 5.5m1.5 0a5.5 5.5 0 0 1-7.177 5.237L7.25 11.882v1.368a.75.75 0 0 1-.75.75H5.25v.938c0 .586-.476 1.062-1.062 1.062H1.063A1.063 1.063 0 0 1 0 14.938v-2.31c0-.276.107-.545.31-.748l4.893-4.895A5.5 5.5 0 1 1 16 5.5"/><path fill="currentcolor" d="M11.125 3.75a1.125 1.125 0 1 1 0 2.25 1.125 1.125 0 0 1 0-2.25"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ KeyIcon.displayName = 'KeyIcon';
29
+ var _default = exports.default = KeyIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::87c0cb308a38b41f40aab1710882265f>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const PowerCableIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default PowerCableIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::f3ea5fcdbdd2a3db3d8f3f267a6778c2>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "PowerCable".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Suggested uses: Data connectivity, Connection, Plugins, Extensions, Extensibility
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const PowerCableIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "PowerCableIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M4.5 3h-3v1.5A.5.5 0 0 0 2 5h2a.5.5 0 0 0 .5-.5zM6 4.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2.25a.75.75 0 0 1 .75-.75H1V0h1.5v1.5h1V0H5v1.5h.33a.75.75 0 0 1 .67.75zm8.5 8.5h-3v-1.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5zm1.5-1.5a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v2.25c0 .41.34.75.75.75H11V16h1.5v-1.5h1V16H15v-1.5h.33a.75.75 0 0 0 .67-.75z"/><path fill="currentcolor" d="M12.25 6.25a1.75 1.75 0 1 0-3.5 0v3.5a3.25 3.25 0 0 1-6.5 0v-4h1.5v4a1.75 1.75 0 1 0 3.5 0v-3.5a3.25 3.25 0 1 1 6.5 0v4h-1.5z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ PowerCableIcon.displayName = 'PowerCableIcon';
29
+ var _default = exports.default = PowerCableIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::bf4476fbd021de26826e3cb22f8bde2d>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const TableRowLimitIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default TableRowLimitIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::b7ae4b9cd5d43aa90860bd66c0aeec7f>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "TableRowLimit".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for limiting table rows.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const TableRowLimitIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "TableRowLimitIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M14.25 1a.75.75 0 0 1 .75.75v7.5a.75.75 0 0 1-.75.75H1.75A.75.75 0 0 1 1 9.25v-7.5A.75.75 0 0 1 1.75 1zM2.5 8.5h11V6.25h-11zm0-3.75h11V2.5h-11zm-.75 8.75a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m2.5 0a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m2.5 0a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m2.5 0a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m2.5 0a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m2.5 0a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5M1.75 11a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5m12.5 0a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ TableRowLimitIcon.displayName = 'TableRowLimitIcon';
29
+ var _default = exports.default = TableRowLimitIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::fddaca3e16a39ee6bca7bad672cfc50b>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const TemplateSyncIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default TemplateSyncIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::61d4a81b9b353a925621781691a7f611>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "TemplateSync".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for saving and updating templates.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const TemplateSyncIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "TemplateSyncIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M13.5 3a.5.5 0 0 0-.5-.5H3a.5.5 0 0 0-.5.5v1.5h11zm-11 10a.5.5 0 0 0 .5.5h2V6H2.5zM15 8h-1.5V6h-7v7.5H8V15H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"/><path fill="currentcolor" d="M11.776 9.168a.75.75 0 0 1 1.004.052l2.75 2.75-1.06 1.06L13 11.56V16h-1.5v-4.44l-1.47 1.47-1.06-1.06 2.75-2.75z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ TemplateSyncIcon.displayName = 'TemplateSyncIcon';
29
+ var _default = exports.default = TemplateSyncIcon;
package/core/template.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::76ff6dfa31430cbbdb50f58f5664db22>>
3
+ * @codegen <<SignedSource::0cdccba3d7742a12d1dd259bf333308d>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -14,15 +14,15 @@ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
14
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  /**
16
16
  * Icon: "Template".
17
- * Category: multi-purpose
17
+ * Category: single-purpose
18
18
  * Location: @atlaskit/icon-lab
19
- * Usage guidance: Used for templates in Whiteboards
19
+ * Usage guidance: Reserved fore templates.
20
20
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const TemplateIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
24
  name: "TemplateIcon",
25
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M1 3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2zm2-.5a.5.5 0 0 0-.5.5v1.5h11V3a.5.5 0 0 0-.5-.5zM13.5 6h-7v7.5H13a.5.5 0 0 0 .5-.5zM5 13.5V6H2.5v7a.5.5 0 0 0 .5.5z" clip-rule="evenodd"/>`
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M13.5 6h-7v7.5H13a.5.5 0 0 0 .5-.5zm-11 7a.5.5 0 0 0 .5.5h2V6H2.5zm11-10a.5.5 0 0 0-.5-.5H3a.5.5 0 0 0-.5.5v1.5h11zM15 13a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"/>`
26
26
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
27
  }, props));
28
28
  TemplateIcon.displayName = 'TemplateIcon';
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::e404a11d93260090dd6917c872852ad2>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const TextCursorIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default TextCursorIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::c7c6525452a697b3cd0685fc28362bfe>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "TextCursor".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Known uses: Renaming
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const TextCursorIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "TextCursorIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M11 1.5c-1.282 0-1.782.463-2.001.791a1.55 1.55 0 0 0-.246.684l-.003.033V8H10v1.5H8.75v2.514l.004.076c.005.07.014.176.034.304.04.259.118.593.268.916.148.323.358.613.65.824.283.205.688.366 1.294.366V16c-.894 0-1.614-.245-2.174-.65A3.4 3.4 0 0 1 8 14.487a3.4 3.4 0 0 1-.826.865C6.614 15.755 5.894 16 5 16v-1.5c.606 0 1.011-.161 1.295-.366.291-.21.5-.501.65-.824.149-.323.227-.657.267-.916a4 4 0 0 0 .038-.38V9.5H6V8h1.25V3.008l-.003-.033a1.55 1.55 0 0 0-.246-.684C6.782 1.963 6.281 1.5 5 1.5V0c1.48 0 2.427.492 3 1.138C8.573.492 9.52 0 11 0z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ TextCursorIcon.displayName = 'TextCursorIcon';
29
+ var _default = exports.default = TextCursorIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::75329438197427848c8de9ccd782b6b0>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const WorldIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default WorldIcon;
package/core/world.js ADDED
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::43688494f0a31d9179ab4b6542dc66c8>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "World".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Known uses: Geographical data visualization.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const WorldIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "WorldIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 8a6.5 6.5 0 1 0-13 0 6.5 6.5 0 0 0 13 0M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0"/><path fill="currentcolor" d="M9.5 12.13a2.63 2.63 0 0 1 2.63-2.63H15V11h-2.87c-.62 0-1.12.5-1.12 1.13V15H9.5zm-1.5.62a2 2 0 0 0-2-2 .5.5 0 0 1-.5-.5v-.5A2.5 2.5 0 0 0 3 7.25H1v1.5h2a1 1 0 0 1 1 1v.5a2 2 0 0 0 2 2 .5.5 0 0 1 .5.5V15H8zm-1.25-6.5A.75.75 0 0 0 6 5.5h-.25A2.5 2.5 0 0 1 3.25 3V1.63h1.5V3a1 1 0 0 0 1 1H6a2.25 2.25 0 0 1 2.25 2.25c0 .41.34.75.75.75h1.5a.5.5 0 0 0 .5-.5 2 2 0 0 1 2-2h1.75V6H13a.5.5 0 0 0-.5.5 2 2 0 0 1-2 2H9a2.25 2.25 0 0 1-2.25-2.25"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ WorldIcon.displayName = 'WorldIcon';
29
+ var _default = exports.default = WorldIcon;