@atlaskit/icon 23.6.1 → 23.7.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.
- package/CHANGELOG.md +39 -0
- package/core/cloud-arrow-up.js +2 -2
- package/core/error.js +2 -2
- package/core/exclamation-square.d.ts +13 -0
- package/core/exclamation-square.js +31 -0
- package/core/field-radio-group.js +2 -2
- package/core/information-circle.d.ts +13 -0
- package/core/information-circle.js +31 -0
- package/core/migration/plus-square--issue-raise.d.ts +15 -0
- package/core/migration/plus-square--issue-raise.js +33 -0
- package/core/minus.js +2 -2
- package/core/operations.js +2 -2
- package/core/problem.js +2 -2
- package/core/text-heading.d.ts +13 -0
- package/core/text-heading.js +31 -0
- package/core/text-strikethrough.d.ts +13 -0
- package/core/text-strikethrough.js +31 -0
- package/core/text-underline.d.ts +13 -0
- package/core/text-underline.js +31 -0
- package/core/thumbs-down.js +2 -2
- package/core/thumbs-up.js +2 -2
- package/core/volume-high.js +2 -2
- package/core/volume-low.js +2 -2
- package/core/volume-muted.js +2 -2
- package/core/warning.js +2 -2
- package/dist/cjs/metadata-core.js +54 -3
- package/dist/es2019/metadata-core.js +54 -3
- package/dist/esm/metadata-core.js +54 -3
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/glyph/issue-raise.js +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @atlaskit/icon
|
|
2
2
|
|
|
3
|
+
## 23.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#108250](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/108250)
|
|
8
|
+
[`2ff8982b58a26`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2ff8982b58a26) -
|
|
9
|
+
[ux] This adds and modifies icons in `@atlaskit/icons` and `@atlaskit/icon-lab`
|
|
10
|
+
|
|
11
|
+
### Added:
|
|
12
|
+
|
|
13
|
+
**`@atlaskit/icon/core`**
|
|
14
|
+
|
|
15
|
+
- `exclamation-square`
|
|
16
|
+
- `information-circle`
|
|
17
|
+
- `text-heading`
|
|
18
|
+
- `text-strikethrough`
|
|
19
|
+
- `text-underline`
|
|
20
|
+
|
|
21
|
+
### Updated:
|
|
22
|
+
|
|
23
|
+
**`@atlaskit/icon/core`**
|
|
24
|
+
|
|
25
|
+
- `cloud-arrow-up`
|
|
26
|
+
- `error`
|
|
27
|
+
- `field-radio-group`
|
|
28
|
+
- `minus`
|
|
29
|
+
- `operations`
|
|
30
|
+
- `problem`
|
|
31
|
+
- `thumbs-down`
|
|
32
|
+
- `thumbs-up`
|
|
33
|
+
- `volume-high`
|
|
34
|
+
- `volume-low`
|
|
35
|
+
- `volume-muted`
|
|
36
|
+
- `warning`
|
|
37
|
+
|
|
38
|
+
**`@atlaskit/icon/glyph`**
|
|
39
|
+
|
|
40
|
+
- `issue-raise` - now has replacement icon, `core/plus-square` and migration component
|
|
41
|
+
|
|
3
42
|
## 23.6.1
|
|
4
43
|
|
|
5
44
|
### Patch Changes
|
package/core/cloud-arrow-up.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::
|
|
3
|
+
* @codegen <<SignedSource::ae7bcd071fdd1b31fc8e5ebcc86c0a87>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const CloudArrowUpIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M3.75 12.75a3 3 0 0 1-.733-5.91 5 5 0 0 1 9.908-.456A3.251 3.251 0 0 1 12 12.75m-7-2 3-3 3 3m-3-2.5V16"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
CloudArrowUpIcon.displayName = 'CloudArrowUpIcon';
|
package/core/error.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::
|
|
3
|
+
* @codegen <<SignedSource::3b68101a2126b63a4876496c21ff107c>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const ErrorIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M6.586.
|
|
27
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M6.586.603a2 2 0 0 1 2.828 0l5.982 5.983a2 2 0 0 1 0 2.828l-5.982 5.982a2 2 0 0 1-2.828 0L.604 9.414a2 2 0 0 1 0-2.828zM7.25 9V3.75h1.5V9zM8 12.25a1 1 0 1 0 0-2 1 1 0 0 0 0 2" clip-rule="evenodd"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
ErrorIcon.displayName = 'ErrorIcon';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::14c1984fc1b3dd3cddbc1763d77a2064>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ExclamationSquareIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ExclamationSquareIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e82a1f077b07d029a76fd23862753978>>
|
|
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
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "ExclamationSquare".
|
|
20
|
+
* Category: multi-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Known uses: Exclamation Jira issue type
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const ExclamationSquareIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M8 4v5m-5 5.25h10c.69 0 1.25-.56 1.25-1.25V3c0-.69-.56-1.25-1.25-1.25H3c-.69 0-1.25.56-1.25 1.25v10c0 .69.56 1.25 1.25 1.25Z"/><circle cx="8" cy="11.25" r="1" fill="currentcolor"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
ExclamationSquareIcon.displayName = 'ExclamationSquareIcon';
|
|
31
|
+
var _default = exports.default = ExclamationSquareIcon;
|
|
@@ -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::
|
|
3
|
+
* @codegen <<SignedSource::aadd7b3f1e278f28f767fafbacd105f8>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const FieldRadioGroupIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8 4.5h7m-7 7h7m-11.75-5a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z"/>`
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8 4.5h7m-7 7h7m-11.75-5a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z"/><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8 4.5h7m-7 7h7m-11.75-5a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
FieldRadioGroupIcon.displayName = 'FieldRadioGroupIcon';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::b1d09a6780b34728a0dfb2e77c7c7695>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const InformationCircleIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default InformationCircleIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::39856654360858fbf9936a9caa82eb94>>
|
|
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
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "InformationCircle".
|
|
20
|
+
* Category: multi-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Known uses: For highlighting information when less visual emphasis is needed within the UI compared to the filled information status icon.
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const InformationCircleIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M6.5 7.5H8v5M15.25 8A7.25 7.25 0 1 1 .75 8a7.25 7.25 0 0 1 14.5 0Z"/><circle cx="8" cy="4.5" r="1" fill="currentcolor"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
InformationCircleIcon.displayName = 'InformationCircleIcon';
|
|
31
|
+
var _default = exports.default = InformationCircleIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::73ad9e9c516cc5171e0d63daa8332c91>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
9
|
+
import Icon from '@atlaskit/icon/base-new';
|
|
10
|
+
|
|
11
|
+
declare const PlusSquareIconMigration: {
|
|
12
|
+
(props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default PlusSquareIconMigration;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::dc639c02f4de0af79c2f2ec01e96d222>>
|
|
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 _plusSquare = _interopRequireDefault(require("@atlaskit/icon/core/plus-square"));
|
|
14
|
+
var _issueRaise = _interopRequireDefault(require("@atlaskit/icon/glyph/issue-raise"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
+
/**
|
|
17
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
18
|
+
*
|
|
19
|
+
* Migration Icon component for PlusSquareIcon.
|
|
20
|
+
* This component is PlusSquareIcon, with `UNSAFE_fallbackIcon` set to "IssueRaiseIcon".
|
|
21
|
+
*
|
|
22
|
+
* Category: multi-purpose
|
|
23
|
+
* Location: @atlaskit/icon
|
|
24
|
+
* Usage guidance: Multi purpose - Known usages: 'New feature' Jira issue status.
|
|
25
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
26
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
27
|
+
*/
|
|
28
|
+
const PlusSquareIcon = props => /*#__PURE__*/_react.default.createElement(_plusSquare.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _issueRaise.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
PlusSquareIcon.Name = 'PlusSquareIconMigration';
|
|
33
|
+
var _default = exports.default = PlusSquareIcon;
|
package/core/minus.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::
|
|
3
|
+
* @codegen <<SignedSource::37ec234ed11dd043daaafc3eb477122f>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const MinusIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M1 8h14"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
MinusIcon.displayName = 'MinusIcon';
|
package/core/operations.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::
|
|
3
|
+
* @codegen <<SignedSource::e3cab6b33ef32a5161298a292281902c>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const OperationsIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M10.652 5.348A3.75 3.75 0 1 0 8 11.75m-.25-3.5 5.377-5.377A7.25 7.25 0 1 0 8 15.25"/><path fill="currentcolor" fill-rule="evenodd" d="M14.58 4.862a.75.75 0 0 1 .959.
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M10.652 5.348A3.75 3.75 0 1 0 8 11.75m-.25-3.5 5.377-5.377A7.25 7.25 0 1 0 8 15.25"/><path fill="currentcolor" fill-rule="evenodd" d="M14.58 4.862a.75.75 0 0 1 .959.455l.008.024a.75.75 0 1 1-1.414.5l-.007-.02a.75.75 0 0 1 .454-.959m-2.798 2.573a.75.75 0 0 1 .713.786l-.001.015-.001.015a.75.75 0 1 1-1.498-.084v-.01l.001-.01a.75.75 0 0 1 .786-.712m3.497.184a.75.75 0 0 1 .71.787v.026a.75.75 0 1 1-1.498-.08V8.33a.75.75 0 0 1 .788-.711m-4.205 2.656a.75.75 0 0 1-.074 1.08.75.75 0 1 1-1-1.119l.015-.013a.75.75 0 0 1 1.059.052m3.799.16a.75.75 0 0 1 .355.999l-.011.023a.75.75 0 0 1-1.353-.648l.01-.02a.75.75 0 0 1 .999-.354m-1.457 2.443a.75.75 0 0 1-.053 1.059l-.02.017a.75.75 0 1 1-1.001-1.116l.015-.014a.75.75 0 0 1 1.06.054m-2.278 1.703a.75.75 0 0 1-.454.958l-.025.008a.75.75 0 1 1-.499-1.414l.02-.007a.75.75 0 0 1 .958.455" clip-rule="evenodd"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
OperationsIcon.displayName = 'OperationsIcon';
|
package/core/problem.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::
|
|
3
|
+
* @codegen <<SignedSource::91780e1aab9d60aed41227a3e54fde63>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const ProblemIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M13.127 13.
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M13.127 13.127A7.25 7.25 0 1 0 2.873 2.873m10.253 10.253A7.25 7.25 0 1 1 2.874 2.874m10.253 10.253-1.59-1.59-7.071-7.071-1.592-1.592"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
ProblemIcon.displayName = 'ProblemIcon';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::b4b2f66e936baaba4261de58c4e0b9d9>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const TextHeadingIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default TextHeadingIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::14e22a3fff004688a6071631abdcef24>>
|
|
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
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "TextHeading".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Reserved for representing heading styles
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const TextHeadingIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M12.25 8h-8.5m8.5 0V1.75m0 6.25v6.25m-8.5 0V8m0 6.25H1.5m2.25 0H6M3.75 1.75V8m0-6.25H6m-2.25 0H1.5m10.75 0h2.25m-2.25 0H10m2.25 12.5H10m2.25 0h2.25"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
TextHeadingIcon.displayName = 'TextHeadingIcon';
|
|
31
|
+
var _default = exports.default = TextHeadingIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::f8935e6c51004d9babce5fc82a8490af>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const TextStrikethroughIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default TextStrikethroughIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::d27b9a76cd3e1ac059a1cfffe92a3bdf>>
|
|
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
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "TextStrikethrough".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Reserved for strikethrough text tool
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const TextStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<mask id="a" width="16" height="16" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="currentcolor" fill-rule="evenodd" d="M16 0H0v16h16zm-1 8.75H1v1.5h14z" clip-rule="evenodd"/></mask><g mask="url(#a)"><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M11 3a3.33 3.33 0 0 0-2.6-1.25h-.934a2.866 2.866 0 0 0-.787 5.622l3.018.863a3.067 3.067 0 0 1-.842 6.015h-.668a3.75 3.75 0 0 1-3.427-2.227L4.75 12"/></g><path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M15 8H1"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
TextStrikethroughIcon.displayName = 'TextStrikethroughIcon';
|
|
31
|
+
var _default = exports.default = TextStrikethroughIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::ce1fa4f573f204ab7bcc812fa23edef6>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const TextUnderlineIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default TextUnderlineIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::d9b7da8e2d39a567e8d7a86f42f19fd0>>
|
|
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
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "TextUnderline".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Reserved for underlined text tool
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const TextUnderlineIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M3.75 1v7a3.75 3.75 0 0 0 3.75 3.75h1A3.75 3.75 0 0 0 12.25 8V1M15 15.25H1"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
TextUnderlineIcon.displayName = 'TextUnderlineIcon';
|
|
31
|
+
var _default = exports.default = TextUnderlineIcon;
|
package/core/thumbs-down.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::
|
|
3
|
+
* @codegen <<SignedSource::7f1b107e5566e11f8ffae8c511ebaf5d>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const ThumbsDownIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M11.25 1.75H14c.69 0 1.25.56 1.25 1.25v4.5c0 .69-.56 1.25-1.25 1.25h-2.75m0-7v7m0-7H4.128c-.82 0-1.545.533-1.79 1.316l-1.327 4.25A1.875 1.875 0 0 0 2.8 9.75h3.45v3.175c0 .365.16.712.437.95l.117.1a1.25 1.25 0 0 0 1.923-.372L11.25 8.75"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
ThumbsDownIcon.displayName = 'ThumbsDownIcon';
|
package/core/thumbs-up.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::
|
|
3
|
+
* @codegen <<SignedSource::30c4fb9cb42ea10e984afa7d8dbf41ea>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const ThumbsUpIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M4.75 14.25H2c-.69 0-1.25-.56-1.25-1.25V8.5c0-.69.56-1.25 1.25-1.25h2.75m0 7v-7m0 7h7.121c.82 0 1.546-.533 1.79-1.316l1.328-4.25A1.875 1.875 0 0 0 13.2 6.25H9.75V3.075c0-.365-.16-.712-.437-.95l-.117-.1a1.25 1.25 0 0 0-1.923.372L4.75 7.25"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
ThumbsUpIcon.displayName = 'ThumbsUpIcon';
|
package/core/volume-high.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::
|
|
3
|
+
* @codegen <<SignedSource::ef76fb8ac5470afc3fdfa3cf3e0a3eb3>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const VolumeHighIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M11.5 6a2.83 2.83 0 0 1 0 4m2-6a5.657 5.657 0 0 1 0
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M11.5 6a2.83 2.83 0 0 1 0 4m2-6a5.657 5.657 0 0 1 0 8M.75 6v4c0 .69.56 1.25 1.25 1.25h2.04c.297 0 .584.106.81.299l2.87 2.447a.625.625 0 0 0 1.03-.476V2.48a.625.625 0 0 0-1.03-.476L4.85 4.451a1.25 1.25 0 0 1-.81.299H2C1.31 4.75.75 5.31.75 6Z"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
VolumeHighIcon.displayName = 'VolumeHighIcon';
|
package/core/volume-low.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::
|
|
3
|
+
* @codegen <<SignedSource::5e0149ab63bf2d3abe8b55f9e0dc3b41>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const VolumeLowIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M11.5 6a2.83 2.83 0 0 1 0
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M11.5 6a2.83 2.83 0 0 1 0 4M.75 6v4c0 .69.56 1.25 1.25 1.25h2.04c.297 0 .584.106.81.299l2.87 2.447a.625.625 0 0 0 1.03-.476V2.48a.625.625 0 0 0-1.03-.476L4.85 4.451a1.25 1.25 0 0 1-.81.299H2C1.31 4.75.75 5.31.75 6Z"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
VolumeLowIcon.displayName = 'VolumeLowIcon';
|
package/core/volume-muted.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::
|
|
3
|
+
* @codegen <<SignedSource::0e17c4d7491d19a4ccb1aada4c313951>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const VolumeMutedIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="m13.25 8-2-2m2 2 2 2m-2-2 2-2m-2 2-2 2M.75 6v4c0 .69.56 1.25 1.25 1.25h2.04c.297 0 .584.106.81.299l2.87 2.447a.625.625 0 0 0 1.03-.476V2.48a.625.625 0 0 0-1.03-.476L4.85 4.451a1.25 1.25 0 0 1-.81.299H2C1.31 4.75.75 5.31.75 6Z"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
VolumeMutedIcon.displayName = 'VolumeMutedIcon';
|
package/core/warning.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::
|
|
3
|
+
* @codegen <<SignedSource::7c98656236bc53393fa6ba56b7b64edc>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -24,7 +24,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
26
|
const WarningIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
-
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M6.242 1.168c.757-1.
|
|
27
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M6.242 1.168c.757-1.396 2.76-1.396 3.516 0l5.9 10.878c.723 1.332-.242 2.953-1.758 2.953H2.1C.584 15-.38 13.38.342 12.046zM7.25 9.499v-5h1.5v5zM8 12.75a1 1 0 1 0 0-2 1 1 0 0 0 0 2" clip-rule="evenodd"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
WarningIcon.displayName = 'WarningIcon';
|
|
@@ -9,7 +9,7 @@ exports.default = void 0;
|
|
|
9
9
|
*
|
|
10
10
|
* To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
11
11
|
*
|
|
12
|
-
* @codegen <<SignedSource::
|
|
12
|
+
* @codegen <<SignedSource::297cb37fa9fafef1e1b28e02fb2b1a3a>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -1008,7 +1008,7 @@ var metadata = {
|
|
|
1008
1008
|
team: 'Design System Team'
|
|
1009
1009
|
},
|
|
1010
1010
|
error: {
|
|
1011
|
-
keywords: ['error', 'warning', 'alert', 'icon', 'core', 'filled', 'status'],
|
|
1011
|
+
keywords: ['error', 'warning', 'alert', 'icon', 'core', 'filled', 'status', 'danger', 'exclamation', '!', 'stop'],
|
|
1012
1012
|
componentName: 'ErrorIcon',
|
|
1013
1013
|
package: '@atlaskit/icon/core/error',
|
|
1014
1014
|
oldName: ['error'],
|
|
@@ -1017,6 +1017,16 @@ var metadata = {
|
|
|
1017
1017
|
usage: 'Single purpose - Reserved for when there is an error.',
|
|
1018
1018
|
team: 'Design System Team'
|
|
1019
1019
|
},
|
|
1020
|
+
'exclamation-square': {
|
|
1021
|
+
keywords: ['exclamation-square', 'exclamationsquare', 'icon', 'core', '!', 'exclaimation', 'exclaim', 'issue type', 'square'],
|
|
1022
|
+
componentName: 'ExclamationSquareIcon',
|
|
1023
|
+
package: '@atlaskit/icon/core/exclamation-square',
|
|
1024
|
+
type: 'core',
|
|
1025
|
+
categorization: 'multi-purpose',
|
|
1026
|
+
usage: 'Known uses: Exclamation Jira issue type',
|
|
1027
|
+
team: 'Design System Team',
|
|
1028
|
+
slackChannel: '#icon-contributions'
|
|
1029
|
+
},
|
|
1020
1030
|
'expand-horizontal': {
|
|
1021
1031
|
keywords: ['expand-horizontal', 'expandhorizontal', 'icon', 'core', 'expand', 'width', 'horizontal arrows', 'maximum width', 'stretch', 'fit'],
|
|
1022
1032
|
componentName: 'ExpandHorizontalIcon',
|
|
@@ -1417,6 +1427,16 @@ var metadata = {
|
|
|
1417
1427
|
usage: 'Single purpose - Known uses: information state in section messages or inline messages.',
|
|
1418
1428
|
team: 'Design System Team'
|
|
1419
1429
|
},
|
|
1430
|
+
'information-circle': {
|
|
1431
|
+
keywords: ['information-circle', 'informationcircle', 'icon', 'core', 'information', 'circle', 'info'],
|
|
1432
|
+
componentName: 'InformationCircleIcon',
|
|
1433
|
+
package: '@atlaskit/icon/core/information-circle',
|
|
1434
|
+
type: 'core',
|
|
1435
|
+
categorization: 'multi-purpose',
|
|
1436
|
+
usage: 'Known uses: For highlighting information when less visual emphasis is needed within the UI compared to the filled information status icon.',
|
|
1437
|
+
team: 'Design System Team',
|
|
1438
|
+
slackChannel: '#icon-contributions'
|
|
1439
|
+
},
|
|
1420
1440
|
issue: {
|
|
1421
1441
|
keywords: ['issue', 'tick', 'check', 'confirm', 'task', 'icon', 'core', 'single issue', 'jira status', 'check mark', 'tick'],
|
|
1422
1442
|
componentName: 'IssueIcon',
|
|
@@ -2001,6 +2021,7 @@ var metadata = {
|
|
|
2001
2021
|
keywords: ['plus-square', 'plussquare', 'icon', 'core', 'square', 'plus', 'add'],
|
|
2002
2022
|
componentName: 'PlusSquareIcon',
|
|
2003
2023
|
package: '@atlaskit/icon/core/plus-square',
|
|
2024
|
+
oldName: ['issue-raise'],
|
|
2004
2025
|
type: 'core',
|
|
2005
2026
|
categorization: 'multi-purpose',
|
|
2006
2027
|
usage: "Multi purpose - Known usages: 'New feature' Jira issue status.",
|
|
@@ -2878,6 +2899,16 @@ var metadata = {
|
|
|
2878
2899
|
usage: 'Single purpose - Reserved for bolding text.',
|
|
2879
2900
|
team: 'Design System Team'
|
|
2880
2901
|
},
|
|
2902
|
+
'text-heading': {
|
|
2903
|
+
keywords: ['text-heading', 'textheading', 'icon', 'core', 'text', 'heading', 'H', 'editor', 'text style'],
|
|
2904
|
+
componentName: 'TextHeadingIcon',
|
|
2905
|
+
package: '@atlaskit/icon/core/text-heading',
|
|
2906
|
+
type: 'core',
|
|
2907
|
+
categorization: 'single-purpose',
|
|
2908
|
+
usage: 'Reserved for representing heading styles',
|
|
2909
|
+
team: 'Design System Team',
|
|
2910
|
+
slackChannel: '#icon-contributions'
|
|
2911
|
+
},
|
|
2881
2912
|
'text-indent-left': {
|
|
2882
2913
|
keywords: ['text-indent-left', 'textindentleft', 'icon', 'core', 'text', 'outdent', 'left', 'arrow'],
|
|
2883
2914
|
componentName: 'TextIndentLeftIcon',
|
|
@@ -2926,6 +2957,16 @@ var metadata = {
|
|
|
2926
2957
|
usage: 'Single purpose - Reserved for spellchecking.',
|
|
2927
2958
|
team: 'Design System Team'
|
|
2928
2959
|
},
|
|
2960
|
+
'text-strikethrough': {
|
|
2961
|
+
keywords: ['text-strikethrough', 'textstrikethrough', 'icon', 'core', 'text', 'strikethrough', 'editor', 'cross out'],
|
|
2962
|
+
componentName: 'TextStrikethroughIcon',
|
|
2963
|
+
package: '@atlaskit/icon/core/text-strikethrough',
|
|
2964
|
+
type: 'core',
|
|
2965
|
+
categorization: 'single-purpose',
|
|
2966
|
+
usage: 'Reserved for strikethrough text tool',
|
|
2967
|
+
team: 'Design System Team',
|
|
2968
|
+
slackChannel: '#icon-contributions'
|
|
2969
|
+
},
|
|
2929
2970
|
'text-style': {
|
|
2930
2971
|
keywords: ['text-style', 'textstyle', 'icon', 'core', 'characters', 'font', 'letters', 'type', 'typography'],
|
|
2931
2972
|
componentName: 'TextStyleIcon',
|
|
@@ -2936,6 +2977,16 @@ var metadata = {
|
|
|
2936
2977
|
usage: 'Single purpose - Reserved for text styles in Editor.',
|
|
2937
2978
|
team: 'Editor'
|
|
2938
2979
|
},
|
|
2980
|
+
'text-underline': {
|
|
2981
|
+
keywords: ['text-underline', 'textunderline', 'icon', 'core', 'text', 'underline', 'U', 'editor'],
|
|
2982
|
+
componentName: 'TextUnderlineIcon',
|
|
2983
|
+
package: '@atlaskit/icon/core/text-underline',
|
|
2984
|
+
type: 'core',
|
|
2985
|
+
categorization: 'single-purpose',
|
|
2986
|
+
usage: 'Reserved for underlined text tool',
|
|
2987
|
+
team: 'Design System Team',
|
|
2988
|
+
slackChannel: '#icon-contributions'
|
|
2989
|
+
},
|
|
2939
2990
|
'text-wrap': {
|
|
2940
2991
|
keywords: ['text-wrap', 'textwrap', 'icon', 'core', 'text', 'wrap', 'line wrap'],
|
|
2941
2992
|
componentName: 'TextWrapIcon',
|
|
@@ -3218,7 +3269,7 @@ var metadata = {
|
|
|
3218
3269
|
team: 'Design System Team'
|
|
3219
3270
|
},
|
|
3220
3271
|
warning: {
|
|
3221
|
-
keywords: ['warning', 'error', 'alert', 'icon', 'core', 'alert', '
|
|
3272
|
+
keywords: ['warning', 'error', 'alert', 'icon', 'core', 'alert', 'triangle', 'filled', 'exclamation', '!', 'warning'],
|
|
3222
3273
|
componentName: 'WarningIcon',
|
|
3223
3274
|
package: '@atlaskit/icon/core/warning',
|
|
3224
3275
|
oldName: ['editor/warning', 'warning'],
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::297cb37fa9fafef1e1b28e02fb2b1a3a>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -1002,7 +1002,7 @@ const metadata = {
|
|
|
1002
1002
|
team: 'Design System Team'
|
|
1003
1003
|
},
|
|
1004
1004
|
error: {
|
|
1005
|
-
keywords: ['error', 'warning', 'alert', 'icon', 'core', 'filled', 'status'],
|
|
1005
|
+
keywords: ['error', 'warning', 'alert', 'icon', 'core', 'filled', 'status', 'danger', 'exclamation', '!', 'stop'],
|
|
1006
1006
|
componentName: 'ErrorIcon',
|
|
1007
1007
|
package: '@atlaskit/icon/core/error',
|
|
1008
1008
|
oldName: ['error'],
|
|
@@ -1011,6 +1011,16 @@ const metadata = {
|
|
|
1011
1011
|
usage: 'Single purpose - Reserved for when there is an error.',
|
|
1012
1012
|
team: 'Design System Team'
|
|
1013
1013
|
},
|
|
1014
|
+
'exclamation-square': {
|
|
1015
|
+
keywords: ['exclamation-square', 'exclamationsquare', 'icon', 'core', '!', 'exclaimation', 'exclaim', 'issue type', 'square'],
|
|
1016
|
+
componentName: 'ExclamationSquareIcon',
|
|
1017
|
+
package: '@atlaskit/icon/core/exclamation-square',
|
|
1018
|
+
type: 'core',
|
|
1019
|
+
categorization: 'multi-purpose',
|
|
1020
|
+
usage: 'Known uses: Exclamation Jira issue type',
|
|
1021
|
+
team: 'Design System Team',
|
|
1022
|
+
slackChannel: '#icon-contributions'
|
|
1023
|
+
},
|
|
1014
1024
|
'expand-horizontal': {
|
|
1015
1025
|
keywords: ['expand-horizontal', 'expandhorizontal', 'icon', 'core', 'expand', 'width', 'horizontal arrows', 'maximum width', 'stretch', 'fit'],
|
|
1016
1026
|
componentName: 'ExpandHorizontalIcon',
|
|
@@ -1411,6 +1421,16 @@ const metadata = {
|
|
|
1411
1421
|
usage: 'Single purpose - Known uses: information state in section messages or inline messages.',
|
|
1412
1422
|
team: 'Design System Team'
|
|
1413
1423
|
},
|
|
1424
|
+
'information-circle': {
|
|
1425
|
+
keywords: ['information-circle', 'informationcircle', 'icon', 'core', 'information', 'circle', 'info'],
|
|
1426
|
+
componentName: 'InformationCircleIcon',
|
|
1427
|
+
package: '@atlaskit/icon/core/information-circle',
|
|
1428
|
+
type: 'core',
|
|
1429
|
+
categorization: 'multi-purpose',
|
|
1430
|
+
usage: 'Known uses: For highlighting information when less visual emphasis is needed within the UI compared to the filled information status icon.',
|
|
1431
|
+
team: 'Design System Team',
|
|
1432
|
+
slackChannel: '#icon-contributions'
|
|
1433
|
+
},
|
|
1414
1434
|
issue: {
|
|
1415
1435
|
keywords: ['issue', 'tick', 'check', 'confirm', 'task', 'icon', 'core', 'single issue', 'jira status', 'check mark', 'tick'],
|
|
1416
1436
|
componentName: 'IssueIcon',
|
|
@@ -1995,6 +2015,7 @@ const metadata = {
|
|
|
1995
2015
|
keywords: ['plus-square', 'plussquare', 'icon', 'core', 'square', 'plus', 'add'],
|
|
1996
2016
|
componentName: 'PlusSquareIcon',
|
|
1997
2017
|
package: '@atlaskit/icon/core/plus-square',
|
|
2018
|
+
oldName: ['issue-raise'],
|
|
1998
2019
|
type: 'core',
|
|
1999
2020
|
categorization: 'multi-purpose',
|
|
2000
2021
|
usage: "Multi purpose - Known usages: 'New feature' Jira issue status.",
|
|
@@ -2872,6 +2893,16 @@ const metadata = {
|
|
|
2872
2893
|
usage: 'Single purpose - Reserved for bolding text.',
|
|
2873
2894
|
team: 'Design System Team'
|
|
2874
2895
|
},
|
|
2896
|
+
'text-heading': {
|
|
2897
|
+
keywords: ['text-heading', 'textheading', 'icon', 'core', 'text', 'heading', 'H', 'editor', 'text style'],
|
|
2898
|
+
componentName: 'TextHeadingIcon',
|
|
2899
|
+
package: '@atlaskit/icon/core/text-heading',
|
|
2900
|
+
type: 'core',
|
|
2901
|
+
categorization: 'single-purpose',
|
|
2902
|
+
usage: 'Reserved for representing heading styles',
|
|
2903
|
+
team: 'Design System Team',
|
|
2904
|
+
slackChannel: '#icon-contributions'
|
|
2905
|
+
},
|
|
2875
2906
|
'text-indent-left': {
|
|
2876
2907
|
keywords: ['text-indent-left', 'textindentleft', 'icon', 'core', 'text', 'outdent', 'left', 'arrow'],
|
|
2877
2908
|
componentName: 'TextIndentLeftIcon',
|
|
@@ -2920,6 +2951,16 @@ const metadata = {
|
|
|
2920
2951
|
usage: 'Single purpose - Reserved for spellchecking.',
|
|
2921
2952
|
team: 'Design System Team'
|
|
2922
2953
|
},
|
|
2954
|
+
'text-strikethrough': {
|
|
2955
|
+
keywords: ['text-strikethrough', 'textstrikethrough', 'icon', 'core', 'text', 'strikethrough', 'editor', 'cross out'],
|
|
2956
|
+
componentName: 'TextStrikethroughIcon',
|
|
2957
|
+
package: '@atlaskit/icon/core/text-strikethrough',
|
|
2958
|
+
type: 'core',
|
|
2959
|
+
categorization: 'single-purpose',
|
|
2960
|
+
usage: 'Reserved for strikethrough text tool',
|
|
2961
|
+
team: 'Design System Team',
|
|
2962
|
+
slackChannel: '#icon-contributions'
|
|
2963
|
+
},
|
|
2923
2964
|
'text-style': {
|
|
2924
2965
|
keywords: ['text-style', 'textstyle', 'icon', 'core', 'characters', 'font', 'letters', 'type', 'typography'],
|
|
2925
2966
|
componentName: 'TextStyleIcon',
|
|
@@ -2930,6 +2971,16 @@ const metadata = {
|
|
|
2930
2971
|
usage: 'Single purpose - Reserved for text styles in Editor.',
|
|
2931
2972
|
team: 'Editor'
|
|
2932
2973
|
},
|
|
2974
|
+
'text-underline': {
|
|
2975
|
+
keywords: ['text-underline', 'textunderline', 'icon', 'core', 'text', 'underline', 'U', 'editor'],
|
|
2976
|
+
componentName: 'TextUnderlineIcon',
|
|
2977
|
+
package: '@atlaskit/icon/core/text-underline',
|
|
2978
|
+
type: 'core',
|
|
2979
|
+
categorization: 'single-purpose',
|
|
2980
|
+
usage: 'Reserved for underlined text tool',
|
|
2981
|
+
team: 'Design System Team',
|
|
2982
|
+
slackChannel: '#icon-contributions'
|
|
2983
|
+
},
|
|
2933
2984
|
'text-wrap': {
|
|
2934
2985
|
keywords: ['text-wrap', 'textwrap', 'icon', 'core', 'text', 'wrap', 'line wrap'],
|
|
2935
2986
|
componentName: 'TextWrapIcon',
|
|
@@ -3212,7 +3263,7 @@ const metadata = {
|
|
|
3212
3263
|
team: 'Design System Team'
|
|
3213
3264
|
},
|
|
3214
3265
|
warning: {
|
|
3215
|
-
keywords: ['warning', 'error', 'alert', 'icon', 'core', 'alert', '
|
|
3266
|
+
keywords: ['warning', 'error', 'alert', 'icon', 'core', 'alert', 'triangle', 'filled', 'exclamation', '!', 'warning'],
|
|
3216
3267
|
componentName: 'WarningIcon',
|
|
3217
3268
|
package: '@atlaskit/icon/core/warning',
|
|
3218
3269
|
oldName: ['editor/warning', 'warning'],
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::297cb37fa9fafef1e1b28e02fb2b1a3a>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -1002,7 +1002,7 @@ var metadata = {
|
|
|
1002
1002
|
team: 'Design System Team'
|
|
1003
1003
|
},
|
|
1004
1004
|
error: {
|
|
1005
|
-
keywords: ['error', 'warning', 'alert', 'icon', 'core', 'filled', 'status'],
|
|
1005
|
+
keywords: ['error', 'warning', 'alert', 'icon', 'core', 'filled', 'status', 'danger', 'exclamation', '!', 'stop'],
|
|
1006
1006
|
componentName: 'ErrorIcon',
|
|
1007
1007
|
package: '@atlaskit/icon/core/error',
|
|
1008
1008
|
oldName: ['error'],
|
|
@@ -1011,6 +1011,16 @@ var metadata = {
|
|
|
1011
1011
|
usage: 'Single purpose - Reserved for when there is an error.',
|
|
1012
1012
|
team: 'Design System Team'
|
|
1013
1013
|
},
|
|
1014
|
+
'exclamation-square': {
|
|
1015
|
+
keywords: ['exclamation-square', 'exclamationsquare', 'icon', 'core', '!', 'exclaimation', 'exclaim', 'issue type', 'square'],
|
|
1016
|
+
componentName: 'ExclamationSquareIcon',
|
|
1017
|
+
package: '@atlaskit/icon/core/exclamation-square',
|
|
1018
|
+
type: 'core',
|
|
1019
|
+
categorization: 'multi-purpose',
|
|
1020
|
+
usage: 'Known uses: Exclamation Jira issue type',
|
|
1021
|
+
team: 'Design System Team',
|
|
1022
|
+
slackChannel: '#icon-contributions'
|
|
1023
|
+
},
|
|
1014
1024
|
'expand-horizontal': {
|
|
1015
1025
|
keywords: ['expand-horizontal', 'expandhorizontal', 'icon', 'core', 'expand', 'width', 'horizontal arrows', 'maximum width', 'stretch', 'fit'],
|
|
1016
1026
|
componentName: 'ExpandHorizontalIcon',
|
|
@@ -1411,6 +1421,16 @@ var metadata = {
|
|
|
1411
1421
|
usage: 'Single purpose - Known uses: information state in section messages or inline messages.',
|
|
1412
1422
|
team: 'Design System Team'
|
|
1413
1423
|
},
|
|
1424
|
+
'information-circle': {
|
|
1425
|
+
keywords: ['information-circle', 'informationcircle', 'icon', 'core', 'information', 'circle', 'info'],
|
|
1426
|
+
componentName: 'InformationCircleIcon',
|
|
1427
|
+
package: '@atlaskit/icon/core/information-circle',
|
|
1428
|
+
type: 'core',
|
|
1429
|
+
categorization: 'multi-purpose',
|
|
1430
|
+
usage: 'Known uses: For highlighting information when less visual emphasis is needed within the UI compared to the filled information status icon.',
|
|
1431
|
+
team: 'Design System Team',
|
|
1432
|
+
slackChannel: '#icon-contributions'
|
|
1433
|
+
},
|
|
1414
1434
|
issue: {
|
|
1415
1435
|
keywords: ['issue', 'tick', 'check', 'confirm', 'task', 'icon', 'core', 'single issue', 'jira status', 'check mark', 'tick'],
|
|
1416
1436
|
componentName: 'IssueIcon',
|
|
@@ -1995,6 +2015,7 @@ var metadata = {
|
|
|
1995
2015
|
keywords: ['plus-square', 'plussquare', 'icon', 'core', 'square', 'plus', 'add'],
|
|
1996
2016
|
componentName: 'PlusSquareIcon',
|
|
1997
2017
|
package: '@atlaskit/icon/core/plus-square',
|
|
2018
|
+
oldName: ['issue-raise'],
|
|
1998
2019
|
type: 'core',
|
|
1999
2020
|
categorization: 'multi-purpose',
|
|
2000
2021
|
usage: "Multi purpose - Known usages: 'New feature' Jira issue status.",
|
|
@@ -2872,6 +2893,16 @@ var metadata = {
|
|
|
2872
2893
|
usage: 'Single purpose - Reserved for bolding text.',
|
|
2873
2894
|
team: 'Design System Team'
|
|
2874
2895
|
},
|
|
2896
|
+
'text-heading': {
|
|
2897
|
+
keywords: ['text-heading', 'textheading', 'icon', 'core', 'text', 'heading', 'H', 'editor', 'text style'],
|
|
2898
|
+
componentName: 'TextHeadingIcon',
|
|
2899
|
+
package: '@atlaskit/icon/core/text-heading',
|
|
2900
|
+
type: 'core',
|
|
2901
|
+
categorization: 'single-purpose',
|
|
2902
|
+
usage: 'Reserved for representing heading styles',
|
|
2903
|
+
team: 'Design System Team',
|
|
2904
|
+
slackChannel: '#icon-contributions'
|
|
2905
|
+
},
|
|
2875
2906
|
'text-indent-left': {
|
|
2876
2907
|
keywords: ['text-indent-left', 'textindentleft', 'icon', 'core', 'text', 'outdent', 'left', 'arrow'],
|
|
2877
2908
|
componentName: 'TextIndentLeftIcon',
|
|
@@ -2920,6 +2951,16 @@ var metadata = {
|
|
|
2920
2951
|
usage: 'Single purpose - Reserved for spellchecking.',
|
|
2921
2952
|
team: 'Design System Team'
|
|
2922
2953
|
},
|
|
2954
|
+
'text-strikethrough': {
|
|
2955
|
+
keywords: ['text-strikethrough', 'textstrikethrough', 'icon', 'core', 'text', 'strikethrough', 'editor', 'cross out'],
|
|
2956
|
+
componentName: 'TextStrikethroughIcon',
|
|
2957
|
+
package: '@atlaskit/icon/core/text-strikethrough',
|
|
2958
|
+
type: 'core',
|
|
2959
|
+
categorization: 'single-purpose',
|
|
2960
|
+
usage: 'Reserved for strikethrough text tool',
|
|
2961
|
+
team: 'Design System Team',
|
|
2962
|
+
slackChannel: '#icon-contributions'
|
|
2963
|
+
},
|
|
2923
2964
|
'text-style': {
|
|
2924
2965
|
keywords: ['text-style', 'textstyle', 'icon', 'core', 'characters', 'font', 'letters', 'type', 'typography'],
|
|
2925
2966
|
componentName: 'TextStyleIcon',
|
|
@@ -2930,6 +2971,16 @@ var metadata = {
|
|
|
2930
2971
|
usage: 'Single purpose - Reserved for text styles in Editor.',
|
|
2931
2972
|
team: 'Editor'
|
|
2932
2973
|
},
|
|
2974
|
+
'text-underline': {
|
|
2975
|
+
keywords: ['text-underline', 'textunderline', 'icon', 'core', 'text', 'underline', 'U', 'editor'],
|
|
2976
|
+
componentName: 'TextUnderlineIcon',
|
|
2977
|
+
package: '@atlaskit/icon/core/text-underline',
|
|
2978
|
+
type: 'core',
|
|
2979
|
+
categorization: 'single-purpose',
|
|
2980
|
+
usage: 'Reserved for underlined text tool',
|
|
2981
|
+
team: 'Design System Team',
|
|
2982
|
+
slackChannel: '#icon-contributions'
|
|
2983
|
+
},
|
|
2933
2984
|
'text-wrap': {
|
|
2934
2985
|
keywords: ['text-wrap', 'textwrap', 'icon', 'core', 'text', 'wrap', 'line wrap'],
|
|
2935
2986
|
componentName: 'TextWrapIcon',
|
|
@@ -3212,7 +3263,7 @@ var metadata = {
|
|
|
3212
3263
|
team: 'Design System Team'
|
|
3213
3264
|
},
|
|
3214
3265
|
warning: {
|
|
3215
|
-
keywords: ['warning', 'error', 'alert', 'icon', 'core', 'alert', '
|
|
3266
|
+
keywords: ['warning', 'error', 'alert', 'icon', 'core', 'alert', 'triangle', 'filled', 'exclamation', '!', 'warning'],
|
|
3216
3267
|
componentName: 'WarningIcon',
|
|
3217
3268
|
package: '@atlaskit/icon/core/warning',
|
|
3218
3269
|
oldName: ['editor/warning', 'warning'],
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::297cb37fa9fafef1e1b28e02fb2b1a3a>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
interface metadata {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::297cb37fa9fafef1e1b28e02fb2b1a3a>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
interface metadata {
|
package/glyph/issue-raise.js
CHANGED
|
@@ -6,9 +6,12 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _react = _interopRequireDefault(require("react"));
|
|
8
8
|
var _base = require("@atlaskit/icon/base");
|
|
9
|
+
var _plusSquare = _interopRequireDefault(require("@atlaskit/icon/core/plus-square"));
|
|
9
10
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
11
|
const IssueRaiseIcon = props => /*#__PURE__*/_react.default.createElement(_base.IconFacade, Object.assign({
|
|
11
12
|
dangerouslySetGlyph: `<svg width="24" height="24" viewBox="0 0 24 24" role="presentation"><g fill="currentcolor" fill-rule="evenodd"><rect width="2" height="6" x="11" y="9" rx="1"/><path fill-rule="nonzero" d="M5 15.991c0 .007 14.005.009 14.005.009C18.999 16 19 8.009 19 8.009 19 8.002 4.995 8 4.995 8 5.001 8 5 15.991 5 15.991M3 8.01C3 6.899 3.893 6 4.995 6h14.01C20.107 6 21 6.902 21 8.009v7.982c0 1.11-.893 2.009-1.995 2.009H4.995A2.004 2.004 0 0 1 3 15.991z"/><rect width="6" height="2" x="9" y="11" rx="1"/></g></svg>`
|
|
12
|
-
}, props
|
|
13
|
+
}, props, {
|
|
14
|
+
newIcon: _plusSquare.default
|
|
15
|
+
}));
|
|
13
16
|
IssueRaiseIcon.displayName = 'IssueRaiseIcon';
|
|
14
17
|
var _default = exports.default = IssueRaiseIcon;
|
package/package.json
CHANGED