@atlaskit/icon-lab 4.14.0 → 4.16.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 +46 -0
- package/core/compare.d.ts +13 -0
- package/core/compare.js +28 -0
- package/core/generative-date.d.ts +13 -0
- package/core/generative-date.js +28 -0
- package/core/generative-indicator.d.ts +13 -0
- package/core/generative-indicator.js +28 -0
- package/core/image-strikethrough.d.ts +13 -0
- package/core/image-strikethrough.js +28 -0
- package/core/initiative.js +2 -2
- package/core/milestone-complete.d.ts +13 -0
- package/core/milestone-complete.js +28 -0
- package/core/milestone-incomplete.d.ts +13 -0
- package/core/milestone-incomplete.js +28 -0
- package/core/milestone-multiple.d.ts +13 -0
- package/core/milestone-multiple.js +28 -0
- package/core/milestone-overdue.d.ts +13 -0
- package/core/milestone-overdue.js +28 -0
- package/core/space.js +2 -2
- package/core/speedometer-up.js +2 -2
- package/core/work-item-add.js +2 -2
- package/dist/cjs/metadata-core.js +82 -1
- package/dist/es2019/metadata-core.js +82 -1
- package/dist/esm/metadata-core.js +82 -1
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/package.json +2 -2
- package/svgs/core/compare.svg +1 -0
- package/svgs/core/generative-date.svg +1 -0
- package/svgs/core/generative-indicator.svg +1 -0
- package/svgs/core/image-strikethrough.svg +1 -0
- package/svgs/core/initiative.svg +1 -1
- package/svgs/core/milestone-complete.svg +1 -0
- package/svgs/core/milestone-incomplete.svg +1 -0
- package/svgs/core/milestone-multiple.svg +1 -0
- package/svgs/core/milestone-overdue.svg +1 -0
- package/svgs/core/space.svg +1 -1
- package/svgs/core/speedometer-up.svg +1 -1
- package/svgs/core/work-item-add.svg +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# @atlaskit/icon-lab
|
|
2
2
|
|
|
3
|
+
## 4.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#160927](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/160927)
|
|
8
|
+
[`70494296070b5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/70494296070b5) -
|
|
9
|
+
This release adds icons in `@atlaskit/icon-lab`.
|
|
10
|
+
|
|
11
|
+
### Added:
|
|
12
|
+
|
|
13
|
+
**`@atlaskit/icon-lab/core`**
|
|
14
|
+
|
|
15
|
+
- `compare`
|
|
16
|
+
- `generative-date`
|
|
17
|
+
- `generative-indicator`
|
|
18
|
+
- `image-strikethrough`
|
|
19
|
+
- `milestone-complete`
|
|
20
|
+
- `milestone-incomplete`
|
|
21
|
+
- `milestone-multiple`
|
|
22
|
+
- `milestone-overdue`
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
|
|
28
|
+
## 4.15.0
|
|
29
|
+
|
|
30
|
+
### Minor Changes
|
|
31
|
+
|
|
32
|
+
- [#160457](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/160457)
|
|
33
|
+
[`9b2c186eb964f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9b2c186eb964f) -
|
|
34
|
+
This release updates icons in `@atlaskit/icon-lab`.
|
|
35
|
+
|
|
36
|
+
### Updated:
|
|
37
|
+
|
|
38
|
+
**`@atlaskit/icon-lab/core`**
|
|
39
|
+
|
|
40
|
+
- `initiative`
|
|
41
|
+
- `space`
|
|
42
|
+
- `speedometer-up`
|
|
43
|
+
- `work-item-add`
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- Updated dependencies
|
|
48
|
+
|
|
3
49
|
## 4.14.0
|
|
4
50
|
|
|
5
51
|
### 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::c8df4ab5f4cc0344a35b4f83dc71d2f3>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const CompareIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default CompareIcon;
|
package/core/compare.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::b275fe8f5c6d19f76e5e586f15fbe7c3>>
|
|
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: "Compare".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for compare functionality in Bitbucket.
|
|
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 CompareIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M12.5 12.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0M5 4.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0m9 8.5a2.25 2.25 0 1 1-3-2.12V5.25C11 4.56 10.44 4 9.75 4H8V2.5h1.75a2.75 2.75 0 0 1 2.75 2.75v5.38a2.25 2.25 0 0 1 1.5 2.12m-7.5-8.5c0 .98-.627 1.809-1.5 2.118v5.382c0 .69.56 1.25 1.25 1.25H8v1.5H6.25a2.75 2.75 0 0 1-2.735-2.469L3.5 11.75V6.368A2.248 2.248 0 0 1 4.25 2 2.25 2.25 0 0 1 6.5 4.25"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
CompareIcon.displayName = 'CompareIcon';
|
|
28
|
+
var _default = exports.default = CompareIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::2962912ef054a434238f1435302f5638>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const GenerativeDateIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default GenerativeDateIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::1c55a7379681d3a1d2ad9a17a2acd36e>>
|
|
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: "GenerativeDate".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for suggested dates.
|
|
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 GenerativeDateIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M13.5 3a.5.5 0 0 0-.5-.5h-1.5v2H10v-2H6v2H4.5v-2H3a.5.5 0 0 0-.5.5v3h11zM15 7.5H2.5V13a.5.5 0 0 0 .5.5h4.5V15H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1.5V0H6v1h4V0h1.5v1H13l.204.01A2 2 0 0 1 15 3z"/><path fill="currentcolor" d="M12.616 9.009a.75.75 0 0 1 .59.484l.613 1.687 1.688.615A.75.75 0 0 1 16 12.5l-.009.116a.75.75 0 0 1-.484.59l-1.688.613-.614 1.688a.75.75 0 0 1-.589.484L12.5 16a.75.75 0 0 1-.705-.493l-.615-1.688-1.687-.614a.75.75 0 0 1-.484-.589L9 12.5a.75.75 0 0 1 .493-.705l1.687-.615.615-1.687.049-.106a.75.75 0 0 1 .54-.378L12.5 9z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
GenerativeDateIcon.displayName = 'GenerativeDateIcon';
|
|
28
|
+
var _default = exports.default = GenerativeDateIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::0f040ed20c160b9c94ba5ad2a418e6df>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const GenerativeIndicatorIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default GenerativeIndicatorIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::ddeba7a32f0ff02d936f530978418fa5>>
|
|
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: "GenerativeIndicator".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for indicating generative and suggested content.
|
|
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 GenerativeIndicatorIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M8.117 1.009a.75.75 0 0 1 .588.484l1.55 4.251 4.252 1.55A.75.75 0 0 1 15 8v.002a.75.75 0 0 1-.493.704l-4.252 1.55-1.55 4.252a.75.75 0 0 1-.704.493h-.002a.75.75 0 0 1-.704-.493l-1.55-4.252-4.252-1.55A.75.75 0 0 1 1 8.001v-.002a.75.75 0 0 1 .493-.704l4.251-1.55 1.55-4.252.049-.106A.75.75 0 0 1 7.999 1h.002z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
GenerativeIndicatorIcon.displayName = 'GenerativeIndicatorIcon';
|
|
28
|
+
var _default = exports.default = GenerativeIndicatorIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::ad2664cecea2f1900f74b991e84b6fdb>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ImageStrikethroughIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ImageStrikethroughIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::5c3748f6e566627000d37fd0ac0a5a32>>
|
|
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: "ImageStrikethrough".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Known uses: Represents "hide images" action in Loom Workflows.
|
|
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 ImageStrikethroughIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="m15.53 14.47-1.06 1.06-14-14L1.53.47zM2.5 5.68V13a.5.5 0 0 0 .5.5h.64l2.99-3.68 1.07 1.06-2.12 2.62h4.74l1.5 1.5H3a2 2 0 0 1-2-2V4.18zM13 1a2 2 0 0 1 2 2v8.82l-1.5-1.5v-.01l-2.94-2.94-1.07-1.06.43-.53.05-.06a.75.75 0 0 1 1.06 0l2.47 2.47V3a.5.5 0 0 0-.5-.5H5.68L4.18 1z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
ImageStrikethroughIcon.displayName = 'ImageStrikethroughIcon';
|
|
28
|
+
var _default = exports.default = ImageStrikethroughIcon;
|
package/core/initiative.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::fd30dee39323864f18dc4e05a923cdb1>>
|
|
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 InitiativeIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
-
dangerouslySetGlyph: `<path fill="currentcolor"
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M13.5 7a5.5 5.5 0 1 0-8.658 4.5h6.316A5.49 5.49 0 0 0 13.5 7m-8.893 6a.44.44 0 0 0-.417.3l-.399 1.2h8.418l-.4-1.2a.44.44 0 0 0-.416-.3zM8 4.5A2.5 2.5 0 0 0 5.5 7H4a4 4 0 0 1 4-4zM15 7a6.98 6.98 0 0 1-2.207 5.1c.194.202.347.448.44.726l.729 2.187a.75.75 0 0 1-.712.987H2.75a.75.75 0 0 1-.712-.987l.73-2.187.054-.145c.093-.22.225-.415.384-.581A7 7 0 1 1 15 7"/>`
|
|
25
25
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
26
|
}, props));
|
|
27
27
|
InitiativeIcon.displayName = 'InitiativeIcon';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::d57608f57f2bc3ec00f2d4d647846282>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const MilestoneCompleteIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default MilestoneCompleteIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::d94ce6cfb30ce6e9ecb1aa3017cebd6f>>
|
|
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: "MilestoneComplete".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for representing a completed milestone.
|
|
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 MilestoneCompleteIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M6.737 2.466a2 2 0 0 1 2.677.138l2.335 2.336L8 8.69 6.03 6.72 4.97 7.78l2.5 2.5.057.052a.75.75 0 0 0 1.004-.052L12.81 6l.585.586.138.151c.64.786.594 1.945-.138 2.677l-3.982 3.983a2 2 0 0 1-2.829 0L2.603 9.414a2 2 0 0 1 0-2.828l3.982-3.982zm8.169 1.44L12.81 6l-1.06-1.06 2.095-2.095z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
MilestoneCompleteIcon.displayName = 'MilestoneCompleteIcon';
|
|
28
|
+
var _default = exports.default = MilestoneCompleteIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::85bb241ea51b9a3d48a15be4bdc7a0f3>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const MilestoneIncompleteIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default MilestoneIncompleteIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::6d86d9a31de86d7cb7cbbc07770dfd1c>>
|
|
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: "MilestoneIncomplete".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for representing an incomplete milestone.
|
|
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 MilestoneIncompleteIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M6.586 2.604a2 2 0 0 1 2.828 0l3.983 3.982a2 2 0 0 1 0 2.828l-3.983 3.983a2 2 0 0 1-2.828 0L2.604 9.414a2 2 0 0 1 0-2.828zm1.768 1.06a.5.5 0 0 0-.708 0L3.664 7.646a.5.5 0 0 0 0 .708l3.982 3.982a.5.5 0 0 0 .708 0l3.982-3.982a.5.5 0 0 0 0-.708z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
MilestoneIncompleteIcon.displayName = 'MilestoneIncompleteIcon';
|
|
28
|
+
var _default = exports.default = MilestoneIncompleteIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e8568442e23b24c95a3230a5c071baa6>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const MilestoneMultipleIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default MilestoneMultipleIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::d0d3f0c1f9929043cc44677f8e0edaaa>>
|
|
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: "MilestoneMultiple".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for use when multiple milestones occur on a single date or point in time.
|
|
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 MilestoneMultipleIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M4.585 2.603a2 2 0 0 1 2.432-.304L5.682 3.634q-.019.014-.036.03L1.664 7.646a.5.5 0 0 0 0 .707l3.982 3.983.026.021 1.344 1.344a2 2 0 0 1-2.43-.305L.602 9.414a2 2 0 0 1 0-2.828z"/><path fill="currentcolor" d="M8.586 2.604a2 2 0 0 1 2.828 0l3.983 3.982a2 2 0 0 1 0 2.828l-3.983 3.983a2 2 0 0 1-2.828 0L4.604 9.414a2 2 0 0 1 0-2.828zm1.768 1.06a.5.5 0 0 0-.708 0L5.664 7.646a.5.5 0 0 0 0 .708l3.982 3.982a.5.5 0 0 0 .707 0l3.983-3.982a.5.5 0 0 0 0-.708z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
MilestoneMultipleIcon.displayName = 'MilestoneMultipleIcon';
|
|
28
|
+
var _default = exports.default = MilestoneMultipleIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::2272a18c5eb07072a3e5ac7626dabf33>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const MilestoneOverdueIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default MilestoneOverdueIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::fe9b724e499b84ec106ac4f6f3d2ff38>>
|
|
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: "MilestoneOverdue".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for representing an overdue milestone.
|
|
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 MilestoneOverdueIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M6.585 2.603a2 2 0 0 1 2.829 0l3.982 3.982a2 2 0 0 1 .138 2.677l-.138.152-3.982 3.982a2 2 0 0 1-2.829 0L2.603 9.414a2 2 0 0 1 0-2.829zM8 10a1 1 0 1 0 0 2 1 1 0 0 0 0-2m-.75-6v5h1.5V4z" clip-rule="evenodd"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
MilestoneOverdueIcon.displayName = 'MilestoneOverdueIcon';
|
|
28
|
+
var _default = exports.default = MilestoneOverdueIcon;
|
package/core/space.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::fe715cd0507ff5a30cf6a81dce213b16>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -23,7 +23,7 @@ More context: Later, it will eventually replace the Confluence Spaces icon later
|
|
|
23
23
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
24
24
|
*/
|
|
25
25
|
const SpaceIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
26
|
-
dangerouslySetGlyph: `<path fill="currentcolor" d="m10.213 11.918.037-.02.037-.
|
|
26
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="m10.213 11.918.037-.02.037-.022c1.3-.753 2.5-1.566 3.523-2.38a5.98 5.98 0 0 1-2.81 3.7 5.98 5.98 0 0 1-4.61.584 29 29 0 0 0 3.823-1.862"/><path fill="currentcolor" fill-rule="evenodd" d="M.206 12.5c-.21-.365-.222-.762-.149-1.11.072-.343.232-.681.432-1.002.35-.559.883-1.162 1.541-1.774a6 6 0 0 1 9.487-5.477c.858-.264 1.648-.424 2.307-.447.377-.013.75.017 1.083.126.338.111.677.32.887.684.186.322.219.664.17.988a2.7 2.7 0 0 1-.276.812c-.276.539-.738 1.113-1.308 1.689-1.148 1.158-2.866 2.446-4.88 3.609s-3.988 2.007-5.566 2.422c-.783.206-1.511.318-2.116.288C1.253 13.28.56 13.113.206 12.5m3.36-3.725a4.502 4.502 0 0 1 8.778-1.954c-.962.808-2.191 1.668-3.594 2.478s-2.762 1.444-3.943 1.873a4.5 4.5 0 0 1-1.241-2.397M2.804 11q.197.342.431.648c-.563.129-1.015.178-1.344.162-.22-.01-.327-.046-.373-.068l.007-.045c.023-.108.09-.28.237-.514a6 6 0 0 1 .697-.88q.147.355.345.697m10.392-6a6 6 0 0 0-.431-.648 6 6 0 0 1 1.11-.163c.277-.01.459.018.564.052l.043.016c-.005.052-.028.162-.128.358-.15.292-.419.659-.813 1.082A6 6 0 0 0 13.196 5" clip-rule="evenodd"/>`
|
|
27
27
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
28
28
|
}, props));
|
|
29
29
|
SpaceIcon.displayName = 'SpaceIcon';
|
package/core/speedometer-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::46461c1b0089b14b6e22594456113822>>
|
|
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 SpeedometerUpIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
-
dangerouslySetGlyph: `<path fill="currentcolor" d="
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M1.5 9a6.5 6.5 0 0 1 3.75-5.891V1.485a8.003 8.003 0 0 0-2.767 13.308l1.034-1.086A6.48 6.48 0 0 1 1.5 9"/><path fill="currentcolor" fill-rule="evenodd" d="M8.75 1.035v6.08a2.501 2.501 0 1 1-1.5 0v-6.08a8 8 0 0 1 1.5 0M7 9.5a1 1 0 1 1 2 0 1 1 0 0 1-2 0" clip-rule="evenodd"/><path fill="currentcolor" d="M10.75 1.485V3.11a6.5 6.5 0 0 1 1.733 10.598l1.034 1.086A8.003 8.003 0 0 0 10.75 1.485"/>`
|
|
25
25
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
26
|
}, props));
|
|
27
27
|
SpeedometerUpIcon.displayName = 'SpeedometerUpIcon';
|
package/core/work-item-add.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::3fcac6ef8a976dfd90e31248626c32e6>>
|
|
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 WorkItemAddIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
-
dangerouslySetGlyph: `<path fill="currentcolor"
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="m11.573 5.983-4 4.75a.75.75 0 0 1-1.146 0l-2-2.375 1.146-.966L7 9.085l3.427-4.068zM14.5 4a.5.5 0 0 0-.4-.49L14 3.5H2a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h5.5V14H2a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h12l.204.01A2 2 0 0 1 16 4v4.5h-1.5z"/><path fill="currentcolor" d="M13.5 9.5V12H16v1.5h-2.5V16H12v-2.5H9.5V12H12V9.5z"/>`
|
|
25
25
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
26
|
}, props));
|
|
27
27
|
WorkItemAddIcon.displayName = 'WorkItemAddIcon';
|
|
@@ -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::45cbe14b5a4b3f189e33031f485ff882>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -333,6 +333,16 @@ var metadata = {
|
|
|
333
333
|
team: 'Whiteboards',
|
|
334
334
|
status: 'published'
|
|
335
335
|
},
|
|
336
|
+
compare: {
|
|
337
|
+
keywords: ['compare', 'icon', 'icon-lab', 'core', 'compare', 'git', 'bitbucket', 'diff'],
|
|
338
|
+
componentName: 'CompareIcon',
|
|
339
|
+
package: '@atlaskit/icon-lab/core/compare',
|
|
340
|
+
type: 'core',
|
|
341
|
+
categorization: 'single-purpose',
|
|
342
|
+
usage: 'Reserved for compare functionality in Bitbucket.',
|
|
343
|
+
team: 'Bitbucket',
|
|
344
|
+
status: 'published'
|
|
345
|
+
},
|
|
336
346
|
'compass-hinged': {
|
|
337
347
|
keywords: ['compass-hinged', 'compasshinged', 'icon', 'icon-lab', 'core', 'compass', 'calipers', 'divider'],
|
|
338
348
|
componentName: 'CompassHingedIcon',
|
|
@@ -533,6 +543,26 @@ var metadata = {
|
|
|
533
543
|
status: 'published',
|
|
534
544
|
slackChannel: '#feedback-loom-vizrefresh'
|
|
535
545
|
},
|
|
546
|
+
'generative-date': {
|
|
547
|
+
keywords: ['generative-date', 'generativedate', 'icon', 'icon-lab', 'core', 'calendar', 'suggested date'],
|
|
548
|
+
componentName: 'GenerativeDateIcon',
|
|
549
|
+
package: '@atlaskit/icon-lab/core/generative-date',
|
|
550
|
+
type: 'core',
|
|
551
|
+
categorization: 'single-purpose',
|
|
552
|
+
usage: 'Reserved for suggested dates.',
|
|
553
|
+
team: 'Jira Align',
|
|
554
|
+
status: 'published'
|
|
555
|
+
},
|
|
556
|
+
'generative-indicator': {
|
|
557
|
+
keywords: ['generative-indicator', 'generativeindicator', 'icon', 'icon-lab', 'core', 'AI', 'suggested', 'generative', 'suggestion'],
|
|
558
|
+
componentName: 'GenerativeIndicatorIcon',
|
|
559
|
+
package: '@atlaskit/icon-lab/core/generative-indicator',
|
|
560
|
+
type: 'core',
|
|
561
|
+
categorization: 'single-purpose',
|
|
562
|
+
usage: 'Reserved for indicating generative and suggested content.',
|
|
563
|
+
team: 'Jira Align',
|
|
564
|
+
status: 'published'
|
|
565
|
+
},
|
|
536
566
|
gift: {
|
|
537
567
|
keywords: ['gift', 'icon', 'icon-lab', 'core', 'gift', 'present'],
|
|
538
568
|
componentName: 'GiftIcon',
|
|
@@ -647,6 +677,17 @@ var metadata = {
|
|
|
647
677
|
team: 'Design System Team',
|
|
648
678
|
status: 'published'
|
|
649
679
|
},
|
|
680
|
+
'image-strikethrough': {
|
|
681
|
+
keywords: ['image-strikethrough', 'imagestrikethrough', 'icon', 'icon-lab', 'core', 'image', 'strikethrough', 'hide images'],
|
|
682
|
+
componentName: 'ImageStrikethroughIcon',
|
|
683
|
+
package: '@atlaskit/icon-lab/core/image-strikethrough',
|
|
684
|
+
type: 'core',
|
|
685
|
+
categorization: 'multi-purpose',
|
|
686
|
+
usage: "Known uses: Represents 'hide images' action in Loom Workflows.",
|
|
687
|
+
team: 'Loom Core Product - Workflows',
|
|
688
|
+
status: 'published',
|
|
689
|
+
slackChannel: '#pod-workflows'
|
|
690
|
+
},
|
|
650
691
|
incognito: {
|
|
651
692
|
keywords: ['incognito', 'icon', 'icon-lab', 'core', 'Whiteboards', 'Private', 'Incognito'],
|
|
652
693
|
componentName: 'IncognitoIcon',
|
|
@@ -778,6 +819,46 @@ var metadata = {
|
|
|
778
819
|
team: 'Loom',
|
|
779
820
|
status: 'published'
|
|
780
821
|
},
|
|
822
|
+
'milestone-complete': {
|
|
823
|
+
keywords: ['milestone-complete', 'milestonecomplete', 'icon', 'icon-lab', 'core', 'milestone', 'completed', 'check mark', 'roadmaps', 'calendar'],
|
|
824
|
+
componentName: 'MilestoneCompleteIcon',
|
|
825
|
+
package: '@atlaskit/icon-lab/core/milestone-complete',
|
|
826
|
+
type: 'core',
|
|
827
|
+
categorization: 'single-purpose',
|
|
828
|
+
usage: 'Reserved for representing a completed milestone.',
|
|
829
|
+
team: 'Jira Align',
|
|
830
|
+
status: 'published'
|
|
831
|
+
},
|
|
832
|
+
'milestone-incomplete': {
|
|
833
|
+
keywords: ['milestone-incomplete', 'milestoneincomplete', 'icon', 'icon-lab', 'core', 'milestone', 'incompleted', 'roadmaps', 'calendar'],
|
|
834
|
+
componentName: 'MilestoneIncompleteIcon',
|
|
835
|
+
package: '@atlaskit/icon-lab/core/milestone-incomplete',
|
|
836
|
+
type: 'core',
|
|
837
|
+
categorization: 'single-purpose',
|
|
838
|
+
usage: 'Reserved for representing an incomplete milestone.',
|
|
839
|
+
team: 'Jira Align',
|
|
840
|
+
status: 'published'
|
|
841
|
+
},
|
|
842
|
+
'milestone-multiple': {
|
|
843
|
+
keywords: ['milestone-multiple', 'milestonemultiple', 'icon', 'icon-lab', 'core', 'milestone', 'milestones', 'multiple milestones', 'roadmaps', 'calendar'],
|
|
844
|
+
componentName: 'MilestoneMultipleIcon',
|
|
845
|
+
package: '@atlaskit/icon-lab/core/milestone-multiple',
|
|
846
|
+
type: 'core',
|
|
847
|
+
categorization: 'single-purpose',
|
|
848
|
+
usage: 'Reserved for use when multiple milestones occur on a single date or point in time.',
|
|
849
|
+
team: 'Jira Align',
|
|
850
|
+
status: 'published'
|
|
851
|
+
},
|
|
852
|
+
'milestone-overdue': {
|
|
853
|
+
keywords: ['milestone-overdue', 'milestoneoverdue', 'icon', 'icon-lab', 'core', 'overdue', 'past due', 'milestone', 'roadmaps', 'calendar'],
|
|
854
|
+
componentName: 'MilestoneOverdueIcon',
|
|
855
|
+
package: '@atlaskit/icon-lab/core/milestone-overdue',
|
|
856
|
+
type: 'core',
|
|
857
|
+
categorization: 'single-purpose',
|
|
858
|
+
usage: 'Reserved for representing an overdue milestone.',
|
|
859
|
+
team: 'Jira Align',
|
|
860
|
+
status: 'published'
|
|
861
|
+
},
|
|
781
862
|
'node-parallel-bottom-left': {
|
|
782
863
|
keywords: ['node-parallel-bottom-left', 'nodeparallelbottomleft', 'icon', 'icon-lab', 'core', 'Node', 'Parallel', 'Bottom', 'Left'],
|
|
783
864
|
componentName: 'NodeParallelBottomLeftIcon',
|
|
@@ -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::45cbe14b5a4b3f189e33031f485ff882>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -327,6 +327,16 @@ const metadata = {
|
|
|
327
327
|
team: 'Whiteboards',
|
|
328
328
|
status: 'published'
|
|
329
329
|
},
|
|
330
|
+
compare: {
|
|
331
|
+
keywords: ['compare', 'icon', 'icon-lab', 'core', 'compare', 'git', 'bitbucket', 'diff'],
|
|
332
|
+
componentName: 'CompareIcon',
|
|
333
|
+
package: '@atlaskit/icon-lab/core/compare',
|
|
334
|
+
type: 'core',
|
|
335
|
+
categorization: 'single-purpose',
|
|
336
|
+
usage: 'Reserved for compare functionality in Bitbucket.',
|
|
337
|
+
team: 'Bitbucket',
|
|
338
|
+
status: 'published'
|
|
339
|
+
},
|
|
330
340
|
'compass-hinged': {
|
|
331
341
|
keywords: ['compass-hinged', 'compasshinged', 'icon', 'icon-lab', 'core', 'compass', 'calipers', 'divider'],
|
|
332
342
|
componentName: 'CompassHingedIcon',
|
|
@@ -527,6 +537,26 @@ const metadata = {
|
|
|
527
537
|
status: 'published',
|
|
528
538
|
slackChannel: '#feedback-loom-vizrefresh'
|
|
529
539
|
},
|
|
540
|
+
'generative-date': {
|
|
541
|
+
keywords: ['generative-date', 'generativedate', 'icon', 'icon-lab', 'core', 'calendar', 'suggested date'],
|
|
542
|
+
componentName: 'GenerativeDateIcon',
|
|
543
|
+
package: '@atlaskit/icon-lab/core/generative-date',
|
|
544
|
+
type: 'core',
|
|
545
|
+
categorization: 'single-purpose',
|
|
546
|
+
usage: 'Reserved for suggested dates.',
|
|
547
|
+
team: 'Jira Align',
|
|
548
|
+
status: 'published'
|
|
549
|
+
},
|
|
550
|
+
'generative-indicator': {
|
|
551
|
+
keywords: ['generative-indicator', 'generativeindicator', 'icon', 'icon-lab', 'core', 'AI', 'suggested', 'generative', 'suggestion'],
|
|
552
|
+
componentName: 'GenerativeIndicatorIcon',
|
|
553
|
+
package: '@atlaskit/icon-lab/core/generative-indicator',
|
|
554
|
+
type: 'core',
|
|
555
|
+
categorization: 'single-purpose',
|
|
556
|
+
usage: 'Reserved for indicating generative and suggested content.',
|
|
557
|
+
team: 'Jira Align',
|
|
558
|
+
status: 'published'
|
|
559
|
+
},
|
|
530
560
|
gift: {
|
|
531
561
|
keywords: ['gift', 'icon', 'icon-lab', 'core', 'gift', 'present'],
|
|
532
562
|
componentName: 'GiftIcon',
|
|
@@ -641,6 +671,17 @@ const metadata = {
|
|
|
641
671
|
team: 'Design System Team',
|
|
642
672
|
status: 'published'
|
|
643
673
|
},
|
|
674
|
+
'image-strikethrough': {
|
|
675
|
+
keywords: ['image-strikethrough', 'imagestrikethrough', 'icon', 'icon-lab', 'core', 'image', 'strikethrough', 'hide images'],
|
|
676
|
+
componentName: 'ImageStrikethroughIcon',
|
|
677
|
+
package: '@atlaskit/icon-lab/core/image-strikethrough',
|
|
678
|
+
type: 'core',
|
|
679
|
+
categorization: 'multi-purpose',
|
|
680
|
+
usage: "Known uses: Represents 'hide images' action in Loom Workflows.",
|
|
681
|
+
team: 'Loom Core Product - Workflows',
|
|
682
|
+
status: 'published',
|
|
683
|
+
slackChannel: '#pod-workflows'
|
|
684
|
+
},
|
|
644
685
|
incognito: {
|
|
645
686
|
keywords: ['incognito', 'icon', 'icon-lab', 'core', 'Whiteboards', 'Private', 'Incognito'],
|
|
646
687
|
componentName: 'IncognitoIcon',
|
|
@@ -772,6 +813,46 @@ const metadata = {
|
|
|
772
813
|
team: 'Loom',
|
|
773
814
|
status: 'published'
|
|
774
815
|
},
|
|
816
|
+
'milestone-complete': {
|
|
817
|
+
keywords: ['milestone-complete', 'milestonecomplete', 'icon', 'icon-lab', 'core', 'milestone', 'completed', 'check mark', 'roadmaps', 'calendar'],
|
|
818
|
+
componentName: 'MilestoneCompleteIcon',
|
|
819
|
+
package: '@atlaskit/icon-lab/core/milestone-complete',
|
|
820
|
+
type: 'core',
|
|
821
|
+
categorization: 'single-purpose',
|
|
822
|
+
usage: 'Reserved for representing a completed milestone.',
|
|
823
|
+
team: 'Jira Align',
|
|
824
|
+
status: 'published'
|
|
825
|
+
},
|
|
826
|
+
'milestone-incomplete': {
|
|
827
|
+
keywords: ['milestone-incomplete', 'milestoneincomplete', 'icon', 'icon-lab', 'core', 'milestone', 'incompleted', 'roadmaps', 'calendar'],
|
|
828
|
+
componentName: 'MilestoneIncompleteIcon',
|
|
829
|
+
package: '@atlaskit/icon-lab/core/milestone-incomplete',
|
|
830
|
+
type: 'core',
|
|
831
|
+
categorization: 'single-purpose',
|
|
832
|
+
usage: 'Reserved for representing an incomplete milestone.',
|
|
833
|
+
team: 'Jira Align',
|
|
834
|
+
status: 'published'
|
|
835
|
+
},
|
|
836
|
+
'milestone-multiple': {
|
|
837
|
+
keywords: ['milestone-multiple', 'milestonemultiple', 'icon', 'icon-lab', 'core', 'milestone', 'milestones', 'multiple milestones', 'roadmaps', 'calendar'],
|
|
838
|
+
componentName: 'MilestoneMultipleIcon',
|
|
839
|
+
package: '@atlaskit/icon-lab/core/milestone-multiple',
|
|
840
|
+
type: 'core',
|
|
841
|
+
categorization: 'single-purpose',
|
|
842
|
+
usage: 'Reserved for use when multiple milestones occur on a single date or point in time.',
|
|
843
|
+
team: 'Jira Align',
|
|
844
|
+
status: 'published'
|
|
845
|
+
},
|
|
846
|
+
'milestone-overdue': {
|
|
847
|
+
keywords: ['milestone-overdue', 'milestoneoverdue', 'icon', 'icon-lab', 'core', 'overdue', 'past due', 'milestone', 'roadmaps', 'calendar'],
|
|
848
|
+
componentName: 'MilestoneOverdueIcon',
|
|
849
|
+
package: '@atlaskit/icon-lab/core/milestone-overdue',
|
|
850
|
+
type: 'core',
|
|
851
|
+
categorization: 'single-purpose',
|
|
852
|
+
usage: 'Reserved for representing an overdue milestone.',
|
|
853
|
+
team: 'Jira Align',
|
|
854
|
+
status: 'published'
|
|
855
|
+
},
|
|
775
856
|
'node-parallel-bottom-left': {
|
|
776
857
|
keywords: ['node-parallel-bottom-left', 'nodeparallelbottomleft', 'icon', 'icon-lab', 'core', 'Node', 'Parallel', 'Bottom', 'Left'],
|
|
777
858
|
componentName: 'NodeParallelBottomLeftIcon',
|
|
@@ -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::45cbe14b5a4b3f189e33031f485ff882>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -327,6 +327,16 @@ var metadata = {
|
|
|
327
327
|
team: 'Whiteboards',
|
|
328
328
|
status: 'published'
|
|
329
329
|
},
|
|
330
|
+
compare: {
|
|
331
|
+
keywords: ['compare', 'icon', 'icon-lab', 'core', 'compare', 'git', 'bitbucket', 'diff'],
|
|
332
|
+
componentName: 'CompareIcon',
|
|
333
|
+
package: '@atlaskit/icon-lab/core/compare',
|
|
334
|
+
type: 'core',
|
|
335
|
+
categorization: 'single-purpose',
|
|
336
|
+
usage: 'Reserved for compare functionality in Bitbucket.',
|
|
337
|
+
team: 'Bitbucket',
|
|
338
|
+
status: 'published'
|
|
339
|
+
},
|
|
330
340
|
'compass-hinged': {
|
|
331
341
|
keywords: ['compass-hinged', 'compasshinged', 'icon', 'icon-lab', 'core', 'compass', 'calipers', 'divider'],
|
|
332
342
|
componentName: 'CompassHingedIcon',
|
|
@@ -527,6 +537,26 @@ var metadata = {
|
|
|
527
537
|
status: 'published',
|
|
528
538
|
slackChannel: '#feedback-loom-vizrefresh'
|
|
529
539
|
},
|
|
540
|
+
'generative-date': {
|
|
541
|
+
keywords: ['generative-date', 'generativedate', 'icon', 'icon-lab', 'core', 'calendar', 'suggested date'],
|
|
542
|
+
componentName: 'GenerativeDateIcon',
|
|
543
|
+
package: '@atlaskit/icon-lab/core/generative-date',
|
|
544
|
+
type: 'core',
|
|
545
|
+
categorization: 'single-purpose',
|
|
546
|
+
usage: 'Reserved for suggested dates.',
|
|
547
|
+
team: 'Jira Align',
|
|
548
|
+
status: 'published'
|
|
549
|
+
},
|
|
550
|
+
'generative-indicator': {
|
|
551
|
+
keywords: ['generative-indicator', 'generativeindicator', 'icon', 'icon-lab', 'core', 'AI', 'suggested', 'generative', 'suggestion'],
|
|
552
|
+
componentName: 'GenerativeIndicatorIcon',
|
|
553
|
+
package: '@atlaskit/icon-lab/core/generative-indicator',
|
|
554
|
+
type: 'core',
|
|
555
|
+
categorization: 'single-purpose',
|
|
556
|
+
usage: 'Reserved for indicating generative and suggested content.',
|
|
557
|
+
team: 'Jira Align',
|
|
558
|
+
status: 'published'
|
|
559
|
+
},
|
|
530
560
|
gift: {
|
|
531
561
|
keywords: ['gift', 'icon', 'icon-lab', 'core', 'gift', 'present'],
|
|
532
562
|
componentName: 'GiftIcon',
|
|
@@ -641,6 +671,17 @@ var metadata = {
|
|
|
641
671
|
team: 'Design System Team',
|
|
642
672
|
status: 'published'
|
|
643
673
|
},
|
|
674
|
+
'image-strikethrough': {
|
|
675
|
+
keywords: ['image-strikethrough', 'imagestrikethrough', 'icon', 'icon-lab', 'core', 'image', 'strikethrough', 'hide images'],
|
|
676
|
+
componentName: 'ImageStrikethroughIcon',
|
|
677
|
+
package: '@atlaskit/icon-lab/core/image-strikethrough',
|
|
678
|
+
type: 'core',
|
|
679
|
+
categorization: 'multi-purpose',
|
|
680
|
+
usage: "Known uses: Represents 'hide images' action in Loom Workflows.",
|
|
681
|
+
team: 'Loom Core Product - Workflows',
|
|
682
|
+
status: 'published',
|
|
683
|
+
slackChannel: '#pod-workflows'
|
|
684
|
+
},
|
|
644
685
|
incognito: {
|
|
645
686
|
keywords: ['incognito', 'icon', 'icon-lab', 'core', 'Whiteboards', 'Private', 'Incognito'],
|
|
646
687
|
componentName: 'IncognitoIcon',
|
|
@@ -772,6 +813,46 @@ var metadata = {
|
|
|
772
813
|
team: 'Loom',
|
|
773
814
|
status: 'published'
|
|
774
815
|
},
|
|
816
|
+
'milestone-complete': {
|
|
817
|
+
keywords: ['milestone-complete', 'milestonecomplete', 'icon', 'icon-lab', 'core', 'milestone', 'completed', 'check mark', 'roadmaps', 'calendar'],
|
|
818
|
+
componentName: 'MilestoneCompleteIcon',
|
|
819
|
+
package: '@atlaskit/icon-lab/core/milestone-complete',
|
|
820
|
+
type: 'core',
|
|
821
|
+
categorization: 'single-purpose',
|
|
822
|
+
usage: 'Reserved for representing a completed milestone.',
|
|
823
|
+
team: 'Jira Align',
|
|
824
|
+
status: 'published'
|
|
825
|
+
},
|
|
826
|
+
'milestone-incomplete': {
|
|
827
|
+
keywords: ['milestone-incomplete', 'milestoneincomplete', 'icon', 'icon-lab', 'core', 'milestone', 'incompleted', 'roadmaps', 'calendar'],
|
|
828
|
+
componentName: 'MilestoneIncompleteIcon',
|
|
829
|
+
package: '@atlaskit/icon-lab/core/milestone-incomplete',
|
|
830
|
+
type: 'core',
|
|
831
|
+
categorization: 'single-purpose',
|
|
832
|
+
usage: 'Reserved for representing an incomplete milestone.',
|
|
833
|
+
team: 'Jira Align',
|
|
834
|
+
status: 'published'
|
|
835
|
+
},
|
|
836
|
+
'milestone-multiple': {
|
|
837
|
+
keywords: ['milestone-multiple', 'milestonemultiple', 'icon', 'icon-lab', 'core', 'milestone', 'milestones', 'multiple milestones', 'roadmaps', 'calendar'],
|
|
838
|
+
componentName: 'MilestoneMultipleIcon',
|
|
839
|
+
package: '@atlaskit/icon-lab/core/milestone-multiple',
|
|
840
|
+
type: 'core',
|
|
841
|
+
categorization: 'single-purpose',
|
|
842
|
+
usage: 'Reserved for use when multiple milestones occur on a single date or point in time.',
|
|
843
|
+
team: 'Jira Align',
|
|
844
|
+
status: 'published'
|
|
845
|
+
},
|
|
846
|
+
'milestone-overdue': {
|
|
847
|
+
keywords: ['milestone-overdue', 'milestoneoverdue', 'icon', 'icon-lab', 'core', 'overdue', 'past due', 'milestone', 'roadmaps', 'calendar'],
|
|
848
|
+
componentName: 'MilestoneOverdueIcon',
|
|
849
|
+
package: '@atlaskit/icon-lab/core/milestone-overdue',
|
|
850
|
+
type: 'core',
|
|
851
|
+
categorization: 'single-purpose',
|
|
852
|
+
usage: 'Reserved for representing an overdue milestone.',
|
|
853
|
+
team: 'Jira Align',
|
|
854
|
+
status: 'published'
|
|
855
|
+
},
|
|
775
856
|
'node-parallel-bottom-left': {
|
|
776
857
|
keywords: ['node-parallel-bottom-left', 'nodeparallelbottomleft', 'icon', 'icon-lab', 'core', 'Node', 'Parallel', 'Bottom', 'Left'],
|
|
777
858
|
componentName: 'NodeParallelBottomLeftIcon',
|
|
@@ -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::45cbe14b5a4b3f189e33031f485ff882>>
|
|
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::45cbe14b5a4b3f189e33031f485ff882>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
interface metadata {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/icon-lab",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.16.0",
|
|
4
4
|
"description": "An icon package for public icon contributions",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.tsx"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/icon": "^26.
|
|
35
|
+
"@atlaskit/icon": "^26.3.0",
|
|
36
36
|
"@babel/runtime": "^7.0.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M12.5 12.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0M5 4.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0m9 8.5a2.25 2.25 0 1 1-3-2.12V5.25C11 4.56 10.44 4 9.75 4H8V2.5h1.75a2.75 2.75 0 0 1 2.75 2.75v5.38a2.25 2.25 0 0 1 1.5 2.12m-7.5-8.5c0 .98-.627 1.809-1.5 2.118v5.382c0 .69.56 1.25 1.25 1.25H8v1.5H6.25a2.75 2.75 0 0 1-2.735-2.469L3.5 11.75V6.368A2.248 2.248 0 0 1 4.25 2 2.25 2.25 0 0 1 6.5 4.25"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M13.5 3a.5.5 0 0 0-.5-.5h-1.5v2H10v-2H6v2H4.5v-2H3a.5.5 0 0 0-.5.5v3h11zM15 7.5H2.5V13a.5.5 0 0 0 .5.5h4.5V15H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1.5V0H6v1h4V0h1.5v1H13l.204.01A2 2 0 0 1 15 3z"/><path fill="currentcolor" d="M12.616 9.009a.75.75 0 0 1 .59.484l.613 1.687 1.688.615A.75.75 0 0 1 16 12.5l-.009.116a.75.75 0 0 1-.484.59l-1.688.613-.614 1.688a.75.75 0 0 1-.589.484L12.5 16a.75.75 0 0 1-.705-.493l-.615-1.688-1.687-.614a.75.75 0 0 1-.484-.589L9 12.5a.75.75 0 0 1 .493-.705l1.687-.615.615-1.687.049-.106a.75.75 0 0 1 .54-.378L12.5 9z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M8.117 1.009a.75.75 0 0 1 .588.484l1.55 4.251 4.252 1.55A.75.75 0 0 1 15 8v.002a.75.75 0 0 1-.493.704l-4.252 1.55-1.55 4.252a.75.75 0 0 1-.704.493h-.002a.75.75 0 0 1-.704-.493l-1.55-4.252-4.252-1.55A.75.75 0 0 1 1 8.001v-.002a.75.75 0 0 1 .493-.704l4.251-1.55 1.55-4.252.049-.106A.75.75 0 0 1 7.999 1h.002z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="m15.53 14.47-1.06 1.06-14-14L1.53.47zM2.5 5.68V13a.5.5 0 0 0 .5.5h.64l2.99-3.68 1.07 1.06-2.12 2.62h4.74l1.5 1.5H3a2 2 0 0 1-2-2V4.18zM13 1a2 2 0 0 1 2 2v8.82l-1.5-1.5v-.01l-2.94-2.94-1.07-1.06.43-.53.05-.06a.75.75 0 0 1 1.06 0l2.47 2.47V3a.5.5 0 0 0-.5-.5H5.68L4.18 1z"/></svg>
|
package/svgs/core/initiative.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor"
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M13.5 7a5.5 5.5 0 1 0-8.658 4.5h6.316A5.49 5.49 0 0 0 13.5 7m-8.893 6a.44.44 0 0 0-.417.3l-.399 1.2h8.418l-.4-1.2a.44.44 0 0 0-.416-.3zM8 4.5A2.5 2.5 0 0 0 5.5 7H4a4 4 0 0 1 4-4zM15 7a6.98 6.98 0 0 1-2.207 5.1c.194.202.347.448.44.726l.729 2.187a.75.75 0 0 1-.712.987H2.75a.75.75 0 0 1-.712-.987l.73-2.187.054-.145c.093-.22.225-.415.384-.581A7 7 0 1 1 15 7"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M6.737 2.466a2 2 0 0 1 2.677.138l2.335 2.336L8 8.69 6.03 6.72 4.97 7.78l2.5 2.5.057.052a.75.75 0 0 0 1.004-.052L12.81 6l.585.586.138.151c.64.786.594 1.945-.138 2.677l-3.982 3.983a2 2 0 0 1-2.829 0L2.603 9.414a2 2 0 0 1 0-2.828l3.982-3.982zm8.169 1.44L12.81 6l-1.06-1.06 2.095-2.095z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M6.586 2.604a2 2 0 0 1 2.828 0l3.983 3.982a2 2 0 0 1 0 2.828l-3.983 3.983a2 2 0 0 1-2.828 0L2.604 9.414a2 2 0 0 1 0-2.828zm1.768 1.06a.5.5 0 0 0-.708 0L3.664 7.646a.5.5 0 0 0 0 .708l3.982 3.982a.5.5 0 0 0 .708 0l3.982-3.982a.5.5 0 0 0 0-.708z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M4.585 2.603a2 2 0 0 1 2.432-.304L5.682 3.634q-.019.014-.036.03L1.664 7.646a.5.5 0 0 0 0 .707l3.982 3.983.026.021 1.344 1.344a2 2 0 0 1-2.43-.305L.602 9.414a2 2 0 0 1 0-2.828z"/><path fill="currentcolor" d="M8.586 2.604a2 2 0 0 1 2.828 0l3.983 3.982a2 2 0 0 1 0 2.828l-3.983 3.983a2 2 0 0 1-2.828 0L4.604 9.414a2 2 0 0 1 0-2.828zm1.768 1.06a.5.5 0 0 0-.708 0L5.664 7.646a.5.5 0 0 0 0 .708l3.982 3.982a.5.5 0 0 0 .707 0l3.983-3.982a.5.5 0 0 0 0-.708z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" fill-rule="evenodd" d="M6.585 2.603a2 2 0 0 1 2.829 0l3.982 3.982a2 2 0 0 1 .138 2.677l-.138.152-3.982 3.982a2 2 0 0 1-2.829 0L2.603 9.414a2 2 0 0 1 0-2.829zM8 10a1 1 0 1 0 0 2 1 1 0 0 0 0-2m-.75-6v5h1.5V4z" clip-rule="evenodd"/></svg>
|
package/svgs/core/space.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="m10.213 11.918.037-.02.037-.
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="m10.213 11.918.037-.02.037-.022c1.3-.753 2.5-1.566 3.523-2.38a5.98 5.98 0 0 1-2.81 3.7 5.98 5.98 0 0 1-4.61.584 29 29 0 0 0 3.823-1.862"/><path fill="currentcolor" fill-rule="evenodd" d="M.206 12.5c-.21-.365-.222-.762-.149-1.11.072-.343.232-.681.432-1.002.35-.559.883-1.162 1.541-1.774a6 6 0 0 1 9.487-5.477c.858-.264 1.648-.424 2.307-.447.377-.013.75.017 1.083.126.338.111.677.32.887.684.186.322.219.664.17.988a2.7 2.7 0 0 1-.276.812c-.276.539-.738 1.113-1.308 1.689-1.148 1.158-2.866 2.446-4.88 3.609s-3.988 2.007-5.566 2.422c-.783.206-1.511.318-2.116.288C1.253 13.28.56 13.113.206 12.5m3.36-3.725a4.502 4.502 0 0 1 8.778-1.954c-.962.808-2.191 1.668-3.594 2.478s-2.762 1.444-3.943 1.873a4.5 4.5 0 0 1-1.241-2.397M2.804 11q.197.342.431.648c-.563.129-1.015.178-1.344.162-.22-.01-.327-.046-.373-.068l.007-.045c.023-.108.09-.28.237-.514a6 6 0 0 1 .697-.88q.147.355.345.697m10.392-6a6 6 0 0 0-.431-.648 6 6 0 0 1 1.11-.163c.277-.01.459.018.564.052l.043.016c-.005.052-.028.162-.128.358-.15.292-.419.659-.813 1.082A6 6 0 0 0 13.196 5" clip-rule="evenodd"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M1.5 9a6.5 6.5 0 0 1 3.75-5.891V1.485a8.003 8.003 0 0 0-2.767 13.308l1.034-1.086A6.48 6.48 0 0 1 1.5 9"/><path fill="currentcolor" fill-rule="evenodd" d="M8.75 1.035v6.08a2.501 2.501 0 1 1-1.5 0v-6.08a8 8 0 0 1 1.5 0M7 9.5a1 1 0 1 1 2 0 1 1 0 0 1-2 0" clip-rule="evenodd"/><path fill="currentcolor" d="M10.75 1.485V3.11a6.5 6.5 0 0 1 1.733 10.598l1.034 1.086A8.003 8.003 0 0 0 10.75 1.485"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor"
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="m11.573 5.983-4 4.75a.75.75 0 0 1-1.146 0l-2-2.375 1.146-.966L7 9.085l3.427-4.068zM14.5 4a.5.5 0 0 0-.4-.49L14 3.5H2a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h5.5V14H2a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h12l.204.01A2 2 0 0 1 16 4v4.5h-1.5z"/><path fill="currentcolor" d="M13.5 9.5V12H16v1.5h-2.5V16H12v-2.5H9.5V12H12V9.5z"/></svg>
|