@atlaskit/icon 25.4.0 → 25.6.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 (62) hide show
  1. package/CHANGELOG.md +52 -0
  2. package/core/ai-generative-text-summary.d.ts +13 -0
  3. package/core/ai-generative-text-summary.js +28 -0
  4. package/core/api.js +2 -2
  5. package/core/data-number.js +2 -2
  6. package/core/data-string.js +2 -2
  7. package/core/emoji-remove.js +2 -2
  8. package/core/eye-open-strikethrough.js +2 -2
  9. package/core/field-checkbox-group.js +2 -2
  10. package/core/field-radio-group.js +2 -2
  11. package/core/list-bulleted.js +2 -2
  12. package/core/list-checklist.js +2 -2
  13. package/core/list-numbered.js +2 -2
  14. package/core/migration/refresh.js +2 -2
  15. package/core/notification-muted.js +2 -2
  16. package/core/pin-filled.js +2 -2
  17. package/core/pin.js +2 -2
  18. package/core/refresh.js +2 -2
  19. package/core/retry.js +2 -2
  20. package/core/shield-strikethrough.js +2 -2
  21. package/core/summarize.js +3 -3
  22. package/core/tag.js +2 -2
  23. package/core/text-heading.js +2 -2
  24. package/core/text-strikethrough.js +2 -2
  25. package/core/text.js +2 -2
  26. package/core/video-skip-backward-fifteen.js +2 -2
  27. package/core/video-skip-backward-ten.js +2 -2
  28. package/core/video-skip-forward-fifteen.js +2 -2
  29. package/core/video-skip-forward-ten.js +2 -2
  30. package/core/video.js +2 -2
  31. package/dist/cjs/metadata-core.js +19 -7
  32. package/dist/es2019/metadata-core.js +19 -7
  33. package/dist/esm/metadata-core.js +19 -7
  34. package/dist/types/metadata-core.d.ts +1 -1
  35. package/dist/types-ts4.5/metadata-core.d.ts +1 -1
  36. package/package.json +7 -7
  37. package/svgs/core/ai-generative-text-summary.svg +1 -0
  38. package/svgs/core/api.svg +1 -1
  39. package/svgs/core/data-number.svg +1 -1
  40. package/svgs/core/data-string.svg +1 -1
  41. package/svgs/core/emoji-remove.svg +1 -1
  42. package/svgs/core/eye-open-strikethrough.svg +1 -1
  43. package/svgs/core/field-checkbox-group.svg +1 -1
  44. package/svgs/core/field-radio-group.svg +1 -1
  45. package/svgs/core/list-bulleted.svg +1 -1
  46. package/svgs/core/list-checklist.svg +1 -1
  47. package/svgs/core/list-numbered.svg +1 -1
  48. package/svgs/core/notification-muted.svg +1 -1
  49. package/svgs/core/pin-filled.svg +1 -1
  50. package/svgs/core/pin.svg +1 -1
  51. package/svgs/core/retry.svg +1 -1
  52. package/svgs/core/shield-strikethrough.svg +1 -1
  53. package/svgs/core/summarize.svg +1 -1
  54. package/svgs/core/tag.svg +1 -1
  55. package/svgs/core/text-heading.svg +1 -1
  56. package/svgs/core/text-strikethrough.svg +1 -1
  57. package/svgs/core/text.svg +1 -1
  58. package/svgs/core/video-skip-backward-fifteen.svg +1 -1
  59. package/svgs/core/video-skip-backward-ten.svg +1 -1
  60. package/svgs/core/video-skip-forward-fifteen.svg +1 -1
  61. package/svgs/core/video-skip-forward-ten.svg +1 -1
  62. package/svgs/core/video.svg +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,57 @@
1
1
  # @atlaskit/icon
2
2
 
