@atlaskit/icon-lab 4.8.0 → 4.10.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 (46) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/core/ai-generative-cleanup.d.ts +13 -0
  3. package/core/ai-generative-cleanup.js +28 -0
  4. package/core/atom.d.ts +13 -0
  5. package/core/atom.js +27 -0
  6. package/core/bluetooth.d.ts +13 -0
  7. package/core/bluetooth.js +28 -0
  8. package/core/compass-hinged.d.ts +13 -0
  9. package/core/compass-hinged.js +27 -0
  10. package/core/draw.d.ts +13 -0
  11. package/core/draw.js +28 -0
  12. package/core/eyedropper.d.ts +13 -0
  13. package/core/eyedropper.js +28 -0
  14. package/core/kanban.d.ts +13 -0
  15. package/core/kanban.js +28 -0
  16. package/core/layout-three-columns-sidebars-left.d.ts +13 -0
  17. package/core/layout-three-columns-sidebars-left.js +28 -0
  18. package/core/layout-three-columns-sidebars-right.d.ts +13 -0
  19. package/core/layout-three-columns-sidebars-right.js +28 -0
  20. package/core/save.d.ts +13 -0
  21. package/core/save.js +28 -0
  22. package/core/studio.d.ts +13 -0
  23. package/core/studio.js +28 -0
  24. package/core/telescope.d.ts +13 -0
  25. package/core/telescope.js +28 -0
  26. package/core/text-letter-case.d.ts +13 -0
  27. package/core/text-letter-case.js +28 -0
  28. package/dist/cjs/metadata-core.js +138 -1
  29. package/dist/es2019/metadata-core.js +138 -1
  30. package/dist/esm/metadata-core.js +138 -1
  31. package/dist/types/metadata-core.d.ts +1 -1
  32. package/dist/types-ts4.5/metadata-core.d.ts +1 -1
  33. package/package.json +5 -5
  34. package/svgs/core/ai-generative-cleanup.svg +1 -0
  35. package/svgs/core/atom.svg +1 -0
  36. package/svgs/core/bluetooth.svg +1 -0
  37. package/svgs/core/compass-hinged.svg +1 -0
  38. package/svgs/core/draw.svg +1 -0
  39. package/svgs/core/eyedropper.svg +1 -0
  40. package/svgs/core/kanban.svg +1 -0
  41. package/svgs/core/layout-three-columns-sidebars-left.svg +1 -0
  42. package/svgs/core/layout-three-columns-sidebars-right.svg +1 -0
  43. package/svgs/core/save.svg +1 -0
  44. package/svgs/core/studio.svg +1 -0
  45. package/svgs/core/telescope.svg +1 -0
  46. package/svgs/core/text-letter-case.svg +1 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,48 @@
1
1
  # @atlaskit/icon-lab
2
2
 
