@atlaskit/icon-lab 5.14.0 → 5.15.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 +40 -0
- package/core/ai-bot.d.ts +13 -0
- package/core/ai-bot.js +29 -0
- package/core/ai-compute.d.ts +13 -0
- package/core/ai-compute.js +29 -0
- package/core/ai-search.d.ts +13 -0
- package/core/ai-search.js +29 -0
- package/core/diagram-architecture-map.d.ts +13 -0
- package/core/diagram-architecture-map.js +29 -0
- package/core/diagram-object-boundary.d.ts +13 -0
- package/core/diagram-object-boundary.js +29 -0
- package/core/diagram-object-entity.d.ts +13 -0
- package/core/diagram-object-entity.js +29 -0
- package/core/flower.d.ts +13 -0
- package/core/flower.js +28 -0
- package/core/survey.d.ts +13 -0
- package/core/survey.js +29 -0
- package/dist/cjs/deprecated-core.js +8 -1
- package/dist/cjs/metadata-core.js +73 -1
- package/dist/es2019/deprecated-core.js +8 -1
- package/dist/es2019/metadata-core.js +73 -1
- package/dist/esm/deprecated-core.js +8 -1
- package/dist/esm/metadata-core.js +73 -1
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/package.json +7 -7
- package/svgs/core/ai-bot.svg +1 -0
- package/svgs/core/ai-compute.svg +1 -0
- package/svgs/core/ai-search.svg +1 -0
- package/svgs/core/diagram-architecture-map.svg +1 -0
- package/svgs/core/diagram-object-boundary.svg +1 -0
- package/svgs/core/diagram-object-entity.svg +1 -0
- package/svgs/core/flower.svg +1 -0
- package/svgs/core/survey.svg +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# @atlaskit/icon-lab
|
|
2
2
|
|
|
3
|
+
## 5.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`88301765253b1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/88301765253b1) -
|
|
8
|
+
This release adds icons in `@atlaskit/icon-lab`.
|
|
9
|
+
|
|
10
|
+
### Added:
|
|
11
|
+
|
|
12
|
+
**`@atlaskit/icon-lab/core`**
|
|
13
|
+
- `ai-bot`
|
|
14
|
+
- `ai-compute`
|
|
15
|
+
- `ai-search`
|
|
16
|
+
- `diagram-architecture-map`
|
|
17
|
+
- `diagram-object-boundary`
|
|
18
|
+
- `diagram-object-entity`
|
|
19
|
+
- `flower`
|
|
20
|
+
- `survey`
|
|
21
|
+
|
|
22
|
+
- [`88301765253b1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/88301765253b1) -
|
|
23
|
+
This release adds icons in `@atlaskit/icon-lab`.
|
|
24
|
+
|
|
25
|
+
### Added:
|
|
26
|
+
|
|
27
|
+
**`@atlaskit/icon-lab/core`**
|
|
28
|
+
- `ai-bot`
|
|
29
|
+
- `ai-compute`
|
|
30
|
+
- `ai-search`
|
|
31
|
+
- `diagram-architecture-map`
|
|
32
|
+
- `diagram-object-boundary`
|
|
33
|
+
- `diagram-object-entity`
|
|
34
|
+
- `flower`
|
|
35
|
+
- `survey`
|
|
36
|
+
|
|
37
|
+
## 5.14.1
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- Updated dependencies
|
|
42
|
+
|
|
3
43
|
## 5.14.0
|
|
4
44
|
|
|
5
45
|
### Minor Changes
|
package/core/ai-bot.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::40dd40a3e1b7f609adf7c9c500bf5466>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const AiBotIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default AiBotIcon;
|
package/core/ai-bot.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::6eef8338284b08fd0cc31ac790706c6e>>
|
|
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: "AiBot".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for representing AI bots.
|
|
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 AiBotIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "AiBotIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M13 5.5a.5.5 0 0 0-.5-.5h-9a.5.5 0 0 0-.5.5V13a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5zm-6.5 2v3H5v-3zm4.5 0v3H9.5v-3zm3.5 1H16V10h-1.5v3a2 2 0 0 1-2 2h-9a2 2 0 0 1-2-2v-3H0V8.5h1.5v-3a2 2 0 0 1 2-2h3.75v-2H4V0h4a.75.75 0 0 1 .75.75V3.5h3.75a2 2 0 0 1 2 2z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
AiBotIcon.displayName = 'AiBotIcon';
|
|
29
|
+
var _default = exports.default = AiBotIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::cea6b4ca578830618c7e3e71f83a580a>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const AiComputeIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default AiComputeIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::1405f9a4b9aa06e85077cee7893bb626>>
|
|
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: "AiCompute".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for representing AI compute and memory.
|
|
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 AiComputeIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "AiComputeIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M7.25 7.07V3.19C7.25 2.545 6.714 2 6.021 2c-.692 0-1.228.546-1.228 1.19q0 .137.03.263a.75.75 0 0 1-.902.9.996.996 0 0 0-.59 1.897.75.75 0 0 1-.054 1.416 1.811 1.811 0 0 0 .368 3.533.75.75 0 0 1 .682.747v.593a1.462 1.462 0 0 0 2.923 0V9.362a4.13 4.13 0 0 1-2.043.552v-1.5c.542 0 1.086-.184 1.481-.47.4-.289.562-.61.562-.875m1.5-2.57H10v-.732a2 2 0 0 1 .586-1.414L11.72 1.22l1.06 1.06-1.133 1.134a.5.5 0 0 0-.147.354V4.5h3V6H8.75v2H12v1.5H8.75v2h1.705c.31 0 .617.072.895.21l1.735.87-.67 1.34-1.736-.867a.5.5 0 0 0-.224-.053H8.71a2.958 2.958 0 0 1-5.883-.444 3.31 3.31 0 0 1-1.116-5.72 2.496 2.496 0 0 1 1.604-3.98C3.483 1.518 4.641.5 6.021.5 7.514.5 8.75 1.69 8.75 3.19z"/><path fill="currentcolor" d="M14.25 4a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5m-1.5 8a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5m-1-4.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5m.5-7a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
AiComputeIcon.displayName = 'AiComputeIcon';
|
|
29
|
+
var _default = exports.default = AiComputeIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::a648b8fce3502a7f1bc71abd47874d95>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const AiSearchIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default AiSearchIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::df727533991c4aac2a7e523738f16a10>>
|
|
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: "AiSearch".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for search interactions powered by Rovo/AI.
|
|
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 AiSearchIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "AiSearchIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M6 2.612A4.501 4.501 0 0 0 7 11.5a4.48 4.48 0 0 0 3.182-1.318A4.5 4.5 0 0 0 11.387 8h1.53a6 6 0 0 1-1.179 2.678l3.292 3.292-1.06 1.06-3.292-3.292A6 6 0 1 1 6 1.084z"/><path fill="currentcolor" d="M14 3.25a.75.75 0 0 1-.493.705l-1.285.469a.5.5 0 0 0-.298.298l-.469 1.285a.75.75 0 0 1-1.41 0l-.469-1.285a.5.5 0 0 0-.298-.298l-1.285-.469a.75.75 0 0 1-.484-.589L7.5 3.25l.009-.116a.75.75 0 0 1 .484-.59l1.285-.468a.5.5 0 0 0 .298-.298l.469-1.285.049-.106A.75.75 0 0 1 10.749 0l.116.009a.75.75 0 0 1 .541.378l.05.106.468 1.285a.5.5 0 0 0 .298.298l1.285.469A.75.75 0 0 1 14 3.25"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
AiSearchIcon.displayName = 'AiSearchIcon';
|
|
29
|
+
var _default = exports.default = AiSearchIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::ea4bcd48830507a852cc2367e94cc089>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const DiagramArchitectureMapIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default DiagramArchitectureMapIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::66d007939bf0d2ebb7eb357b9bdbfe0a>>
|
|
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: "DiagramArchitectureMap".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for architecture map diagram type in Whiteboards.
|
|
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 DiagramArchitectureMapIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "DiagramArchitectureMapIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M10 14.5h4.5v-3H10zm6 .13c0 .76-.62 1.38-1.37 1.38H9.88c-.76 0-1.37-.62-1.37-1.37v-3.25c0-.76.62-1.37 1.38-1.37h4.75c.76 0 1.38.62 1.38 1.38zM1 13v-2h1.5v2a.5.5 0 0 0 .5.5h4V15H3a2 2 0 0 1-2-2m12.5-8a.5.5 0 0 0-.5-.5h-3V3h3a2 2 0 0 1 2 2v3.5h-1.5zM7 6.78c-.74.32-1.72.5-2.75.5s-2-.18-2.75-.5v.43c0 .22.14.53.65.81.5.28 1.24.48 2.1.48s1.61-.19 2.1-.48c.5-.29.65-.59.65-.81zm0-2.72c-.74.32-1.72.5-2.75.5s-2-.18-2.75-.5v.93a.3.3 0 0 0 .06.08c.09.09.25.21.51.32.52.23 1.29.39 2.17.39s1.66-.16 2.17-.38c.26-.11.42-.23.51-.32A.3.3 0 0 0 7 4.99zM4.25 1.5c-.89 0-1.66.16-2.17.39a1.6 1.6 0 0 0-.51.32.4.4 0 0 0-.06.07c.01.02.03.04.06.07.09.09.25.21.51.32.52.23 1.29.39 2.17.39s1.66-.16 2.17-.38c.26-.11.42-.23.51-.32a.4.4 0 0 0 .06-.07.4.4 0 0 0-.06-.07 1.6 1.6 0 0 0-.51-.32c-.51-.24-1.28-.4-2.17-.4M8.5 7.21c0 .97-.64 1.68-1.4 2.12-.77.44-1.78.67-2.85.67s-2.08-.23-2.85-.67C.64 8.89 0 8.18 0 7.21V2.28c0-.46.22-.84.49-1.12s.62-.49.99-.65C2.22.18 3.21 0 4.25 0s2.03.18 2.78.51c.37.16.72.38.99.65.27.28.49.66.49 1.12z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
DiagramArchitectureMapIcon.displayName = 'DiagramArchitectureMapIcon';
|
|
29
|
+
var _default = exports.default = DiagramArchitectureMapIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::d7f2473a46cdec51bbcad5e90d2cc0cb>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const DiagramObjectBoundaryIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default DiagramObjectBoundaryIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::94a897e7fdbf30dedea93c0c0f4b70b8>>
|
|
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: "DiagramObjectBoundary".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for Diagram object boundary in Whiteboards
|
|
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 DiagramObjectBoundaryIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "DiagramObjectBoundaryIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 8a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0M16 8A6 6 0 1 1 4 8a6 6 0 0 1 12 0"/><path fill="currentcolor" d="M1.5 2v5.25h3.25v1.5H1.5V14H0V2z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
DiagramObjectBoundaryIcon.displayName = 'DiagramObjectBoundaryIcon';
|
|
29
|
+
var _default = exports.default = DiagramObjectBoundaryIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::4cf9c426510e73ed312a8d0c5f5996f8>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const DiagramObjectEntityIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default DiagramObjectEntityIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::cbef6d73009e598d26ea846917f1cd18>>
|
|
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: "DiagramObjectEntity".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for diagram symbol entity object in Whiteboards
|
|
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 DiagramObjectEntityIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "DiagramObjectEntityIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M12.5 7.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0m1.5 0a6 6 0 1 1-12 0 6 6 0 0 1 12 0"/><path fill="currentcolor" d="M14 13v1.5H2V13z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
DiagramObjectEntityIcon.displayName = 'DiagramObjectEntityIcon';
|
|
29
|
+
var _default = exports.default = DiagramObjectEntityIcon;
|
package/core/flower.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::684801189d74326fe64b899333637aa3>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const FlowerIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default FlowerIcon;
|
package/core/flower.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::0f4c38469e331907b0778b01362388bc>>
|
|
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: "Flower".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
20
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
21
|
+
*/
|
|
22
|
+
const FlowerIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
23
|
+
name: "FlowerIcon",
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M7.25 10.645a2.7 2.7 0 0 1-.59-.246L5.53 11.53l-1.06-1.06L5.6 9.339a2.7 2.7 0 0 1-.245-.589h-.48a2.375 2.375 0 1 0 2.375 2.375zm1.634-3.529a1.25 1.25 0 1 0-1.768 1.768 1.25 1.25 0 0 0 1.768-1.768m-.134 4.009a2.375 2.375 0 1 0 2.375-2.375h-.48q-.087.305-.246.589l1.131 1.13-1.06 1.061-1.131-1.13a2.7 2.7 0 0 1-.589.245zm-1.5-6.25A2.375 2.375 0 1 0 4.875 7.25h.48a2.7 2.7 0 0 1 .245-.59L4.47 5.53l1.06-1.06L6.66 5.6q.284-.159.59-.246zm1.5.48q.305.087.589.245l1.13-1.13 1.061 1.06-1.13 1.13q.158.284.245.59h.48A2.375 2.375 0 1 0 8.75 4.875zm6.25-.48c0 1.283-.624 2.42-1.585 3.125A3.875 3.875 0 1 1 8 13.415 3.875 3.875 0 1 1 2.584 8 3.875 3.875 0 1 1 8 2.584a3.875 3.875 0 0 1 7 2.291"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
FlowerIcon.displayName = 'FlowerIcon';
|
|
28
|
+
var _default = exports.default = FlowerIcon;
|
package/core/survey.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::eb98770be8dcd177be26eb37f2230feb>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const SurveyIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default SurveyIcon;
|
package/core/survey.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::698e254198d7222b92b3a04f2e78869b>>
|
|
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: "Survey".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for surveys.
|
|
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 SurveyIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
name: "SurveyIcon",
|
|
25
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M13 3.5a.5.5 0 0 0-.5-.5h-1v1.25a.75.75 0 0 1-.75.75h-5.5a.75.75 0 0 1-.75-.75V3h-1a.5.5 0 0 0-.5.5V14a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5zm-7 7V12H4.5v-1.5zm5.5 0V12h-4v-1.5zM6 7.5V9H4.5V7.5zm5.5 0V9h-4V7.5zm-5-6A.5.5 0 0 0 6 2v1.5h4V2a.5.5 0 0 0-.5-.5zm8 12.5a2 2 0 0 1-2 2h-9a2 2 0 0 1-2-2V3.5a2 2 0 0 1 2-2h1.065A2 2 0 0 1 6.5 0h3a2 2 0 0 1 1.935 1.5H12.5a2 2 0 0 1 2 2z"/>`
|
|
26
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
27
|
+
}, props));
|
|
28
|
+
SurveyIcon.displayName = 'SurveyIcon';
|
|
29
|
+
var _default = exports.default = SurveyIcon;
|
|
@@ -12,5 +12,12 @@ exports.default = void 0;
|
|
|
12
12
|
* @codegen <<SignedSource::76fab6ad916e9e2ad7e252306192ad79>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
|
-
var deprecatedIcons = {
|
|
15
|
+
var deprecatedIcons = {
|
|
16
|
+
'@atlaskit/icon-lab/core/roadmaps-plan': {
|
|
17
|
+
message: 'The icon "roadmaps-plan" is deprecated in favour of "plan" from “@atlaskit/icon-lab/core”'
|
|
18
|
+
},
|
|
19
|
+
'@atlaskit/icon-lab/core/roadmaps-service': {
|
|
20
|
+
message: 'The icon "roadmaps-service" is deprecated in favour of "service" from “@atlaskit/icon-lab/core”'
|
|
21
|
+
}
|
|
22
|
+
};
|
|
16
23
|
var _default = exports.default = deprecatedIcons;
|
|
@@ -9,11 +9,29 @@ 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::c00a9689b8756addd1a889f5f3535450>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
16
|
var metadata = {
|
|
17
|
+
'ai-bot': {
|
|
18
|
+
keywords: ['ai-bot', 'aibot', 'icon', 'icon-lab', 'AI', 'chat bot'],
|
|
19
|
+
componentName: 'AiBotIcon',
|
|
20
|
+
package: '@atlaskit/icon-lab/core/ai-bot',
|
|
21
|
+
categorization: 'single-purpose',
|
|
22
|
+
usage: 'Reserved for representing AI bots.',
|
|
23
|
+
team: 'Design System Team',
|
|
24
|
+
status: 'published'
|
|
25
|
+
},
|
|
26
|
+
'ai-compute': {
|
|
27
|
+
keywords: ['ai-compute', 'aicompute', 'icon', 'icon-lab', 'AI', 'brain', 'circuit', 'memory', 'compute'],
|
|
28
|
+
componentName: 'AiComputeIcon',
|
|
29
|
+
package: '@atlaskit/icon-lab/core/ai-compute',
|
|
30
|
+
categorization: 'single-purpose',
|
|
31
|
+
usage: 'Reserved for representing AI compute and memory.',
|
|
32
|
+
team: 'Design System Team',
|
|
33
|
+
status: 'published'
|
|
34
|
+
},
|
|
17
35
|
'ai-generative-audio-briefing': {
|
|
18
36
|
keywords: ['ai-generative-audio-briefing', 'aigenerativeaudiobriefing', 'icon', 'icon-lab', 'audio briefing', 'breifing', 'podcast', 'headphones', 'AI'],
|
|
19
37
|
componentName: 'AiGenerativeAudioBriefingIcon',
|
|
@@ -92,6 +110,16 @@ var metadata = {
|
|
|
92
110
|
team: 'Compass',
|
|
93
111
|
status: 'published'
|
|
94
112
|
},
|
|
113
|
+
'ai-search': {
|
|
114
|
+
keywords: ['ai-search', 'aisearch', 'icon', 'icon-lab', 'search sparkle', 'rovo sparkle', 'search', 'rovo', 'AI search'],
|
|
115
|
+
componentName: 'AiSearchIcon',
|
|
116
|
+
package: '@atlaskit/icon-lab/core/ai-search',
|
|
117
|
+
categorization: 'single-purpose',
|
|
118
|
+
usage: 'Reserved for search interactions powered by Rovo/AI.',
|
|
119
|
+
team: 'Rovo and AI Design Team',
|
|
120
|
+
status: 'published',
|
|
121
|
+
slackChannel: '#rad-design'
|
|
122
|
+
},
|
|
95
123
|
'align-content-bottom': {
|
|
96
124
|
keywords: ['align-content-bottom', 'aligncontentbottom', 'icon', 'icon-lab', 'align', 'alignment', 'content', 'bottom', 'vertical'],
|
|
97
125
|
componentName: 'AlignContentBottomIcon',
|
|
@@ -732,6 +760,15 @@ var metadata = {
|
|
|
732
760
|
status: 'published',
|
|
733
761
|
slackChannel: '#forge-sql'
|
|
734
762
|
},
|
|
763
|
+
'diagram-architecture-map': {
|
|
764
|
+
keywords: ['diagram-architecture-map', 'diagramarchitecturemap', 'icon', 'icon-lab', 'diagram', 'architecture map', 'cloud'],
|
|
765
|
+
componentName: 'DiagramArchitectureMapIcon',
|
|
766
|
+
package: '@atlaskit/icon-lab/core/diagram-architecture-map',
|
|
767
|
+
categorization: 'single-purpose',
|
|
768
|
+
usage: 'Reserved for architecture map diagram type in Whiteboards.',
|
|
769
|
+
team: 'Whiteboards',
|
|
770
|
+
status: 'published'
|
|
771
|
+
},
|
|
735
772
|
'diagram-arrowhead-aggregation-left': {
|
|
736
773
|
keywords: ['diagram-arrowhead-aggregation-left', 'diagramarrowheadaggregationleft', 'icon', 'icon-lab', 'arrowhead', 'aggregation', 'start point', 'diagram'],
|
|
737
774
|
componentName: 'DiagramArrowheadAggregationLeftIcon',
|
|
@@ -1083,6 +1120,24 @@ var metadata = {
|
|
|
1083
1120
|
team: 'Whiteboards',
|
|
1084
1121
|
status: 'published'
|
|
1085
1122
|
},
|
|
1123
|
+
'diagram-object-boundary': {
|
|
1124
|
+
keywords: ['diagram-object-boundary', 'diagramobjectboundary', 'icon', 'icon-lab', 'Diagram', 'object', 'boundary', 'Whiteboards'],
|
|
1125
|
+
componentName: 'DiagramObjectBoundaryIcon',
|
|
1126
|
+
package: '@atlaskit/icon-lab/core/diagram-object-boundary',
|
|
1127
|
+
categorization: 'single-purpose',
|
|
1128
|
+
usage: 'Reserved for Diagram object boundary in Whiteboards',
|
|
1129
|
+
team: 'Whiteboards',
|
|
1130
|
+
status: 'published'
|
|
1131
|
+
},
|
|
1132
|
+
'diagram-object-entity': {
|
|
1133
|
+
keywords: ['diagram-object-entity', 'diagramobjectentity', 'icon', 'icon-lab', 'Diagram', 'Whiteboards', 'entity', 'object'],
|
|
1134
|
+
componentName: 'DiagramObjectEntityIcon',
|
|
1135
|
+
package: '@atlaskit/icon-lab/core/diagram-object-entity',
|
|
1136
|
+
categorization: 'single-purpose',
|
|
1137
|
+
usage: 'Reserved for diagram symbol entity object in Whiteboards',
|
|
1138
|
+
team: 'Whiteboards',
|
|
1139
|
+
status: 'published'
|
|
1140
|
+
},
|
|
1086
1141
|
'diagram-symbol-action': {
|
|
1087
1142
|
keywords: ['diagram-symbol-action', 'diagramsymbolaction', 'icon', 'icon-lab', 'diagram', 'symbol', 'action'],
|
|
1088
1143
|
componentName: 'DiagramSymbolActionIcon',
|
|
@@ -1989,6 +2044,14 @@ var metadata = {
|
|
|
1989
2044
|
team: 'Design System Team',
|
|
1990
2045
|
status: 'published'
|
|
1991
2046
|
},
|
|
2047
|
+
flower: {
|
|
2048
|
+
keywords: ['flower', 'icon', 'icon-lab', 'flower', 'daisy', 'growth', 'plant'],
|
|
2049
|
+
componentName: 'FlowerIcon',
|
|
2050
|
+
package: '@atlaskit/icon-lab/core/flower',
|
|
2051
|
+
categorization: 'multi-purpose',
|
|
2052
|
+
team: 'Design System Team',
|
|
2053
|
+
status: 'published'
|
|
2054
|
+
},
|
|
1992
2055
|
'folder-shared': {
|
|
1993
2056
|
keywords: ['folder-shared', 'foldershared', 'icon', 'icon-lab', 'Shared', 'User', 'Public'],
|
|
1994
2057
|
componentName: 'FolderSharedIcon',
|
|
@@ -3107,6 +3170,15 @@ var metadata = {
|
|
|
3107
3170
|
team: 'confluence insights',
|
|
3108
3171
|
status: 'published'
|
|
3109
3172
|
},
|
|
3173
|
+
survey: {
|
|
3174
|
+
keywords: ['survey', 'icon', 'icon-lab', 'survey', 'intake form', 'clipboard', 'questionnaire', 'research'],
|
|
3175
|
+
componentName: 'SurveyIcon',
|
|
3176
|
+
package: '@atlaskit/icon-lab/core/survey',
|
|
3177
|
+
categorization: 'single-purpose',
|
|
3178
|
+
usage: 'Reserved for surveys.',
|
|
3179
|
+
team: 'Jira Service Management',
|
|
3180
|
+
status: 'published'
|
|
3181
|
+
},
|
|
3110
3182
|
swap: {
|
|
3111
3183
|
keywords: ['swap', 'icon', 'icon-lab', 'Swap', 'Jira status', 'Whiteboards', 'Smart section'],
|
|
3112
3184
|
componentName: 'SwapIcon',
|
|
@@ -6,5 +6,12 @@
|
|
|
6
6
|
* @codegen <<SignedSource::76fab6ad916e9e2ad7e252306192ad79>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
|
-
const deprecatedIcons = {
|
|
9
|
+
const deprecatedIcons = {
|
|
10
|
+
'@atlaskit/icon-lab/core/roadmaps-plan': {
|
|
11
|
+
message: 'The icon "roadmaps-plan" is deprecated in favour of "plan" from “@atlaskit/icon-lab/core”'
|
|
12
|
+
},
|
|
13
|
+
'@atlaskit/icon-lab/core/roadmaps-service': {
|
|
14
|
+
message: 'The icon "roadmaps-service" is deprecated in favour of "service" from “@atlaskit/icon-lab/core”'
|
|
15
|
+
}
|
|
16
|
+
};
|
|
10
17
|
export default deprecatedIcons;
|
|
@@ -3,11 +3,29 @@
|
|
|
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::c00a9689b8756addd1a889f5f3535450>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
const metadata = {
|
|
11
|
+
'ai-bot': {
|
|
12
|
+
keywords: ['ai-bot', 'aibot', 'icon', 'icon-lab', 'AI', 'chat bot'],
|
|
13
|
+
componentName: 'AiBotIcon',
|
|
14
|
+
package: '@atlaskit/icon-lab/core/ai-bot',
|
|
15
|
+
categorization: 'single-purpose',
|
|
16
|
+
usage: 'Reserved for representing AI bots.',
|
|
17
|
+
team: 'Design System Team',
|
|
18
|
+
status: 'published'
|
|
19
|
+
},
|
|
20
|
+
'ai-compute': {
|
|
21
|
+
keywords: ['ai-compute', 'aicompute', 'icon', 'icon-lab', 'AI', 'brain', 'circuit', 'memory', 'compute'],
|
|
22
|
+
componentName: 'AiComputeIcon',
|
|
23
|
+
package: '@atlaskit/icon-lab/core/ai-compute',
|
|
24
|
+
categorization: 'single-purpose',
|
|
25
|
+
usage: 'Reserved for representing AI compute and memory.',
|
|
26
|
+
team: 'Design System Team',
|
|
27
|
+
status: 'published'
|
|
28
|
+
},
|
|
11
29
|
'ai-generative-audio-briefing': {
|
|
12
30
|
keywords: ['ai-generative-audio-briefing', 'aigenerativeaudiobriefing', 'icon', 'icon-lab', 'audio briefing', 'breifing', 'podcast', 'headphones', 'AI'],
|
|
13
31
|
componentName: 'AiGenerativeAudioBriefingIcon',
|
|
@@ -86,6 +104,16 @@ const metadata = {
|
|
|
86
104
|
team: 'Compass',
|
|
87
105
|
status: 'published'
|
|
88
106
|
},
|
|
107
|
+
'ai-search': {
|
|
108
|
+
keywords: ['ai-search', 'aisearch', 'icon', 'icon-lab', 'search sparkle', 'rovo sparkle', 'search', 'rovo', 'AI search'],
|
|
109
|
+
componentName: 'AiSearchIcon',
|
|
110
|
+
package: '@atlaskit/icon-lab/core/ai-search',
|
|
111
|
+
categorization: 'single-purpose',
|
|
112
|
+
usage: 'Reserved for search interactions powered by Rovo/AI.',
|
|
113
|
+
team: 'Rovo and AI Design Team',
|
|
114
|
+
status: 'published',
|
|
115
|
+
slackChannel: '#rad-design'
|
|
116
|
+
},
|
|
89
117
|
'align-content-bottom': {
|
|
90
118
|
keywords: ['align-content-bottom', 'aligncontentbottom', 'icon', 'icon-lab', 'align', 'alignment', 'content', 'bottom', 'vertical'],
|
|
91
119
|
componentName: 'AlignContentBottomIcon',
|
|
@@ -726,6 +754,15 @@ const metadata = {
|
|
|
726
754
|
status: 'published',
|
|
727
755
|
slackChannel: '#forge-sql'
|
|
728
756
|
},
|
|
757
|
+
'diagram-architecture-map': {
|
|
758
|
+
keywords: ['diagram-architecture-map', 'diagramarchitecturemap', 'icon', 'icon-lab', 'diagram', 'architecture map', 'cloud'],
|
|
759
|
+
componentName: 'DiagramArchitectureMapIcon',
|
|
760
|
+
package: '@atlaskit/icon-lab/core/diagram-architecture-map',
|
|
761
|
+
categorization: 'single-purpose',
|
|
762
|
+
usage: 'Reserved for architecture map diagram type in Whiteboards.',
|
|
763
|
+
team: 'Whiteboards',
|
|
764
|
+
status: 'published'
|
|
765
|
+
},
|
|
729
766
|
'diagram-arrowhead-aggregation-left': {
|
|
730
767
|
keywords: ['diagram-arrowhead-aggregation-left', 'diagramarrowheadaggregationleft', 'icon', 'icon-lab', 'arrowhead', 'aggregation', 'start point', 'diagram'],
|
|
731
768
|
componentName: 'DiagramArrowheadAggregationLeftIcon',
|
|
@@ -1077,6 +1114,24 @@ const metadata = {
|
|
|
1077
1114
|
team: 'Whiteboards',
|
|
1078
1115
|
status: 'published'
|
|
1079
1116
|
},
|
|
1117
|
+
'diagram-object-boundary': {
|
|
1118
|
+
keywords: ['diagram-object-boundary', 'diagramobjectboundary', 'icon', 'icon-lab', 'Diagram', 'object', 'boundary', 'Whiteboards'],
|
|
1119
|
+
componentName: 'DiagramObjectBoundaryIcon',
|
|
1120
|
+
package: '@atlaskit/icon-lab/core/diagram-object-boundary',
|
|
1121
|
+
categorization: 'single-purpose',
|
|
1122
|
+
usage: 'Reserved for Diagram object boundary in Whiteboards',
|
|
1123
|
+
team: 'Whiteboards',
|
|
1124
|
+
status: 'published'
|
|
1125
|
+
},
|
|
1126
|
+
'diagram-object-entity': {
|
|
1127
|
+
keywords: ['diagram-object-entity', 'diagramobjectentity', 'icon', 'icon-lab', 'Diagram', 'Whiteboards', 'entity', 'object'],
|
|
1128
|
+
componentName: 'DiagramObjectEntityIcon',
|
|
1129
|
+
package: '@atlaskit/icon-lab/core/diagram-object-entity',
|
|
1130
|
+
categorization: 'single-purpose',
|
|
1131
|
+
usage: 'Reserved for diagram symbol entity object in Whiteboards',
|
|
1132
|
+
team: 'Whiteboards',
|
|
1133
|
+
status: 'published'
|
|
1134
|
+
},
|
|
1080
1135
|
'diagram-symbol-action': {
|
|
1081
1136
|
keywords: ['diagram-symbol-action', 'diagramsymbolaction', 'icon', 'icon-lab', 'diagram', 'symbol', 'action'],
|
|
1082
1137
|
componentName: 'DiagramSymbolActionIcon',
|
|
@@ -1983,6 +2038,14 @@ const metadata = {
|
|
|
1983
2038
|
team: 'Design System Team',
|
|
1984
2039
|
status: 'published'
|
|
1985
2040
|
},
|
|
2041
|
+
flower: {
|
|
2042
|
+
keywords: ['flower', 'icon', 'icon-lab', 'flower', 'daisy', 'growth', 'plant'],
|
|
2043
|
+
componentName: 'FlowerIcon',
|
|
2044
|
+
package: '@atlaskit/icon-lab/core/flower',
|
|
2045
|
+
categorization: 'multi-purpose',
|
|
2046
|
+
team: 'Design System Team',
|
|
2047
|
+
status: 'published'
|
|
2048
|
+
},
|
|
1986
2049
|
'folder-shared': {
|
|
1987
2050
|
keywords: ['folder-shared', 'foldershared', 'icon', 'icon-lab', 'Shared', 'User', 'Public'],
|
|
1988
2051
|
componentName: 'FolderSharedIcon',
|
|
@@ -3101,6 +3164,15 @@ const metadata = {
|
|
|
3101
3164
|
team: 'confluence insights',
|
|
3102
3165
|
status: 'published'
|
|
3103
3166
|
},
|
|
3167
|
+
survey: {
|
|
3168
|
+
keywords: ['survey', 'icon', 'icon-lab', 'survey', 'intake form', 'clipboard', 'questionnaire', 'research'],
|
|
3169
|
+
componentName: 'SurveyIcon',
|
|
3170
|
+
package: '@atlaskit/icon-lab/core/survey',
|
|
3171
|
+
categorization: 'single-purpose',
|
|
3172
|
+
usage: 'Reserved for surveys.',
|
|
3173
|
+
team: 'Jira Service Management',
|
|
3174
|
+
status: 'published'
|
|
3175
|
+
},
|
|
3104
3176
|
swap: {
|
|
3105
3177
|
keywords: ['swap', 'icon', 'icon-lab', 'Swap', 'Jira status', 'Whiteboards', 'Smart section'],
|
|
3106
3178
|
componentName: 'SwapIcon',
|
|
@@ -6,5 +6,12 @@
|
|
|
6
6
|
* @codegen <<SignedSource::76fab6ad916e9e2ad7e252306192ad79>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
|
-
var deprecatedIcons = {
|
|
9
|
+
var deprecatedIcons = {
|
|
10
|
+
'@atlaskit/icon-lab/core/roadmaps-plan': {
|
|
11
|
+
message: 'The icon "roadmaps-plan" is deprecated in favour of "plan" from “@atlaskit/icon-lab/core”'
|
|
12
|
+
},
|
|
13
|
+
'@atlaskit/icon-lab/core/roadmaps-service': {
|
|
14
|
+
message: 'The icon "roadmaps-service" is deprecated in favour of "service" from “@atlaskit/icon-lab/core”'
|
|
15
|
+
}
|
|
16
|
+
};
|
|
10
17
|
export default deprecatedIcons;
|
|
@@ -3,11 +3,29 @@
|
|
|
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::c00a9689b8756addd1a889f5f3535450>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
var metadata = {
|
|
11
|
+
'ai-bot': {
|
|
12
|
+
keywords: ['ai-bot', 'aibot', 'icon', 'icon-lab', 'AI', 'chat bot'],
|
|
13
|
+
componentName: 'AiBotIcon',
|
|
14
|
+
package: '@atlaskit/icon-lab/core/ai-bot',
|
|
15
|
+
categorization: 'single-purpose',
|
|
16
|
+
usage: 'Reserved for representing AI bots.',
|
|
17
|
+
team: 'Design System Team',
|
|
18
|
+
status: 'published'
|
|
19
|
+
},
|
|
20
|
+
'ai-compute': {
|
|
21
|
+
keywords: ['ai-compute', 'aicompute', 'icon', 'icon-lab', 'AI', 'brain', 'circuit', 'memory', 'compute'],
|
|
22
|
+
componentName: 'AiComputeIcon',
|
|
23
|
+
package: '@atlaskit/icon-lab/core/ai-compute',
|
|
24
|
+
categorization: 'single-purpose',
|
|
25
|
+
usage: 'Reserved for representing AI compute and memory.',
|
|
26
|
+
team: 'Design System Team',
|
|
27
|
+
status: 'published'
|
|
28
|
+
},
|
|
11
29
|
'ai-generative-audio-briefing': {
|
|
12
30
|
keywords: ['ai-generative-audio-briefing', 'aigenerativeaudiobriefing', 'icon', 'icon-lab', 'audio briefing', 'breifing', 'podcast', 'headphones', 'AI'],
|
|
13
31
|
componentName: 'AiGenerativeAudioBriefingIcon',
|
|
@@ -86,6 +104,16 @@ var metadata = {
|
|
|
86
104
|
team: 'Compass',
|
|
87
105
|
status: 'published'
|
|
88
106
|
},
|
|
107
|
+
'ai-search': {
|
|
108
|
+
keywords: ['ai-search', 'aisearch', 'icon', 'icon-lab', 'search sparkle', 'rovo sparkle', 'search', 'rovo', 'AI search'],
|
|
109
|
+
componentName: 'AiSearchIcon',
|
|
110
|
+
package: '@atlaskit/icon-lab/core/ai-search',
|
|
111
|
+
categorization: 'single-purpose',
|
|
112
|
+
usage: 'Reserved for search interactions powered by Rovo/AI.',
|
|
113
|
+
team: 'Rovo and AI Design Team',
|
|
114
|
+
status: 'published',
|
|
115
|
+
slackChannel: '#rad-design'
|
|
116
|
+
},
|
|
89
117
|
'align-content-bottom': {
|
|
90
118
|
keywords: ['align-content-bottom', 'aligncontentbottom', 'icon', 'icon-lab', 'align', 'alignment', 'content', 'bottom', 'vertical'],
|
|
91
119
|
componentName: 'AlignContentBottomIcon',
|
|
@@ -726,6 +754,15 @@ var metadata = {
|
|
|
726
754
|
status: 'published',
|
|
727
755
|
slackChannel: '#forge-sql'
|
|
728
756
|
},
|
|
757
|
+
'diagram-architecture-map': {
|
|
758
|
+
keywords: ['diagram-architecture-map', 'diagramarchitecturemap', 'icon', 'icon-lab', 'diagram', 'architecture map', 'cloud'],
|
|
759
|
+
componentName: 'DiagramArchitectureMapIcon',
|
|
760
|
+
package: '@atlaskit/icon-lab/core/diagram-architecture-map',
|
|
761
|
+
categorization: 'single-purpose',
|
|
762
|
+
usage: 'Reserved for architecture map diagram type in Whiteboards.',
|
|
763
|
+
team: 'Whiteboards',
|
|
764
|
+
status: 'published'
|
|
765
|
+
},
|
|
729
766
|
'diagram-arrowhead-aggregation-left': {
|
|
730
767
|
keywords: ['diagram-arrowhead-aggregation-left', 'diagramarrowheadaggregationleft', 'icon', 'icon-lab', 'arrowhead', 'aggregation', 'start point', 'diagram'],
|
|
731
768
|
componentName: 'DiagramArrowheadAggregationLeftIcon',
|
|
@@ -1077,6 +1114,24 @@ var metadata = {
|
|
|
1077
1114
|
team: 'Whiteboards',
|
|
1078
1115
|
status: 'published'
|
|
1079
1116
|
},
|
|
1117
|
+
'diagram-object-boundary': {
|
|
1118
|
+
keywords: ['diagram-object-boundary', 'diagramobjectboundary', 'icon', 'icon-lab', 'Diagram', 'object', 'boundary', 'Whiteboards'],
|
|
1119
|
+
componentName: 'DiagramObjectBoundaryIcon',
|
|
1120
|
+
package: '@atlaskit/icon-lab/core/diagram-object-boundary',
|
|
1121
|
+
categorization: 'single-purpose',
|
|
1122
|
+
usage: 'Reserved for Diagram object boundary in Whiteboards',
|
|
1123
|
+
team: 'Whiteboards',
|
|
1124
|
+
status: 'published'
|
|
1125
|
+
},
|
|
1126
|
+
'diagram-object-entity': {
|
|
1127
|
+
keywords: ['diagram-object-entity', 'diagramobjectentity', 'icon', 'icon-lab', 'Diagram', 'Whiteboards', 'entity', 'object'],
|
|
1128
|
+
componentName: 'DiagramObjectEntityIcon',
|
|
1129
|
+
package: '@atlaskit/icon-lab/core/diagram-object-entity',
|
|
1130
|
+
categorization: 'single-purpose',
|
|
1131
|
+
usage: 'Reserved for diagram symbol entity object in Whiteboards',
|
|
1132
|
+
team: 'Whiteboards',
|
|
1133
|
+
status: 'published'
|
|
1134
|
+
},
|
|
1080
1135
|
'diagram-symbol-action': {
|
|
1081
1136
|
keywords: ['diagram-symbol-action', 'diagramsymbolaction', 'icon', 'icon-lab', 'diagram', 'symbol', 'action'],
|
|
1082
1137
|
componentName: 'DiagramSymbolActionIcon',
|
|
@@ -1983,6 +2038,14 @@ var metadata = {
|
|
|
1983
2038
|
team: 'Design System Team',
|
|
1984
2039
|
status: 'published'
|
|
1985
2040
|
},
|
|
2041
|
+
flower: {
|
|
2042
|
+
keywords: ['flower', 'icon', 'icon-lab', 'flower', 'daisy', 'growth', 'plant'],
|
|
2043
|
+
componentName: 'FlowerIcon',
|
|
2044
|
+
package: '@atlaskit/icon-lab/core/flower',
|
|
2045
|
+
categorization: 'multi-purpose',
|
|
2046
|
+
team: 'Design System Team',
|
|
2047
|
+
status: 'published'
|
|
2048
|
+
},
|
|
1986
2049
|
'folder-shared': {
|
|
1987
2050
|
keywords: ['folder-shared', 'foldershared', 'icon', 'icon-lab', 'Shared', 'User', 'Public'],
|
|
1988
2051
|
componentName: 'FolderSharedIcon',
|
|
@@ -3101,6 +3164,15 @@ var metadata = {
|
|
|
3101
3164
|
team: 'confluence insights',
|
|
3102
3165
|
status: 'published'
|
|
3103
3166
|
},
|
|
3167
|
+
survey: {
|
|
3168
|
+
keywords: ['survey', 'icon', 'icon-lab', 'survey', 'intake form', 'clipboard', 'questionnaire', 'research'],
|
|
3169
|
+
componentName: 'SurveyIcon',
|
|
3170
|
+
package: '@atlaskit/icon-lab/core/survey',
|
|
3171
|
+
categorization: 'single-purpose',
|
|
3172
|
+
usage: 'Reserved for surveys.',
|
|
3173
|
+
team: 'Jira Service Management',
|
|
3174
|
+
status: 'published'
|
|
3175
|
+
},
|
|
3104
3176
|
swap: {
|
|
3105
3177
|
keywords: ['swap', 'icon', 'icon-lab', 'Swap', 'Jira status', 'Whiteboards', 'Smart section'],
|
|
3106
3178
|
componentName: 'SwapIcon',
|
|
@@ -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::c00a9689b8756addd1a889f5f3535450>>
|
|
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::c00a9689b8756addd1a889f5f3535450>>
|
|
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": "5.
|
|
3
|
+
"version": "5.15.0",
|
|
4
4
|
"description": "An icon package for public icon contributions",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"build-glyphs": "ts-node --project ../../../tsconfig.node.json ./build/index.tsx"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@atlaskit/icon": "^
|
|
34
|
+
"@atlaskit/icon": "^30.0.0",
|
|
35
35
|
"@babel/runtime": "^7.0.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"@atlaskit/button": "^23.9.0",
|
|
44
44
|
"@atlaskit/code": "^17.4.0",
|
|
45
45
|
"@atlaskit/heading": "^5.2.0",
|
|
46
|
-
"@atlaskit/modal-dialog": "^14.
|
|
47
|
-
"@atlaskit/primitives": "^17.
|
|
46
|
+
"@atlaskit/modal-dialog": "^14.10.0",
|
|
47
|
+
"@atlaskit/primitives": "^17.1.0",
|
|
48
48
|
"@atlaskit/textfield": "^8.2.0",
|
|
49
|
-
"@atlaskit/tokens": "^
|
|
50
|
-
"@atlaskit/tooltip": "^20.
|
|
49
|
+
"@atlaskit/tokens": "^10.1.0",
|
|
50
|
+
"@atlaskit/tooltip": "^20.14.0",
|
|
51
51
|
"@atlassian/ssr-tests": "workspace:^",
|
|
52
52
|
"@compiled/react": "^0.18.6",
|
|
53
|
-
"@testing-library/react": "^
|
|
53
|
+
"@testing-library/react": "^16.3.0",
|
|
54
54
|
"fs-extra": "^4.0.2",
|
|
55
55
|
"pkg-dir": "^4.2.0",
|
|
56
56
|
"react-dom": "^18.2.0",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M13 5.5a.5.5 0 0 0-.5-.5h-9a.5.5 0 0 0-.5.5V13a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5zm-6.5 2v3H5v-3zm4.5 0v3H9.5v-3zm3.5 1H16V10h-1.5v3a2 2 0 0 1-2 2h-9a2 2 0 0 1-2-2v-3H0V8.5h1.5v-3a2 2 0 0 1 2-2h3.75v-2H4V0h4a.75.75 0 0 1 .75.75V3.5h3.75a2 2 0 0 1 2 2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M7.25 7.07V3.19C7.25 2.545 6.714 2 6.021 2c-.692 0-1.228.546-1.228 1.19q0 .137.03.263a.75.75 0 0 1-.902.9.996.996 0 0 0-.59 1.897.75.75 0 0 1-.054 1.416 1.811 1.811 0 0 0 .368 3.533.75.75 0 0 1 .682.747v.593a1.462 1.462 0 0 0 2.923 0V9.362a4.13 4.13 0 0 1-2.043.552v-1.5c.542 0 1.086-.184 1.481-.47.4-.289.562-.61.562-.875m1.5-2.57H10v-.732a2 2 0 0 1 .586-1.414L11.72 1.22l1.06 1.06-1.133 1.134a.5.5 0 0 0-.147.354V4.5h3V6H8.75v2H12v1.5H8.75v2h1.705c.31 0 .617.072.895.21l1.735.87-.67 1.34-1.736-.867a.5.5 0 0 0-.224-.053H8.71a2.958 2.958 0 0 1-5.883-.444 3.31 3.31 0 0 1-1.116-5.72 2.496 2.496 0 0 1 1.604-3.98C3.483 1.518 4.641.5 6.021.5 7.514.5 8.75 1.69 8.75 3.19z"/><path fill="currentcolor" d="M14.25 4a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5m-1.5 8a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5m-1-4.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5m.5-7a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M6 2.612A4.501 4.501 0 0 0 7 11.5a4.48 4.48 0 0 0 3.182-1.318A4.5 4.5 0 0 0 11.387 8h1.53a6 6 0 0 1-1.179 2.678l3.292 3.292-1.06 1.06-3.292-3.292A6 6 0 1 1 6 1.084z"/><path fill="currentcolor" d="M14 3.25a.75.75 0 0 1-.493.705l-1.285.469a.5.5 0 0 0-.298.298l-.469 1.285a.75.75 0 0 1-1.41 0l-.469-1.285a.5.5 0 0 0-.298-.298l-1.285-.469a.75.75 0 0 1-.484-.589L7.5 3.25l.009-.116a.75.75 0 0 1 .484-.59l1.285-.468a.5.5 0 0 0 .298-.298l.469-1.285.049-.106A.75.75 0 0 1 10.749 0l.116.009a.75.75 0 0 1 .541.378l.05.106.468 1.285a.5.5 0 0 0 .298.298l1.285.469A.75.75 0 0 1 14 3.25"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M10 14.5h4.5v-3H10zm6 .13c0 .76-.62 1.38-1.37 1.38H9.88c-.76 0-1.37-.62-1.37-1.37v-3.25c0-.76.62-1.37 1.38-1.37h4.75c.76 0 1.38.62 1.38 1.38zM1 13v-2h1.5v2a.5.5 0 0 0 .5.5h4V15H3a2 2 0 0 1-2-2m12.5-8a.5.5 0 0 0-.5-.5h-3V3h3a2 2 0 0 1 2 2v3.5h-1.5zM7 6.78c-.74.32-1.72.5-2.75.5s-2-.18-2.75-.5v.43c0 .22.14.53.65.81.5.28 1.24.48 2.1.48s1.61-.19 2.1-.48c.5-.29.65-.59.65-.81zm0-2.72c-.74.32-1.72.5-2.75.5s-2-.18-2.75-.5v.93a.3.3 0 0 0 .06.08c.09.09.25.21.51.32.52.23 1.29.39 2.17.39s1.66-.16 2.17-.38c.26-.11.42-.23.51-.32A.3.3 0 0 0 7 4.99zM4.25 1.5c-.89 0-1.66.16-2.17.39a1.6 1.6 0 0 0-.51.32.4.4 0 0 0-.06.07c.01.02.03.04.06.07.09.09.25.21.51.32.52.23 1.29.39 2.17.39s1.66-.16 2.17-.38c.26-.11.42-.23.51-.32a.4.4 0 0 0 .06-.07.4.4 0 0 0-.06-.07 1.6 1.6 0 0 0-.51-.32c-.51-.24-1.28-.4-2.17-.4M8.5 7.21c0 .97-.64 1.68-1.4 2.12-.77.44-1.78.67-2.85.67s-2.08-.23-2.85-.67C.64 8.89 0 8.18 0 7.21V2.28c0-.46.22-.84.49-1.12s.62-.49.99-.65C2.22.18 3.21 0 4.25 0s2.03.18 2.78.51c.37.16.72.38.99.65.27.28.49.66.49 1.12z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M14.5 8a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0M16 8A6 6 0 1 1 4 8a6 6 0 0 1 12 0"/><path fill="currentcolor" d="M1.5 2v5.25h3.25v1.5H1.5V14H0V2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M12.5 7.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0m1.5 0a6 6 0 1 1-12 0 6 6 0 0 1 12 0"/><path fill="currentcolor" d="M14 13v1.5H2V13z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M7.25 10.645a2.7 2.7 0 0 1-.59-.246L5.53 11.53l-1.06-1.06L5.6 9.339a2.7 2.7 0 0 1-.245-.589h-.48a2.375 2.375 0 1 0 2.375 2.375zm1.634-3.529a1.25 1.25 0 1 0-1.768 1.768 1.25 1.25 0 0 0 1.768-1.768m-.134 4.009a2.375 2.375 0 1 0 2.375-2.375h-.48q-.087.305-.246.589l1.131 1.13-1.06 1.061-1.131-1.13a2.7 2.7 0 0 1-.589.245zm-1.5-6.25A2.375 2.375 0 1 0 4.875 7.25h.48a2.7 2.7 0 0 1 .245-.59L4.47 5.53l1.06-1.06L6.66 5.6q.284-.159.59-.246zm1.5.48q.305.087.589.245l1.13-1.13 1.061 1.06-1.13 1.13q.158.284.245.59h.48A2.375 2.375 0 1 0 8.75 4.875zm6.25-.48c0 1.283-.624 2.42-1.585 3.125A3.875 3.875 0 1 1 8 13.415 3.875 3.875 0 1 1 2.584 8 3.875 3.875 0 1 1 8 2.584a3.875 3.875 0 0 1 7 2.291"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M13 3.5a.5.5 0 0 0-.5-.5h-1v1.25a.75.75 0 0 1-.75.75h-5.5a.75.75 0 0 1-.75-.75V3h-1a.5.5 0 0 0-.5.5V14a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5zm-7 7V12H4.5v-1.5zm5.5 0V12h-4v-1.5zM6 7.5V9H4.5V7.5zm5.5 0V9h-4V7.5zm-5-6A.5.5 0 0 0 6 2v1.5h4V2a.5.5 0 0 0-.5-.5zm8 12.5a2 2 0 0 1-2 2h-9a2 2 0 0 1-2-2V3.5a2 2 0 0 1 2-2h1.065A2 2 0 0 1 6.5 0h3a2 2 0 0 1 1.935 1.5H12.5a2 2 0 0 1 2 2z"/></svg>
|