3
+ ## 25.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#138291](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/138291)
8
+ [`12b2a21a4da5a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/12b2a21a4da5a) -
9
+ This release updates and deprecates icons in `@atlaskit/icon`.
10
+
11
+ ### Updated:
12
+
13
+ **`@atlaskit/icon/core`**
14
+
15
+ - `api`
16
+ - `data-number`
17
+ - `data-string`
18
+ - `emoji-remove`
19
+ - `eye-open-strikethrough`
20
+ - `field-checkbox-group`
21
+ - `field-radio-group`
22
+ - `list-bulleted`
23
+ - `list-checklist`
24
+ - `list-numbered`
25
+ - `notification-muted`
26
+ - `pin-filled`
27
+ - `pin`
28
+ - `retry`
29
+ - `shield-strikethrough`
30
+ - `summarize`
31
+ - `tag`
32
+ - `text-heading`
33
+ - `text-strikethrough`
34
+ - `text`
35
+ - `video-skip-backward-fifteen`
36
+ - `video-skip-backward-ten`
37
+ - `video-skip-forward-fifteen`
38
+ - `video-skip-forward-ten`
39
+ - `video`
40
+
41
+ ## 25.5.0
42
+
43
+ ### Minor Changes
44
+
45
+ - [#135884](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/135884)
46
+ [`20a4ca43b3a13`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/20a4ca43b3a13) -
47
+ This release adds icons in `@atlaskit/icon`.
48
+
49
+ ### Added:
50
+
51
+ **`@atlaskit/icon/core`**
52
+
53
+ - `ai-generative-text-summary`
54
+
3
55
  ## 25.4.0
4
56
 
5
57
  ### 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::23d6118fc1c7b2ca5809d4b9e2772c27>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const AiGenerativeTextSummaryIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default AiGenerativeTextSummaryIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::d4df587d0c3f1832e97f8caba30d1552>>
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: "AiGenerativeTextSummary".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon
19
+ * Usage guidance: Reserved for summarizing content with Atlassian Intelligence & Loom
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 AiGenerativeTextSummaryIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M1 1h14v1.5H1zm0 4.166h14v1.5H1zm10.796 4.328a.75.75 0 0 1 1.41 0l.615 1.687 1.686.615a.75.75 0 0 1 0 1.41l-1.686.615-.615 1.686a.75.75 0 0 1-1.41 0l-.615-1.686-1.687-.615a.75.75 0 0 1 0-1.41l1.687-.615zM1 9.333h7v1.5H1zm0 4.166h5v1.5H1z" clip-rule="evenodd"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ AiGenerativeTextSummaryIcon.displayName = 'AiGenerativeTextSummaryIcon';
28
+ var _default = exports.default = AiGenerativeTextSummaryIcon;
package/core/api.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::0bf32f2b53f2666b067d53fc90856552>>
3
+ * @codegen <<SignedSource::fa2d21adacbbc0a3e154779d17ad74ea>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const ApiIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M11.65 11.56v-1.31h1.32V6.09h-1.32V4.78h4.14v1.31h-1.32v4.16h1.32v1.31zm-5.37 0V4.78h2.34q.71 0 1.25.27.55.27.84.76.3.49.3 1.15 0 .65-.3 1.15-.3.49-.84.76t-1.25.27h-.85v2.43zm2.99-5.2c-.16-.15-.37-.23-.65-.23h-.85v1.65h.84q.42 0 .65-.22a.78.78 0 0 0 .24-.6q0-.38-.24-.59zm-9.08 5.2 1.66-6.79h1.83l1.68 6.79H3.84l-.32-1.51H2.04l-.32 1.51zm3.07-2.73-.3-1.53a23 23 0 0 0-.14-.68l-.04-.21-.04.2q-.06.34-.13.69l-.32 1.54z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M.5 6a2 2 0 0 1 2-2h1a2 2 0 0 1 2 2v6H4V9.5H2V12H.5zM2 8h2V6a.5.5 0 0 0-.5-.5h-1A.5.5 0 0 0 2 6zm5-3.25A.75.75 0 0 1 7.75 4H10a2 2 0 0 1 2 2v1.5a2 2 0 0 1-2 2H8.5V12H7zM8.5 8H10a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5H8.5zM15 4v8h-1.5V4z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  ApiIcon.displayName = 'ApiIcon';
@@ -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::93d278064e4d5eb115b864c87c6ab16a>>
3
+ * @codegen <<SignedSource::1f3899bca2ecac8c863452b45498aaa3>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const DataNumberIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M12.84 10.2q-.2-.19-.2-.53v-.06h-1.49v.06q0 .6.28 1.06.28.45.79.69.52.24 1.21.23t1.21-.23q.52-.24.79-.69a1.95 1.95 0 0 0 .28-1.05v-.56q0-.92-.62-1.46a2.1 2.1 0 0 0-.95-.46l1.3-1.15V4.78h-3.98v1.27h2.36l-1.24 1.1v1.27h.85c.26 0 .46.07.59.19.14.12.21.29.21.53v.55c0 .24-.07.41-.2.53q-.195.18-.6.18-.39 0-.6-.18m-6.99 1.34v-1.38l2.14-2.06q.37-.36.55-.66t.18-.64c0-.26-.07-.44-.2-.58q-.19-.2-.54-.2-.39 0-.6.23-.21.21-.21.62v.06h-1.5v-.06q0-.67.28-1.16.29-.5.82-.77t1.23-.27q.66 0 1.15.25.5.25.77.69.28.45.28 1.05 0 .66-.33 1.27T8.83 9.21l-1.08 1h2.52v1.36zm-3.7-1.31H.46v1.31h4.51v-1.31H3.63V4.78H2.05L.44 5.9v1.57l1.7-1.26z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M.75 4h2a.75.75 0 0 1 .75.75V12H2V5.5H.75zM5 4h3.13c.76 0 1.38.62 1.38 1.38v2c0 .76-.62 1.38-1.37 1.38H6.5v1.75h3V12H5.75a.75.75 0 0 1-.75-.75V8.63c0-.76.62-1.37 1.38-1.37H8V5.5H5zm6 0h3.13c.76 0 1.38.62 1.38 1.38v5.25c0 .76-.62 1.38-1.37 1.38H11v-1.5h3V8.75h-3v-1.5h3V5.5h-3z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  DataNumberIcon.displayName = 'DataNumberIcon';
@@ -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::1ff699d202a9deb4f15afe1fdbb6aca8>>
3
+ * @codegen <<SignedSource::a312c7c776eabf15e984065302dae678>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const DataStringIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M11.63 10.68a2.1 2.1 0 0 1-.28-1.09V6.76q0-.63.28-1.09.29-.46.81-.72t1.2-.26q.69 0 1.2.26.52.25.8.72.29.47.29 1.09v.06h-1.49v-.06c0-.26-.07-.44-.21-.56-.13-.12-.32-.19-.59-.19s-.46.07-.6.19c-.13.13-.2.31-.2.57V9.6c0 .25.07.44.2.57.14.13.33.19.6.19s.46-.07.59-.19q.21-.195.21-.57v-.08h1.49v.06q0 .62-.29 1.09-.28.46-.8.73-.51.25-1.2.25-.68 0-1.2-.25a2 2 0 0 1-.81-.72M9.79 5.26q-.62-.48-1.65-.48H5.93v6.79h2.29q.71 0 1.24-.24t.81-.69q.29-.46.29-1.05 0-.53-.24-.89a1.5 1.5 0 0 0-.62-.56 1.7 1.7 0 0 0-.39-.13q.17-.05.32-.13.36-.19.57-.53.22-.35.22-.8 0-.81-.63-1.29m-2.41 3.4h.79c.29 0 .5.08.66.23.16.14.24.35.24.61q0 .4-.24.61-.23.22-.66.22h-.79zm1.33-1.39q-.2.19-.59.19h-.74V6.01h.74q.38 0 .59.19c.14.12.21.29.21.53q0 .34-.21.54M3.4 10.06l.32 1.51h1.53L3.57 4.78H1.74L.07 11.56H1.6l.32-1.51zM2.17 8.84h.97l-.3-1.53q-.06-.34-.14-.68v-.01l-.04-.21-.04.2q-.06.34-.13.69z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M0 6a2 2 0 0 1 2-2h1a2 2 0 0 1 2 2v6H3.5V9.5h-2V12H0zm1.5 2h2V6a.5.5 0 0 0-.5-.5H2a.5.5 0 0 0-.5.5zM6 8a.75.75 0 0 1 .75-.75H9a2 2 0 0 1 2 2V10a2 2 0 0 1-2 2H6.75a.75.75 0 0 1-.75-.75zm1.5.75v1.75H9a.5.5 0 0 0 .5-.5v-.75a.5.5 0 0 0-.5-.5z" clip-rule="evenodd"/><path fill="currentcolor" fill-rule="evenodd" d="M6 4.75A.75.75 0 0 1 6.75 4H9a2 2 0 0 1 2 2v.75a2 2 0 0 1-2 2H6.75A.75.75 0 0 1 6 8zm1.5.75v1.75H9a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5zM12 6a2 2 0 0 1 2-2h2v1.5h-2a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h2V12h-2a2 2 0 0 1-2-2z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  DataStringIcon.displayName = 'DataStringIcon';
@@ -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::33cdb4ea4a83074eb40719232879a841>>
3
+ * @codegen <<SignedSource::237d404dba7fffb6365f61616f599ade>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const EmojiRemoveIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M8 1.5a6.5 6.5 0 0 0-2.44.473L4.997.583a8 8 0 0 1 10.42 10.42l-1.39-.563A6.5 6.5 0 0 0 8 1.5M1.838 2.898.47 1.53 1.53.47l14 14-1.06 1.06-1.368-1.368A8 8 0 0 1 1.838 2.898m1.066 1.067a6.5 6.5 0 0 0 9.131 9.131l-1.597-1.597c-.62.4-1.445.751-2.438.751-1.225 0-2.196-.536-2.835-1.033a6 6 0 0 1-.944-.925l-.056-.071-.016-.023-.006-.007-.002-.003v-.001s-.001-.001.609-.437l.61-.436-.001-.002.005.007.03.04q.045.056.139.161c.126.14.313.327.552.513.486.378 1.14.717 1.915.717a2.9 2.9 0 0 0 1.343-.346L6.308 7.369a1.25 1.25 0 0 1-1.677-1.677zM9 6.25a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="m10.72 13.9 1.12 1.12A8 8 0 0 1 .98 4.16L2.1 5.28a6.5 6.5 0 0 0 8.63 8.63M8 0C6.61 0 5.3.36 4.16.98L5.28 2.1a6.5 6.5 0 0 1 8.63 8.63l1.12 1.12A8 8 0 0 0 8 0"/><path fill="currentcolor" d="m9.06 5.88 1.57 1.57a1.25 1.25 0 1 0-1.57-1.57m-2.97 4.15c.38.3.87.57 1.44.67l1.43 1.43c-.3.07-.62.11-.96.11-1.23 0-2.2-.54-2.83-1.03a6 6 0 0 1-.94-.92l-.06-.07-.02-.02-.01-.01.61-.44.61-.44.01.01.03.04q.05.06.14.16c.13.14.31.33.55.51M.47 1.53l14 14 1.06-1.06-14-14z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  EmojiRemoveIcon.displayName = 'EmojiRemoveIcon';
@@ -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::a08317faf7bb722eae48d675a4ede28d>>
3
+ * @codegen <<SignedSource::c90f995a462686dc43276b76786a54f3>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const EyeOpenStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M2.76 3.82.47 1.53 1.53.47l14 14-1.06 1.06-2.513-2.512A8.44 8.44 0 0 1 8 14C4.433 14 1.319 11.768.167 8.62a1.8 1.8 0 0 1 0-1.24A8.1 8.1 0 0 1 2.76 3.82m1.069 1.07a6.63 6.63 0 0 0-2.253 3.006.3.3 0 0 0 0 .208C2.509 10.656 5.057 12.5 8 12.5a6.9 6.9 0 0 0 2.836-.604l-1.312-1.311a3 3 0 0 1-4.108-4.108zm2.722 2.72q-.05.187-.051.39a1.5 1.5 0 0 0 1.889 1.448zM8 3.501q-.737 0-1.432.147L6.26 2.18A8.5 8.5 0 0 1 8 2c3.566 0 6.681 2.232 7.833 5.38.146.4.146.84 0 1.24a8 8 0 0 1-1.31 2.295l-1.163-.947a6.5 6.5 0 0 0 1.064-1.864.3.3 0 0 0 0-.208C13.491 5.345 10.943 3.5 8 3.5" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="m.47 1.53 14 14 1.06-1.06-14-14zm8.74 10.86 1.24 1.24A8.5 8.5 0 0 1 8 14C4.43 14 1.32 11.77.17 8.62c-.15-.4-.15-.84 0-1.24a8 8 0 0 1 1.51-2.53l1.06 1.06a6.5 6.5 0 0 0-1.16 1.98.3.3 0 0 0 0 .21c.93 2.56 3.48 4.4 6.42 4.4q.62 0 1.21-.11M8 2a8.5 8.5 0 0 0-2.45.36L6.79 3.6q.59-.1 1.21-.1c2.94 0 5.49 1.85 6.42 4.4a.3.3 0 0 1 0 .21 6.5 6.5 0 0 1-1.16 1.98l1.06 1.06a8 8 0 0 0 1.51-2.53c.15-.4.15-.84 0-1.24C14.68 4.23 11.57 2 8 2"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  EyeOpenStrikethroughIcon.displayName = 'EyeOpenStrikethroughIcon';
@@ -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::420ad7401e9e36b8334ac93bad3db9f8>>
3
+ * @codegen <<SignedSource::012d66b4638df27988cb46b8baf9afaf>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const FieldCheckboxGroupIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M1 2.75A.75.75 0 0 1 1.75 2h3.5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-.75.75h-3.5A.75.75 0 0 1 1 6.25zm1.5.75v2h2v-2zM15 5.25H8v-1.5h7zM1 9.75A.75.75 0 0 1 1.75 9h3.5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-.75.75h-3.5a.75.75 0 0 1-.75-.75zm1.5.75v2h2v-2zM15 12.25H8v-1.5h7z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M1 2.75A.75.75 0 0 1 1.75 2h3.5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-.75.75h-3.5A.75.75 0 0 1 1 6.25zm1.5.75v2h2v-2zM16 5.25H8v-1.5h8zM1 9.75A.75.75 0 0 1 1.75 9h3.5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-.75.75h-3.5a.75.75 0 0 1-.75-.75zm1.5.75v2h2v-2zM16 12.25H8v-1.5h8z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  FieldCheckboxGroupIcon.displayName = 'FieldCheckboxGroupIcon';
@@ -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::2ac01acc0cd87b580a4a3d37e85abea3>>
3
+ * @codegen <<SignedSource::6fe490522ceb563a0953495df893662d>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const FieldRadioGroupIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M.5 4.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0m2.75-1.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5m11.75 2H8v-1.5h7zM.5 11.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0m2.75-1.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5m11.75 2H8v-1.5h7z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M.5 4.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0m2.75-1.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5m11.75 2H8v-1.5h7zM.5 11.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0m2.75-1.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5m11.75 2H8v-1.5h7z" clip-rule="evenodd"/><path fill="currentcolor" fill-rule="evenodd" d="M.5 4.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0m2.75-1.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5m12.75 2H8v-1.5h8zM.5 11.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0m2.75-1.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5m12.75 2H8v-1.5h8z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  FieldRadioGroupIcon.displayName = 'FieldRadioGroupIcon';
@@ -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::ab638983bc02863ddd58167a8aaa3871>>
3
+ * @codegen <<SignedSource::c464a7d95484e897372db9f1fff872cb>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const ListBulletedIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M1 2.75a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0m14 .75H5V2h10zM1 8a1.25 1.25 0 1 1 2.5 0A1.25 1.25 0 0 1 1 8m14 .75H5v-1.5h10zm-14 4.5a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0M15 14H5v-1.5h10z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M.5 4.25a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0m0 7.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0M16 5H6V3.5h10zm0 7.5H6V11h10z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  ListBulletedIcon.displayName = 'ListBulletedIcon';
@@ -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::9311f31d34366a6684ecd3b0a6669e19>>
3
+ * @codegen <<SignedSource::73808f38f66365176a0f7bc5375dd65a>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const ListChecklistIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="m6.04 1.52-2.889 3a.75.75 0 0 1-1.17-.112L.872 2.694l1.258-.816.597.921L4.96.479zM15 3.5H7V2h8zM6.04 6.77l-2.889 3a.75.75 0 0 1-1.17-.112L.872 7.944l1.258-.816.597.921 2.234-2.32zM15 8.75H7v-1.5h8zm-8.96 3.27-2.889 3a.75.75 0 0 1-1.17-.112l-1.11-1.714 1.258-.816.597.921 2.234-2.32zM15 14H7v-1.5h8z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="m5.59 2.47-3 3.75a.75.75 0 0 1-1.22-.06L0 4.03l1.26-.81.81 1.25 2.35-2.94zm0 7.5-3 3.75a.75.75 0 0 1-1.22-.06L0 11.54l1.26-.81.81 1.25 2.35-2.94zM16 5H7V3.5h9zm0 7.5H7V11h9z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  ListChecklistIcon.displayName = 'ListChecklistIcon';
@@ -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::c3f7fe8648d311ffe53fe62f0ab6eb24>>
3
+ * @codegen <<SignedSource::fa2bf03adc23c77b65c7f06320615026>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const ListNumberedIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M15 3.5H5V2h10zm0 5.25H5v-1.5h10zM15 14H5v-1.5h10z" clip-rule="evenodd"/><path fill="currentcolor" d="M2.02 8.22.75 9.44v.98h2.81V9.38H2.31l.38-.35q.42-.38.62-.76a1.65 1.65 0 0 0 .2-.79c0-.25-.06-.48-.18-.67a1.2 1.2 0 0 0-.5-.44 1.55 1.55 0 0 0-.72-.16q-.43 0-.77.17t-.52.49-.18.73v.17h1.12v-.16c0-.14.04-.22.09-.27a.34.34 0 0 1 .25-.09c.11 0 .18.03.22.08.05.05.08.12.08.24a.56.56 0 0 1-.09.3q-.09.15-.29.35m-.25-6v1.94H.81v1.01h2.85V4.15h-.77V1H1.81L.8 1.71v1.23zm-.42 13.35q.33.15.75.15t.75-.15.51-.45q.19-.3.18-.67v-.32c0-.38-.13-.7-.4-.94a1.3 1.3 0 0 0-.37-.22l.62-.55v-.92H.84v.99h1.15l-.5.44v.92h.62c.13 0 .2.03.25.08.04.04.08.1.08.21v.32c0 .11-.03.17-.07.21s-.12.07-.26.07c-.13 0-.21-.03-.26-.07-.04-.04-.07-.11-.07-.21v-.16H.66v.17c0 .25.06.48.18.68q.19.29.51.44"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M16 5H6V3.5h10zm0 7.5H6V11h10zM.5 1h1.75a.75.75 0 0 1 .75.75V7H1.5V2.5h-1zM0 8.5h2.63C3.39 8.5 4 9.12 4 9.88v1.25c0 .76-.62 1.38-1.37 1.38H1.5v1H4V15H.75a.75.75 0 0 1-.75-.75v-1.87C0 11.62.62 11 1.38 11H2.5v-1H0z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  ListNumberedIcon.displayName = 'ListNumberedIcon';
@@ -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::51b314e985f858eff3d9d6d05ad7554f>>
3
+ * @codegen <<SignedSource::97b7deedaffb04632472c93b0c8f5452>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -19,7 +19,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
19
19
  *
20
20
  * Category: single-purpose
21
21
  * Location: @atlaskit/icon
22
- * Usage guidance: Reserved for reloading content.
22
+ * Usage guidance: Reserved for reloading or replaying content
23
23
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
24
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
25
  */
@@ -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::be32f76aba1a1e5490aa5c4a25650594>>
3
+ * @codegen <<SignedSource::27fdd58d5e8efb11eedaeba89ead6c1f>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const NotificationMutedIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M4.933 1.051A5 5 0 0 1 13 5v3.5h-1.5V5a3.5 3.5 0 0 0-5.647-2.765zM3.075 4.135.47 1.53 1.53.47l14 14-1.06 1.06-2.03-2.03h-1.277a3.251 3.251 0 0 1-6.326 0h-2.46a1.375 1.375 0 0 1-1.165-2.104L3 8.535V5q0-.441.075-.865M4.5 5.561v3.075c0 .215-.06.426-.175.608L2.603 12h8.336zM6.418 13.5a1.75 1.75 0 0 0 3.163 0z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="m13 9.818-1.5-1.5V5a3.5 3.5 0 0 0-5.882-2.564L4.557 1.375A5 5 0 0 1 13 5z"/><path fill="currentcolor" fill-rule="evenodd" d="m3 6.182 1.5 1.5v.954c0 .215-.06.426-.175.608L2.603 12h6.215l2.127 2.127a3.25 3.25 0 0 1-6.108-.627h-2.46a1.375 1.375 0 0 1-1.165-2.104L3 8.535zM6.418 13.5a1.75 1.75 0 0 0 3.164 0z" clip-rule="evenodd"/><path fill="currentcolor" d="m.47 1.53 14 14 1.06-1.06-14-14z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  NotificationMutedIcon.displayName = 'NotificationMutedIcon';
@@ -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::bdaf32a98919a579e425d1ed86924cd9>>
3
+ * @codegen <<SignedSource::ebdc34c94ce42f0d6342e71107912c76>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const PinFilledIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M3.925.528C4.004.38 4.255 0 4.75 0h6.502c.462 0 .718.333.814.495.114.194.172.416.19.622a1.83 1.83 0 0 1-.44 1.376c-.1.113-.196.216-.279.305l-.022.023c-.09.098-.16.173-.214.238l-.051.064v4.39l.112.059.213.113c.45.242 1.09.634 1.568 1.429.34.567.565 1.003.697 1.42.138.436.16.809.16 1.216a.75.75 0 0 1-.75.75h-4.5V16h-1.5v-3.5h-4.5a.75.75 0 0 1-.75-.75c0-.936.273-1.662.857-2.636.478-.797 1.119-1.188 1.569-1.43l.324-.172v-4.4a1 1 0 0 0-.065-.089 7 7 0 0 0-.457-.486l-.01-.011c-.417-.42-.503-.98-.47-1.378.018-.204.071-.425.177-.62" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M11.825 2.082A1.375 1.375 0 0 0 10.646 0H5.354a1.375 1.375 0 0 0-1.18 2.082L5 3.458v3.475a5 5 0 0 0-1.184.611C2.898 8.194 2 9.347 2 11.25c0 .414.336.75.75.75h4.5v4h1.5v-4h4.5a.75.75 0 0 0 .75-.75c0-1.903-.898-3.055-1.816-3.706A5 5 0 0 0 11 6.933V3.458z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  PinFilledIcon.displayName = 'PinFilledIcon';
package/core/pin.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::3312dd09d3c69a7705a5fa282bfae7fe>>
3
+ * @codegen <<SignedSource::2dd267d884d525fbe87cf15f66236594>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const PinIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M5.313 1.5c.172.173.376.379.537.578.086.108.178.234.25.374.07.134.15.331.15.566V7.75c0 .503-.34.792-.528.924-.138.096-.326.194-.473.271q-.064.032-.112.06c-.363.194-.722.428-.994.88-.276.461-.442.806-.536 1.115h8.807l-.004-.014c-.077-.244-.227-.558-.553-1.1-.271-.452-.63-.685-.994-.881l-.111-.059a5 5 0 0 1-.474-.272c-.189-.132-.528-.421-.528-.924V3.018c0-.434.27-.765.401-.922a8 8 0 0 1 .286-.318q.125-.133.253-.276l.001-.002zM3.925.528C4.004.38 4.255 0 4.75 0h6.502c.462 0 .718.333.814.495.114.194.172.416.19.622a1.83 1.83 0 0 1-.44 1.376 20 20 0 0 1-.3.328c-.092.098-.16.173-.215.238l-.051.064v4.39l.112.059.213.113c.45.242 1.09.634 1.568 1.429.34.567.565 1.003.697 1.42.138.436.16.809.16 1.216a.75.75 0 0 1-.75.75h-4.5V16h-1.5v-3.5h-4.5a.75.75 0 0 1-.75-.75c0-.936.273-1.662.857-2.636.478-.797 1.119-1.188 1.569-1.43l.324-.172v-4.4a1 1 0 0 0-.068-.093 7 7 0 0 0-.464-.493c-.417-.42-.503-.98-.47-1.378.018-.204.071-.425.177-.62m7.296 2.638" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M11.825 2.082A1.375 1.375 0 0 0 10.646 0H5.354a1.375 1.375 0 0 0-1.18 2.082L5 3.458v3.475a5 5 0 0 0-1.184.611C2.898 8.194 2 9.347 2 11.25c0 .414.336.75.75.75h4.5v4h1.5v-4h4.5a.75.75 0 0 0 .75-.75c0-1.903-.898-3.055-1.816-3.706A5 5 0 0 0 11 6.933V3.458zM10.123 8.24l.012.002.066.015a3.4 3.4 0 0 1 1.115.512c.463.328.939.853 1.114 1.732H3.57a2.68 2.68 0 0 1 1.114-1.732 3.4 3.4 0 0 1 1.181-.527l.012-.002h-.002A.75.75 0 0 0 6.5 7.5V3.25a.75.75 0 0 0-.107-.386L5.575 1.5h4.85l-.818 1.364a.75.75 0 0 0-.107.386V7.5a.75.75 0 0 0 .623.74" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  PinIcon.displayName = 'PinIcon';
package/core/refresh.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::6e7eab119af5e1a479fd38c5143f0e43>>
3
+ * @codegen <<SignedSource::688997f0a16a41562042ca280fe15628>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -16,7 +16,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
16
16
  * Icon: "Refresh".
17
17
  * Category: single-purpose
18
18
  * Location: @atlaskit/icon
19
- * Usage guidance: Reserved for reloading content.
19
+ * Usage guidance: Reserved for reloading or replaying content
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
  */
package/core/retry.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::34150578bc9ce6805d69153dc5cf8a40>>
3
+ * @codegen <<SignedSource::2b87cc7d74b53f2f9074ecfc04ea4b65>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const RetryIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M6.75 2.75a5.25 5.25 0 0 0 0 10.5v1.5A6.75 6.75 0 1 1 13.5 8v1.19l1.345-1.345 1.06 1.06-2.625 2.625a.75.75 0 0 1-1.06 0L9.595 8.905l1.06-1.06L12 9.189V8c0-2.9-2.35-5.25-5.25-5.25" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M1 8a7 7 0 0 1 12.5-4.33V1H15v5a.75.75 0 0 1-.75.75H9.5v-1.5h3.264a5.5 5.5 0 1 0 .665 3.63l1.482.24A7.002 7.002 0 0 1 1 8" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  RetryIcon.displayName = 'RetryIcon';
@@ -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::4784a5f9c715e38a401cf28ea8c94359>>
3
+ * @codegen <<SignedSource::c606b7d53e9baa33fe1abae222c47eae>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const ShieldStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M7.47.22a.75.75 0 0 1 1.06 0c1.298 1.298 2.784 2.191 3.955 2.762.583.284 1.083.486 1.434.615a11 11 0 0 0 .51.174l.023.007h.004A.75.75 0 0 1 15 4.5c0 2.338-.48 4.248-1.194 5.79l-1.362-.63c.568-1.225.98-2.746 1.047-4.623l-.09-.032a17 17 0 0 1-1.573-.675C10.714 3.788 9.31 2.963 8 1.783a15.5 15.5 0 0 1-1.837 1.415l-.826-1.252A13.6 13.6 0 0 0 7.47.22M2.41 3.47.47 1.53 1.53.47l14 14-1.06 1.06L12 13.062a11.4 11.4 0 0 1-2.305 1.997 10 10 0 0 1-1.004.576 7 7 0 0 1-.386.175l-.026.01-.008.004-.003.001h-.002l-.267-.7c-.266.701-.267.7-.267.7h-.004l-.006-.003-.02-.008-.066-.027a9 9 0 0 1-1-.519 11.3 11.3 0 0 1-2.303-1.842C2.651 11.676 1 8.838 1 4.5a.75.75 0 0 1 .543-.72l.207.72a54 54 0 0 0-.207-.72l.004-.002.021-.006.092-.03a10 10 0 0 0 .75-.271m1.146 1.147a16 16 0 0 1-1.047.42c.128 3.604 1.532 5.92 2.907 7.35a9.8 9.8 0 0 0 1.993 1.595c.24.144.443.25.591.322l.029-.014c.204-.1.5-.26.848-.487A10 10 0 0 0 10.938 12zM8 15.125l-.267.7a.75.75 0 0 0 .533.001z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="m9.874 13.056 1.063 1.064a11 11 0 0 1-1.575 1.148 9 9 0 0 1-1 .519l-.065.027-.02.008-.006.002-.003.001-.268-.7-.267.7h-.004l-.006-.003-.02-.008-.066-.027a9 9 0 0 1-1-.519 11.3 11.3 0 0 1-2.303-1.842C2.651 11.676 1 8.838 1 4.5q0-.141.05-.268l.873.873.034.116h.001l.003-.001.011-.004.036-.01.012-.004.53.53c.272 3.21 1.581 5.319 2.866 6.654a9.8 9.8 0 0 0 1.993 1.596c.24.144.443.25.59.322.15-.072.352-.178.592-.322a9.6 9.6 0 0 0 1.283-.926"/><path fill="currentcolor" d="m7.73 15.83.27-.7.27.7a.76.76 0 0 1-.53 0M7.47.22a13.7 13.7 0 0 1-2.26 1.81l1.08 1.08A15.5 15.5 0 0 0 8 1.78c1.31 1.18 2.71 2.01 3.83 2.55a17 17 0 0 0 1.66.71c-.06 1.73-.42 3.17-.92 4.35l1.13 1.13C14.47 8.94 15 6.96 15 4.5a.75.75 0 0 0-.54-.72l-.02-.01-.1-.03a11 11 0 0 1-.41-.14c-.35-.13-.85-.33-1.43-.61-1.19-.58-2.67-1.47-3.97-2.77a.75.75 0 0 0-1.06 0m-7 1.31 14 14 1.06-1.06-14-14z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  ShieldStrikethroughIcon.displayName = 'ShieldStrikethroughIcon';
package/core/summarize.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::31cc4ff5414edc2e185aed486600b2cf>>
3
+ * @codegen <<SignedSource::a03db518592dd1f81c21f51aa111feb9>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -16,12 +16,12 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
16
16
  * Icon: "Summarize".
17
17
  * Category: single-purpose
18
18
  * Location: @atlaskit/icon
19
- * Usage guidance: Reserved for summarizing content with Atlassian Intelligence.
19
+ * Usage guidance: Reserved for summarizing content with Atlassian Intelligence & Loom
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 SummarizeIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M7.5 3.5a1 1 0 0 1 1-1V1A2.5 2.5 0 0 0 6 3.5v2.625c0 .76.616 1.375 1.375 1.375h1.25C9.385 7.5 10 6.884 10 6.125v-1.25c0-.76-.616-1.375-1.375-1.375zm0 1.5h1v1h-1zm-5-1.5a1 1 0 0 1 1-1V1A2.5 2.5 0 0 0 1 3.5v2.625c0 .76.616 1.375 1.375 1.375h1.25C4.385 7.5 5 6.884 5 6.125v-1.25C5 4.115 4.384 3.5 3.625 3.5zm0 1.5h1v1h-1zM15 2h-3.5v1.5H15zm0 3.5h-3.5V7H15zM15 9H1v1.5h14zm0 3.5H1V14h14z" clip-rule="evenodd"/><path fill="currentcolor" d="M8.5 5h-1v1h1zm-5 0h-1v1h1z"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M1 1h14v1.5H1zm0 4.166h14v1.5H1zm10.796 4.328a.75.75 0 0 1 1.41 0l.615 1.687 1.686.615a.75.75 0 0 1 0 1.41l-1.686.615-.615 1.686a.75.75 0 0 1-1.41 0l-.615-1.686-1.687-.615a.75.75 0 0 1 0-1.41l1.687-.615zM1 9.333h7v1.5H1zm0 4.166h5v1.5H1z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  SummarizeIcon.displayName = 'SummarizeIcon';
package/core/tag.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::d3d269e42a209b60a9080b233bea35f1>>
3
+ * @codegen <<SignedSource::338651941b03ec38a528c6808ae2ffcd>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const TagIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M7.354 1.586A2 2 0 0 1 8.768 1H13a2 2 0 0 1 2 2v4.232a2 2 0 0 1-.586 1.414l-5.75 5.75a2 2 0 0 1-2.828 0l-4.232-4.232a2 2 0 0 1 0-2.828zm1.414.914a.5.5 0 0 0-.354.146l-5.75 5.75a.5.5 0 0 0 0 .708l4.232 4.232a.5.5 0 0 0 .708 0l5.75-5.75a.5.5 0 0 0 .146-.354V3a.5.5 0 0 0-.5-.5z" clip-rule="evenodd"/><path fill="currentcolor" d="M10 5a1 1 0 1 1 2 0 1 1 0 0 1-2 0"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M11 4a1 1 0 1 0 0 2 1 1 0 0 0 0-2"/><path fill="currentcolor" fill-rule="evenodd" d="M9.286 1a3.25 3.25 0 0 0-2.299.952L1.604 7.336a2 2 0 0 0 0 2.828l4.232 4.232a2 2 0 0 0 2.828 0l5.384-5.383A3.25 3.25 0 0 0 15 6.714V3a2 2 0 0 0-2-2zM8.048 3.013A1.75 1.75 0 0 1 9.286 2.5H13a.5.5 0 0 1 .5.5v3.714c0 .465-.184.91-.513 1.238l-5.383 5.384a.5.5 0 0 1-.708 0L2.664 9.104a.5.5 0 0 1 0-.708z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  TagIcon.displayName = 'TagIcon';
@@ -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::40c34031d319233940e1957470794793>>
3
+ * @codegen <<SignedSource::0d6280c8f1d121e93782fd12f3e3a1d6>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const TextHeadingIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M1.5 1H6v1.5H4.5v4.75h7V2.5H10V1h4.5v1.5H13v11h1.5V15H10v-1.5h1.5V8.75h-7v4.75H6V15H1.5v-1.5H3v-11H1.5z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M4.5 7.25V1H3v14h1.5V8.75h7V15H13V1h-1.5v6.25z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  TextHeadingIcon.displayName = 'TextHeadingIcon';
@@ -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::3e18717f0b4d79dd3e642b1e785ec0a5>>
3
+ * @codegen <<SignedSource::63a963dd6b891ea11e6d9f6351dcdd6a>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const TextStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" d="M7.47 2.5a2.12 2.12 0 0 0-.58 4.15l2.1.6H15v1.5H1v-1.5h3.98C3.72 6.06 3.42 4.04 4.53 2.5A3.62 3.62 0 0 1 7.47 1h.93a4.08 4.08 0 0 1 3.19 1.53l-1.17.94A2.58 2.58 0 0 0 8.4 2.5zm3.51 7.75h1.58A3.82 3.82 0 0 1 8.86 15h-.67a4.5 4.5 0 0 1-4.11-2.67l-.01-.02 1.37-.61.01.02a3 3 0 0 0 2.74 1.78h.67a2.32 2.32 0 0 0 2.12-3.25"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M7.47 2.5a2.12 2.12 0 0 0-1.79 3.25H4.03a3.59 3.59 0 0 1 .5-3.25A3.62 3.62 0 0 1 7.47 1h.93a4.08 4.08 0 0 1 3.19 1.53l-1.17.94A2.58 2.58 0 0 0 8.4 2.5zm3.51 7.75h1.58A3.82 3.82 0 0 1 8.86 15h-.67a4.5 4.5 0 0 1-4.11-2.67l-.01-.02 1.37-.61.01.02a3 3 0 0 0 2.74 1.78h.67a2.32 2.32 0 0 0 2.12-3.25m4.02-3H1v1.5h14z"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  TextStrikethroughIcon.displayName = 'TextStrikethroughIcon';
package/core/text.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::728fd64557c3d4849e2c4a2b293c1c3a>>
3
+ * @codegen <<SignedSource::c514376430cef925ef724f6e20a216ec>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const TextIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M2 1h12v4h-1.5V2.5H8.813v11H10.5V15h-5v-1.5h1.813v-11H3.5V5H2z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M4.813 2.5H0V1h11v1.5H6.313V15h-1.5zM12 6.5V4h1.5v2.5H16V8h-2.5v5a.5.5 0 0 0 .5.5h2V15h-2a2 2 0 0 1-2-2V8h-2V6.5z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  TextIcon.displayName = 'TextIcon';
@@ -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::b3cfd32d7c56a110a427213334c2cae4>>
3
+ * @codegen <<SignedSource::a21fc4c357261b228c91b1266339bdf4>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -21,7 +21,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
23
23
  const VideoSkipBackwardFifteenIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
- dangerouslySetGlyph: `<path fill="currentcolor" d="M1.27 13.62v1.05h3.89v-1.05H3.97V8.75H2.64l-1.39.97v1.26l1.51-1.12v3.76zm5.2.69q.52.44 1.4.44.92 0 1.44-.46.52-.47.52-1.28v-.58q0-.78-.41-1.21-.4-.44-1.12-.44-.49 0-.79.22a.73.73 0 0 0-.28.39c0-.13.01-.76.01-1.19v-.36h2.37V8.75H6.08v3.24h1.18q.09-.12.24-.18.16-.06.38-.06.37 0 .55.18.19.17.19.5v.58q0 .32-.19.51-.19.18-.54.18-.33 0-.52-.15a.56.56 0 0 1-.2-.42H5.94q.02.75.54 1.18"/><path fill="currentcolor" fill-rule="evenodd" d="M1.141 14.794V13.49h1.492v-3.38l-1.508 1.118v-1.57l1.472-1.033h1.502v4.865h1.184v1.304zm2.833-1.18V8.75H2.636l-1.386.973v1.257l1.508-1.12v3.755H1.266v1.054h3.892v-1.054zm5.42.766c-.376.335-.887.494-1.519.494-.61 0-1.108-.151-1.483-.467-.376-.318-.568-.748-.58-1.277l-.002-.128h1.46l.007.118a.44.44 0 0 0 .157.332c.095.073.237.118.44.118.218 0 .364-.054.457-.144.1-.096.156-.23.156-.42v-.576c0-.198-.055-.327-.146-.41l-.002-.002c-.093-.09-.24-.144-.465-.144a.9.9 0 0 0-.334.056l-.004.001a.4.4 0 0 0-.185.135l-.038.051H5.95V8.625h3.785V9.97H7.383l-.003.236-.008.757a1 1 0 0 1 .072-.06c.223-.166.514-.243.861-.243.508 0 .917.155 1.21.478.299.316.44.753.44 1.293v.576c0 .57-.184 1.032-.56 1.374m.03-3.157q.405.43.405 1.208v.576q0 .81-.519 1.28-.518.463-1.435.463-.883 0-1.402-.438-.475-.4-.53-1.059l-.005-.125h1.216q.016.269.202.422.187.146.52.146.355 0 .543-.178.195-.187.194-.511v-.576q0-.332-.186-.503-.187-.178-.552-.178-.22 0-.38.065a.5.5 0 0 0-.244.178H6.075V8.75H9.61v1.095H7.26l-.005.36-.01.9-.002.294a.7.7 0 0 1 .127-.251" clip-rule="evenodd"/><path fill="currentcolor" fill-rule="evenodd" d="M3.477 2.977a6.75 6.75 0 1 1 9.546 9.546l-1.06-1.06a5.25 5.25 0 1 0-7.425-7.425L3.575 5H5.5v1.5H1.75A.75.75 0 0 1 1 5.75V2h1.5v1.954z" clip-rule="evenodd"/>`
24
+ dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="m1.81 3.75 2.47-2.47L3.22.22l-3 3a.75.75 0 0 0 0 1.06l3 3 1.06-1.06z" clip-rule="evenodd"/><path fill="currentcolor" fill-rule="evenodd" d="m6.06 4.5 1.72 1.72-1.06 1.06-3-3a.75.75 0 0 1 0-1.06l3-3 1.06 1.06L6.06 3h5.69A3.25 3.25 0 0 1 15 6.25v3.5A3.25 3.25 0 0 1 11.75 13H11v-1.5h.75a1.75 1.75 0 0 0 1.75-1.75v-3.5a1.75 1.75 0 0 0-1.75-1.75zM1 9.5h1.75a.75.75 0 0 1 .75.75V16H2v-5H1z" clip-rule="evenodd"/><path fill="currentcolor" fill-rule="evenodd" d="M9 9.5H5.75a.75.75 0 0 0-.75.75v2.5c0 .414.336.75.75.75H7.5v1H5V16h2.625C8.385 16 9 15.384 9 14.625v-1.25C9 12.615 8.384 12 7.625 12H6.5v-1H9z" clip-rule="evenodd"/>`
25
25
  // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
26
  }, props));
27
27
  VideoSkipBackwardFifteenIcon.displayName = 'VideoSkipBackwardFifteenIcon';