3
+ ## 4.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#148003](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/148003)
8
+ [`5e3708b3c4c7f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5e3708b3c4c7f) -
9
+ This release adds icons in `@atlaskit/icon-lab`.
10
+
11
+ ### Added:
12
+
13
+ **`@atlaskit/icon-lab/core`**
14
+
15
+ - `ai-generative-cleanup`
16
+ - `atom`
17
+ - `bluetooth`
18
+ - `compass-hinged`
19
+ - `draw`
20
+ - `eyedropper`
21
+ - `kanban`
22
+ - `save`
23
+ - `text-letter-case`
24
+
25
+ ## 4.9.0
26
+
27
+ ### Minor Changes
28
+
29
+ - [#141669](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/141669)
30
+ [`9834d79a5cece`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9834d79a5cece) -
31
+ This release adds icons in `@atlaskit/icon-lab`.
32
+
33
+ ### Added:
34
+
35
+ **`@atlaskit/icon-lab/core`**
36
+
37
+ - `layout-three-columns-sidebars-left`
38
+ - `layout-three-columns-sidebars-right`
39
+ - `studio`
40
+ - `telescope`
41
+
42
+ ### Patch Changes
43
+
44
+ - Updated dependencies
45
+
3
46
  ## 4.8.0
4
47
 
5
48
  ### Minor Changes
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::35f45db6e0e6b4881900f833cd37e2ec>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const AiGenerativeCleanupIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default AiGenerativeCleanupIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::b3045c8311340ccfec4f05affa6631fd>>
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: "AiGenerativeCleanup".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for automated cleanup and tidy functionality
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 AiGenerativeCleanupIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M14.23.44 12.22 8h1.58a2 2 0 0 1 1.91 2.59l-1.23 4a2 2 0 0 1-1.9 1.41H4.75a.75.75 0 0 1-.28-1.45h-.01l.02-.01q.03-.01.1-.06c.09-.06.23-.16.39-.32.31-.32.71-.88.93-1.84l.03-.09L7 9.3A2 2 0 0 1 8.87 8h1.8L12.78.06zM8.87 9.5a.5.5 0 0 0-.47.33l-1.06 2.89a5.7 5.7 0 0 1-.73 1.78h5.97a.5.5 0 0 0 .48-.35l1.23-4a.5.5 0 0 0-.48-.65zM4.62 1.01a.75.75 0 0 1 .54.38l.05.11.54 1.47.05.1a.5.5 0 0 0 .25.2l1.47.54.11.05a.75.75 0 0 1 0 1.31l-.11.05-1.47.54a.5.5 0 0 0-.3.3l-.54 1.47a.75.75 0 0 1-1.36.11l-.05-.1-.54-1.47a.5.5 0 0 0-.2-.25l-.1-.05-1.47-.53a.75.75 0 0 1-.48-.59L1 4.5l.01-.12a.75.75 0 0 1 .48-.59l1.47-.54.1-.05a.5.5 0 0 0 .2-.25l.54-1.47.05-.11A.75.75 0 0 1 4.5 1z"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ AiGenerativeCleanupIcon.displayName = 'AiGenerativeCleanupIcon';
28
+ var _default = exports.default = AiGenerativeCleanupIcon;
package/core/atom.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::e2977ca58ffcf5bbd4c27a38ce3b20a9>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const AtomIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default AtomIcon;
package/core/atom.js ADDED
@@ -0,0 +1,27 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::eb7d689351fa239e9bf63bbf0f343cfd>>
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: "Atom".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
20
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
21
+ */
22
+ const AtomIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
23
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M9.87 1.42c1.566-.567 3.258-.667 4.318.393 1.059 1.059.959 2.75.392 4.317A11 11 0 0 1 13.683 8c.376.635.678 1.265.897 1.87.567 1.566.667 3.258-.393 4.318-1.059 1.059-2.75.959-4.317.392A11 11 0 0 1 8 13.683a11 11 0 0 1-1.87.897c-1.566.567-3.258.667-4.317-.393-1.06-1.059-.96-2.75-.393-4.317.219-.605.52-1.235.896-1.87a11 11 0 0 1-.896-1.87c-.567-1.566-.667-3.258.393-4.317C2.872.753 4.563.853 6.13 1.42c.605.219 1.235.52 1.87.896a11 11 0 0 1 1.87-.896M3.26 9.397a9 9 0 0 0-.43.983c-.521 1.44-.362 2.342.043 2.747s1.306.564 2.747.043q.476-.173.983-.43a17 17 0 0 1-1.785-1.558A17 17 0 0 1 3.26 9.397m9.48 0a17.4 17.4 0 0 1-3.343 3.342q.507.259.983.43c1.44.522 2.342.363 2.747-.042s.564-1.306.043-2.747a9 9 0 0 0-.43-.983M8 4.099a15.5 15.5 0 0 0-2.121 1.78A15.5 15.5 0 0 0 4.099 8a15.4 15.4 0 0 0 1.78 2.121A15.5 15.5 0 0 0 8 11.901a15.5 15.5 0 0 0 2.121-1.78A15.5 15.5 0 0 0 11.901 8a15.5 15.5 0 0 0-1.78-2.121A15.5 15.5 0 0 0 8 4.099M5.62 2.83c-1.44-.521-2.342-.362-2.747.043S2.31 4.18 2.83 5.62q.173.475.43.983a17 17 0 0 1 1.558-1.785A17 17 0 0 1 6.603 3.26a9 9 0 0 0-.983-.43m7.507.043c-.405-.405-1.306-.564-2.747-.043a9 9 0 0 0-.983.43c.607.46 1.207.981 1.785 1.558a17 17 0 0 1 1.557 1.785q.258-.507.431-.983c.521-1.44.362-2.342-.043-2.747"/><path fill="currentcolor" d="M9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/>`
24
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
25
+ }, props));
26
+ AtomIcon.displayName = 'AtomIcon';
27
+ var _default = exports.default = AtomIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::6aa906018bfa7951d3dda93c95d4dac6>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const BluetoothIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default BluetoothIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::eed7a0647745a0872e95ee08fa696d6a>>
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: "Bluetooth".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for Bluetooth
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 BluetoothIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M7.69.317a.75.75 0 0 1 .804.119l4 3.5a.75.75 0 0 1 0 1.128L9.139 8l3.355 2.936a.75.75 0 0 1 0 1.128l-4 3.5A.75.75 0 0 1 7.25 15V9.653l-2.756 2.411-.988-1.128L6.861 8 3.506 5.064l.988-1.128L7.25 6.347V1a.75.75 0 0 1 .44-.683m1.06 9.336 2.111 1.847-2.111 1.847zm0-3.306V2.653L10.861 4.5z" clip-rule="evenodd"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ BluetoothIcon.displayName = 'BluetoothIcon';
28
+ var _default = exports.default = BluetoothIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::def6da2d83d80ec3fc763d9b1df7b60c>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const CompassHingedIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default CompassHingedIcon;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::32908a99819e910135f53b0d0f549a31>>
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: "CompassHinged".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
20
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
21
+ */
22
+ const CompassHingedIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
23
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M9.25 4.25a1.25 1.25 0 1 0-1.799 1.124l.128.054a1.25 1.25 0 0 0 .97-.054l.15-.087A1.25 1.25 0 0 0 9.25 4.25m-.763 2.706a2.8 2.8 0 0 1-.974 0L6.173 9.7a5.72 5.72 0 0 0 3.653 0zM10.75 4.25c0 .814-.355 1.545-.916 2.048l1.341 2.744a5.77 5.77 0 0 0 2.037-2.36l1.359.635a7.3 7.3 0 0 1-2.733 3.083l2.086 4.27-1.348.66-2.085-4.27A7.2 7.2 0 0 1 8 11.5a7.2 7.2 0 0 1-2.492-.44l-2.085 4.27-1.348-.66L4.16 10.4a7.3 7.3 0 0 1-2.73-3.083l1.36-.634a5.77 5.77 0 0 0 2.035 2.36l1.34-2.745A2.75 2.75 0 0 1 7.25 1.606V0h1.5v1.606a2.75 2.75 0 0 1 2 2.644"/>`
24
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
25
+ }, props));
26
+ CompassHingedIcon.displayName = 'CompassHingedIcon';
27
+ var _default = exports.default = CompassHingedIcon;
package/core/draw.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::0ca3eef1962f845ebdf7d77dbda31a79>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const DrawIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default DrawIcon;
package/core/draw.js ADDED
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::e069b795a512005e254ea3fadbdb31ee>>
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: "Draw".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: For drawing and annotation
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 DrawIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M11.836.854a2 2 0 0 1 2.828 0l.482.482a2 2 0 0 1 0 2.828l-2.148 2.148c.588 1.027.988 2.15 1.1 3.23.13 1.266-.133 2.554-1.068 3.488-1.018 1.02-2.299 1.025-3.367.606-1.038-.408-1.965-1.237-2.537-2.095l1.248-.832c.428.643 1.126 1.251 1.838 1.53.682.268 1.276.212 1.758-.27.515-.515.737-1.294.636-2.273-.075-.723-.324-1.51-.714-2.277l-1.724 1.723c-.197.198-.45.33-.726.38l-2.558.466a.75.75 0 0 1-.872-.872l.465-2.558c.05-.275.183-.529.38-.726l1.766-1.765c-1.535-.756-3.354-.92-4.768.26-1.04.867-1.497 2.919-.725 5.129.747 2.138 2.615 4.253 5.924 5.066l-.358 1.456c-3.816-.937-6.073-3.426-6.982-6.027-.884-2.53-.528-5.353 1.18-6.777 2.215-1.845 4.938-1.29 6.837-.215zm1.768 1.06a.5.5 0 0 0-.708 0l-4.95 4.95-.264 1.454 1.453-.264 4.95-4.95a.5.5 0 0 0 0-.707z" clip-rule="evenodd"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ DrawIcon.displayName = 'DrawIcon';
28
+ var _default = exports.default = DrawIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::660eaab9d416b8f5dfe43d751b3fc637>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const EyedropperIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default EyedropperIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::73726d1546f4839df334733245d697b4>>
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: "Eyedropper".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Sampling a color with a color picker
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 EyedropperIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M10.345 1.845a2.694 2.694 0 1 1 3.81 3.81l-2.47 2.47L13.03 9.47l-1.06 1.06-1.345-1.344-5.173 5.173A2.2 2.2 0 0 1 3.904 15H1.75a.75.75 0 0 1-.75-.75v-2.154c0-.58.23-1.137.641-1.548l5.173-5.173L5.47 4.03l1.06-1.06 1.345 1.344zm-2.47 4.59L2.702 11.61a.7.7 0 0 0-.202.487V13.5h1.404a.7.7 0 0 0 .487-.202l5.173-5.173zm2.75.63-1.69-1.69 2.47-2.47a1.195 1.195 0 0 1 1.69 1.69z" clip-rule="evenodd"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ EyedropperIcon.displayName = 'EyedropperIcon';
28
+ var _default = exports.default = EyedropperIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::373f2f250401628b19c6f175d7ae2bc0>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const KanbanIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default KanbanIcon;
package/core/kanban.js ADDED
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::346d085877a4dcdec1f391305dc4689a>>
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: "Kanban".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Kanban board
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 KanbanIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M13.25 13.5h1.25v-11h-1.25zm-11.75-2h1.25v-9H1.5zm5.75-2h1.5v-7h-1.5zm-3 2.125c0 .76-.616 1.375-1.375 1.375h-1.5C.615 13 0 12.384 0 11.625v-9.25C0 1.615.616 1 1.375 1h1.5c.76 0 1.375.616 1.375 1.375zm6-2c0 .76-.616 1.375-1.375 1.375h-1.75c-.76 0-1.375-.616-1.375-1.375v-7.25C5.75 1.615 6.366 1 7.125 1h1.75c.76 0 1.375.616 1.375 1.375zm5.75 4c0 .76-.616 1.375-1.375 1.375h-1.5c-.76 0-1.375-.616-1.375-1.375V2.375c0-.76.616-1.375 1.375-1.375h1.5C15.385 1 16 1.616 16 2.375z"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ KanbanIcon.displayName = 'KanbanIcon';
28
+ var _default = exports.default = KanbanIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::b10fddd71df670ff6e07ae902e1db1cb>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const LayoutThreeColumnsSidebarsLeftIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default LayoutThreeColumnsSidebarsLeftIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::8011e827a84100ecf0a66bb98e2d5705>>
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: "LayoutThreeColumnsSidebarsLeft".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for 3 column layout with 2 sidebars on left option in Confluence Editor.
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 LayoutThreeColumnsSidebarsLeftIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M0 2.375C0 1.615.616 1 1.375 1h.75c.76 0 1.375.616 1.375 1.375v11.25c0 .76-.616 1.375-1.375 1.375h-.75C.615 15 0 14.384 0 13.625zm1.5.125v11H2v-11zM5 2.375C5 1.615 5.616 1 6.375 1h.75c.76 0 1.375.616 1.375 1.375v11.25c0 .76-.616 1.375-1.375 1.375h-.75C5.615 15 5 14.384 5 13.625zm1.5.125v11H7v-11zm3.5-.125C10 1.615 10.616 1 11.375 1h3.25C15.385 1 16 1.616 16 2.375v11.25c0 .76-.616 1.375-1.375 1.375h-3.25c-.76 0-1.375-.616-1.375-1.375zm1.5.125v11h3v-11z" clip-rule="evenodd"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ LayoutThreeColumnsSidebarsLeftIcon.displayName = 'LayoutThreeColumnsSidebarsLeftIcon';
28
+ var _default = exports.default = LayoutThreeColumnsSidebarsLeftIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::478c16600900804e96459f50620b64d0>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const LayoutThreeColumnsSidebarsRightIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default LayoutThreeColumnsSidebarsRightIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::be0749eebfc6b708c7016889e1de20a0>>
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: "LayoutThreeColumnsSidebarsRight".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for 3 column layout with 2 sidebars on right option in Confluence Editor.
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 LayoutThreeColumnsSidebarsRightIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M0 2.375C0 1.615.616 1 1.375 1h3.25C5.385 1 6 1.616 6 2.375v11.25C6 14.385 5.384 15 4.625 15h-3.25C.615 15 0 14.384 0 13.625zm1.5.125v11h3v-11zm6-.125C7.5 1.615 8.116 1 8.875 1h.75C10.385 1 11 1.616 11 2.375v11.25c0 .76-.616 1.375-1.375 1.375h-.75c-.76 0-1.375-.616-1.375-1.375zM9 2.5v11h.5v-11zm3.5-.125c0-.76.616-1.375 1.375-1.375h.75C15.385 1 16 1.616 16 2.375v11.25c0 .76-.616 1.375-1.375 1.375h-.75c-.76 0-1.375-.616-1.375-1.375zM14 2.5v11h.5v-11z" clip-rule="evenodd"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ LayoutThreeColumnsSidebarsRightIcon.displayName = 'LayoutThreeColumnsSidebarsRightIcon';
28
+ var _default = exports.default = LayoutThreeColumnsSidebarsRightIcon;
package/core/save.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::fa3870495bc1bfb0fe2475002b1a76a0>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const SaveIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default SaveIcon;
package/core/save.js ADDED
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::550880524c74079e72b90991317c8599>>
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: "Save".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for saving
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 SaveIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M3 2.5a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V4.018a.5.5 0 0 0-.146-.354l-1.018-1.018A.5.5 0 0 0 12 2.5v3.75a.75.75 0 0 1-.75.75h-6.5A.75.75 0 0 1 4 6.25V2.5zm2.5 0v3h5v-3zM1 3a2 2 0 0 1 2-2h8.982a2 2 0 0 1 1.414.586l1.018 1.018A2 2 0 0 1 15 4.018V13a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2z" clip-rule="evenodd"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ SaveIcon.displayName = 'SaveIcon';
28
+ var _default = exports.default = SaveIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::2622294ee2582a5f748b152872a027ea>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const StudioIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default StudioIcon;
package/core/studio.js ADDED
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::983082c1a46274d57865b312a3584142>>
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: "Studio".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for functional representation of Atlassian Studio
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 StudioIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M6.5 7.875c0-.76.616-1.375 1.375-1.375h6.75c.76 0 1.375.616 1.375 1.375v6.75c0 .76-.616 1.375-1.375 1.375h-6.75c-.76 0-1.375-.616-1.375-1.375zM8 8v6.5h6.5V8z" clip-rule="evenodd"/><path fill="currentcolor" d="M5.955.235a1.38 1.38 0 0 0-1.41 0L.67 2.549C.254 2.797 0 3.246 0 3.73v4.29c0 .484.254.933.67 1.18l3.875 2.315q.216.128.455.172V10.04L1.5 7.95V3.8l3.75-2.239L9 3.801V5h1.5V3.73c0-.484-.255-.933-.67-1.18z"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ StudioIcon.displayName = 'StudioIcon';
28
+ var _default = exports.default = StudioIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::18598ce35cf7f85a40c338f35b440ed2>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const TelescopeIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default TelescopeIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::8ad4e654fa4e4c8e1f7aa3f5bd455262>>
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: "Telescope".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Known uses: Discover feature in Atlassian Home
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 TelescopeIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M9.708 4.312 3.702 6.799l.091.22.005.011.957 2.31.004.011.091.22 1.417-.587A2 2 0 0 1 9.463 7.66l1.393-.576zm1.77 4.138-1.248.516a2 2 0 0 1-.323 1.404l2.242 3.88-1.298.75-2.192-3.792a2 2 0 0 1-.819 0L5.65 15l-1.3-.75 2.164-3.744-1.205.499a1.376 1.376 0 0 1-1.605-.418l-1.665.69a.75.75 0 0 1-.98-.406L.103 8.56a.75.75 0 0 1 .405-.98l1.665-.69a1.38 1.38 0 0 1 .84-1.43L9.18 2.906a1.38 1.38 0 0 1 .84-1.43L12.446.472a.75.75 0 0 1 .98.405l2.488 6.006a.75.75 0 0 1-.406.98l-2.425 1.004a1.376 1.376 0 0 1-1.605-.417m-8.779-.153-.924.383.383.924.924-.383zm9.925-.863-1.913-4.62 1.617-.67 1.913 4.62zM8.25 8.75a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1" clip-rule="evenodd"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ TelescopeIcon.displayName = 'TelescopeIcon';
28
+ var _default = exports.default = TelescopeIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::e451074937391de300df9f2e5ac7a107>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const TextLetterCaseIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default TextLetterCaseIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::cc3ba3c2cb72e0e35b0f4f0eec3c6e84>>
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: "TextLetterCase".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for letter casing and text-transform
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 TextLetterCaseIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M16 13h-1.5v-.38a3.1 3.1 0 0 1-1.87.63c-1.95 0-3.37-1.78-3.37-3.75s1.42-3.75 3.38-3.75c.71 0 1.35.24 1.88.63v-.63H16zm-3.37-5.75c-.94 0-1.87.91-1.87 2.25s.93 2.25 1.88 2.25 1.86-.91 1.86-2.25-.93-2.25-1.87-2.25M5.71 3.51 8.92 13H7.33l-.84-2.5H2.51L1.67 13H.09l3.2-9.49.17-.51h2.08zM3.02 9h2.96L4.5 4.61z" clip-rule="evenodd"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ TextLetterCaseIcon.displayName = 'TextLetterCaseIcon';
28
+ var _default = exports.default = TextLetterCaseIcon;