@atlaskit/icon-lab 4.11.0 → 4.12.1
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 +55 -0
- package/core/hand-clenched.d.ts +13 -0
- package/core/hand-clenched.js +28 -0
- package/core/shape-comment-left.d.ts +13 -0
- package/core/shape-comment-left.js +28 -0
- package/core/shape-comment-right.d.ts +13 -0
- package/core/shape-comment-right.js +28 -0
- package/core/shape-database.d.ts +13 -0
- package/core/shape-database.js +28 -0
- package/core/shape-delay.d.ts +13 -0
- package/core/shape-delay.js +28 -0
- package/core/shape-display.d.ts +13 -0
- package/core/shape-display.js +28 -0
- package/core/shape-document-symbol.d.ts +13 -0
- package/core/shape-document-symbol.js +28 -0
- package/core/shape-hard-disk.d.ts +13 -0
- package/core/shape-hard-disk.js +28 -0
- package/core/shape-internal-storage.d.ts +13 -0
- package/core/shape-internal-storage.js +28 -0
- package/core/shape-manual-input.d.ts +13 -0
- package/core/shape-manual-input.js +28 -0
- package/core/shape-manual-operation-symbol.d.ts +13 -0
- package/core/shape-manual-operation-symbol.js +28 -0
- package/core/shape-mindmap.d.ts +13 -0
- package/core/shape-mindmap.js +28 -0
- package/core/shape-multiple-documents.d.ts +13 -0
- package/core/shape-multiple-documents.js +28 -0
- package/core/shape-off-page.d.ts +13 -0
- package/core/shape-off-page.js +28 -0
- package/core/shape-predefined-process.d.ts +13 -0
- package/core/shape-predefined-process.js +28 -0
- package/core/shape-preparation-symbol.d.ts +13 -0
- package/core/shape-preparation-symbol.js +28 -0
- package/core/shape-start-end.d.ts +13 -0
- package/core/shape-start-end.js +28 -0
- package/core/shape-stored-data.d.ts +13 -0
- package/core/shape-stored-data.js +28 -0
- package/core/shape-summing-junction-cross.d.ts +13 -0
- package/core/shape-summing-junction-cross.js +28 -0
- package/core/shape-summing-junction-plus.d.ts +13 -0
- package/core/shape-summing-junction-plus.js +28 -0
- package/core/speedometer-up.js +2 -2
- package/dist/cjs/metadata-core.js +201 -1
- package/dist/es2019/metadata-core.js +201 -1
- package/dist/esm/metadata-core.js +201 -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/hand-clenched.svg +1 -0
- package/svgs/core/shape-comment-left.svg +1 -0
- package/svgs/core/shape-comment-right.svg +1 -0
- package/svgs/core/shape-database.svg +1 -0
- package/svgs/core/shape-delay.svg +1 -0
- package/svgs/core/shape-display.svg +1 -0
- package/svgs/core/shape-document-symbol.svg +1 -0
- package/svgs/core/shape-hard-disk.svg +1 -0
- package/svgs/core/shape-internal-storage.svg +1 -0
- package/svgs/core/shape-manual-input.svg +1 -0
- package/svgs/core/shape-manual-operation-symbol.svg +1 -0
- package/svgs/core/shape-mindmap.svg +1 -0
- package/svgs/core/shape-multiple-documents.svg +1 -0
- package/svgs/core/shape-off-page.svg +1 -0
- package/svgs/core/shape-predefined-process.svg +1 -0
- package/svgs/core/shape-preparation-symbol.svg +1 -0
- package/svgs/core/shape-start-end.svg +1 -0
- package/svgs/core/shape-stored-data.svg +1 -0
- package/svgs/core/shape-summing-junction-cross.svg +1 -0
- package/svgs/core/shape-summing-junction-plus.svg +1 -0
- package/svgs/core/speedometer-up.svg +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::1185c41f2a2c94a851874f96d49f16b3>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ShapeOffPageIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ShapeOffPageIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::c22e044b5a4ec9043753cee1538f6af2>>
|
|
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: "ShapeOffPage".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Creating a shape for off page 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 ShapeOffPageIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M13.5 3a.5.5 0 0 0-.5-.5H3a.5.5 0 0 0-.5.5v7.31a.5.5 0 0 0 .258.437l5 2.763.058.027a.5.5 0 0 0 .426-.027l5-2.763.057-.037a.5.5 0 0 0 .201-.4zm1.5 7.31a2 2 0 0 1-.916 1.68l-.117.07-5 2.762a2 2 0 0 1-1.82.059l-.114-.059-5-2.762A2 2 0 0 1 1 10.31V3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
ShapeOffPageIcon.displayName = 'ShapeOffPageIcon';
|
|
28
|
+
var _default = exports.default = ShapeOffPageIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::b9b4090290b186ea9bed1d0bbb2e8b88>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ShapePredefinedProcessIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ShapePredefinedProcessIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::4c3f731e3252b6df5cd69025bec91d0f>>
|
|
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: "ShapePredefinedProcess".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Creating a shape for predefined process 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 ShapePredefinedProcessIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 4a.5.5 0 0 0-.4-.49L14 3.5h-1v9h1a.5.5 0 0 0 .5-.5zm-10 8.5h7v-9h-7zm-3-.5a.5.5 0 0 0 .5.5h1v-9H2a.5.5 0 0 0-.5.5zM16 12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h12l.204.01A2 2 0 0 1 16 4z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
ShapePredefinedProcessIcon.displayName = 'ShapePredefinedProcessIcon';
|
|
28
|
+
var _default = exports.default = ShapePredefinedProcessIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::c94fc0edf9167d770e2f5ef30074d72b>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ShapePreparationSymbolIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ShapePreparationSymbolIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::3ce33b61d7e9b46d269824869480e5d6>>
|
|
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: "ShapePreparationSymbol".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Creating a shape for preparing 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 ShapePreparationSymbolIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M10.905 1a2 2 0 0 1 1.73.996l2.9 5 .064.118a2 2 0 0 1 0 1.772l-.064.118-2.9 5a2 2 0 0 1-1.73.996h-5.81a2 2 0 0 1-1.73-.996l-2.9-5a2 2 0 0 1 0-2.008l2.9-5 .07-.112A2 2 0 0 1 5.096 1zm-5.81 1.5a.5.5 0 0 0-.396.194l-.037.055-2.9 5a.5.5 0 0 0 0 .502l2.9 5a.5.5 0 0 0 .433.249h5.81a.5.5 0 0 0 .433-.249l2.9-5 .029-.06a.5.5 0 0 0 0-.382l-.03-.06-2.9-5a.5.5 0 0 0-.432-.249z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
ShapePreparationSymbolIcon.displayName = 'ShapePreparationSymbolIcon';
|
|
28
|
+
var _default = exports.default = ShapePreparationSymbolIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::c4d934963e068ae7563ae8e168d699ab>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ShapeStartEndIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ShapeStartEndIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::0e61f8d58faabb4aa5ea7b69d50d5419>>
|
|
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: "ShapeStartEnd".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Creating a shape for start end 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 ShapeStartEndIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 8a3.75 3.75 0 0 0-3.557-3.745l-.193-.005h-5.5a3.75 3.75 0 1 0 0 7.5h5.5A3.75 3.75 0 0 0 14.5 8M16 8c0 2.9-2.35 5.25-5.25 5.25h-5.5a5.25 5.25 0 1 1 0-10.5h5.5l.27.007A5.25 5.25 0 0 1 16 8"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
ShapeStartEndIcon.displayName = 'ShapeStartEndIcon';
|
|
28
|
+
var _default = exports.default = ShapeStartEndIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::b64d5017afedd77eb3967148c8bb64b4>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ShapeStoredDataIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ShapeStoredDataIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::762d5d4982bfe30c244ba748c8a774eb>>
|
|
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: "ShapeStoredData".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Creating a shape for stored data 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 ShapeStoredDataIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M12.832 13.5a6 6 0 0 1-.738-1.48c-.387-1.099-.606-2.48-.606-4.02 0-1.517.213-2.879.588-3.97a6.1 6.1 0 0 1 .757-1.53H3.835l-.082.01c-.094.022-.224.089-.388.256-.22.225-.453.59-.665 1.101C2.278 4.887 2 6.347 2 8c0 1.652.278 3.113.7 4.133.212.511.445.876.665 1.101.218.223.376.266.47.266zM3.835 15c-.62 0-1.141-.307-1.542-.717-.398-.407-.722-.958-.979-1.577C.801 11.464.5 9.8.5 8s.3-3.464.814-4.706c.257-.62.58-1.17.979-1.577.35-.359.794-.639 1.314-.703L3.835 1h10.249c.26 0 .51.105.693.291l.09.105c.185.25.22.548.17.79a1.05 1.05 0 0 1-.394.624l-.093.063-.128.089c-.304.244-.647.743-.927 1.557-.31.903-.507 2.096-.507 3.481 0 1.407.202 2.615.52 3.523.33.938.742 1.44 1.07 1.62l.089.055c.205.14.39.37.428.688a.97.97 0 0 1-.256.771l-.074.073-.091.075a1 1 0 0 1-.326.156 1.3 1.3 0 0 1-.327.039z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
ShapeStoredDataIcon.displayName = 'ShapeStoredDataIcon';
|
|
28
|
+
var _default = exports.default = ShapeStoredDataIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e932bfbee1e254da6d62a73193a1d549>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ShapeSummingJunctionCrossIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ShapeSummingJunctionCrossIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::29c1d71157a2a369df8464b8f2ccb1a0>>
|
|
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: "ShapeSummingJunctionCross".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Creating a shape for summing junction plus 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 ShapeSummingJunctionCrossIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 8a6.47 6.47 0 0 0-1.406-4.034L9.06 8l4.033 4.033A6.47 6.47 0 0 0 14.5 8M3.966 13.094A6.47 6.47 0 0 0 8 14.5a6.47 6.47 0 0 0 4.033-1.406L8 9.06zM8 1.5a6.47 6.47 0 0 0-4.034 1.405L8 6.94l4.033-4.034A6.47 6.47 0 0 0 8 1.5M1.5 8a6.47 6.47 0 0 0 1.405 4.033L6.94 8 2.905 3.966A6.47 6.47 0 0 0 1.5 8M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
ShapeSummingJunctionCrossIcon.displayName = 'ShapeSummingJunctionCrossIcon';
|
|
28
|
+
var _default = exports.default = ShapeSummingJunctionCrossIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::35e0764ce5cad397b81c1f5bb4dcd6b4>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const ShapeSummingJunctionPlusIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default ShapeSummingJunctionPlusIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::27b4f6684f5c4c4bc0b52a0a4b9d1402>>
|
|
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: "ShapeSummingJunctionPlus".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Creating a shape for summing junction plus 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 ShapeSummingJunctionPlusIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M1.544 8.75a6.5 6.5 0 0 0 5.706 5.705V8.75zm7.206 5.705a6.5 6.5 0 0 0 5.706-5.705H8.75zm0-7.205h5.706A6.5 6.5 0 0 0 8.75 1.544zm-1.5-5.706A6.5 6.5 0 0 0 1.544 7.25H7.25z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
ShapeSummingJunctionPlusIcon.displayName = 'ShapeSummingJunctionPlusIcon';
|
|
28
|
+
var _default = exports.default = ShapeSummingJunctionPlusIcon;
|
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::22d7526bb5b6d232a23996d0b4f5f20e>>
|
|
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"
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M5.25 3.11a6.5 6.5 0 0 0-1.732 10.597l-1.036 1.086A8.004 8.004 0 0 1 5.25 1.484zm5.5-1.626a8.004 8.004 0 0 1 2.768 13.309l-1.036-1.086A6.5 6.5 0 0 0 10.75 3.109zM8 1q.38 0 .75.035v6.08A2.501 2.501 0 0 1 8 12a2.5 2.5 0 0 1-.75-4.886V1.035Q7.62 1 8 1m0 7.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2"/>`
|
|
25
25
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
26
|
}, props));
|
|
27
27
|
SpeedometerUpIcon.displayName = 'SpeedometerUpIcon';
|
|
@@ -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::387613d0091d2d93fa0251f67bd4f50e>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -583,6 +583,16 @@ var metadata = {
|
|
|
583
583
|
team: 'Whiteboards',
|
|
584
584
|
status: 'published'
|
|
585
585
|
},
|
|
586
|
+
'hand-clenched': {
|
|
587
|
+
keywords: ['hand-clenched', 'handclenched', 'icon', 'icon-lab', 'core', 'whiteboards', 'grab'],
|
|
588
|
+
componentName: 'HandClenchedIcon',
|
|
589
|
+
package: '@atlaskit/icon-lab/core/hand-clenched',
|
|
590
|
+
type: 'core',
|
|
591
|
+
categorization: 'single-purpose',
|
|
592
|
+
usage: 'Grabbing elements in whiteboards',
|
|
593
|
+
team: 'Whiteboards',
|
|
594
|
+
status: 'ready-to-publish'
|
|
595
|
+
},
|
|
586
596
|
history: {
|
|
587
597
|
keywords: ['history', 'icon', 'icon-lab', 'core', 'version control', 'past', 'arrow', 'clock', 'time', 'history', 'recent'],
|
|
588
598
|
componentName: 'HistoryIcon',
|
|
@@ -1083,6 +1093,46 @@ var metadata = {
|
|
|
1083
1093
|
team: 'Whiteboards',
|
|
1084
1094
|
status: 'published'
|
|
1085
1095
|
},
|
|
1096
|
+
'shape-comment-left': {
|
|
1097
|
+
keywords: ['shape-comment-left', 'shapecommentleft', 'icon', 'icon-lab', 'core', 'curly', 'comments'],
|
|
1098
|
+
componentName: 'ShapeCommentLeftIcon',
|
|
1099
|
+
package: '@atlaskit/icon-lab/core/shape-comment-left',
|
|
1100
|
+
type: 'core',
|
|
1101
|
+
categorization: 'single-purpose',
|
|
1102
|
+
usage: 'Creating a shape for commenting (left)',
|
|
1103
|
+
team: 'Whiteboards',
|
|
1104
|
+
status: 'ready-to-publish'
|
|
1105
|
+
},
|
|
1106
|
+
'shape-comment-right': {
|
|
1107
|
+
keywords: ['shape-comment-right', 'shapecommentright', 'icon', 'icon-lab', 'core', 'curly', 'comments'],
|
|
1108
|
+
componentName: 'ShapeCommentRightIcon',
|
|
1109
|
+
package: '@atlaskit/icon-lab/core/shape-comment-right',
|
|
1110
|
+
type: 'core',
|
|
1111
|
+
categorization: 'single-purpose',
|
|
1112
|
+
usage: 'Creating a shape for commenting (right)',
|
|
1113
|
+
team: 'Whiteboards',
|
|
1114
|
+
status: 'ready-to-publish'
|
|
1115
|
+
},
|
|
1116
|
+
'shape-database': {
|
|
1117
|
+
keywords: ['shape-database', 'shapedatabase', 'icon', 'icon-lab', 'core', 'whiteboards', 'diagram'],
|
|
1118
|
+
componentName: 'ShapeDatabaseIcon',
|
|
1119
|
+
package: '@atlaskit/icon-lab/core/shape-database',
|
|
1120
|
+
type: 'core',
|
|
1121
|
+
categorization: 'single-purpose',
|
|
1122
|
+
usage: 'Creating a shape for databases in whiteboards',
|
|
1123
|
+
team: 'Whiteboards',
|
|
1124
|
+
status: 'ready-to-publish'
|
|
1125
|
+
},
|
|
1126
|
+
'shape-delay': {
|
|
1127
|
+
keywords: ['shape-delay', 'shapedelay', 'icon', 'icon-lab', 'core', 'whiteboards', 'diagram'],
|
|
1128
|
+
componentName: 'ShapeDelayIcon',
|
|
1129
|
+
package: '@atlaskit/icon-lab/core/shape-delay',
|
|
1130
|
+
type: 'core',
|
|
1131
|
+
categorization: 'single-purpose',
|
|
1132
|
+
usage: 'Creating a shape for a delay in Whiteboards.',
|
|
1133
|
+
team: 'Whiteboards',
|
|
1134
|
+
status: 'ready-to-publish'
|
|
1135
|
+
},
|
|
1086
1136
|
'shape-diamond': {
|
|
1087
1137
|
keywords: ['shape-diamond', 'shapediamond', 'icon', 'icon-lab', 'core', 'diamond', 'shape tool'],
|
|
1088
1138
|
componentName: 'ShapeDiamondIcon',
|
|
@@ -1093,6 +1143,26 @@ var metadata = {
|
|
|
1093
1143
|
team: 'Whiteboards',
|
|
1094
1144
|
status: 'published'
|
|
1095
1145
|
},
|
|
1146
|
+
'shape-display': {
|
|
1147
|
+
keywords: ['shape-display', 'shapedisplay', 'icon', 'icon-lab', 'core', 'Whiteboards', 'diagram'],
|
|
1148
|
+
componentName: 'ShapeDisplayIcon',
|
|
1149
|
+
package: '@atlaskit/icon-lab/core/shape-display',
|
|
1150
|
+
type: 'core',
|
|
1151
|
+
categorization: 'single-purpose',
|
|
1152
|
+
usage: 'Creating a shape for display in whiteboards',
|
|
1153
|
+
team: 'Whiteboards',
|
|
1154
|
+
status: 'ready-to-publish'
|
|
1155
|
+
},
|
|
1156
|
+
'shape-document-symbol': {
|
|
1157
|
+
keywords: ['shape-document-symbol', 'shapedocumentsymbol', 'icon', 'icon-lab', 'core', 'Whiteboards', 'diagram'],
|
|
1158
|
+
componentName: 'ShapeDocumentSymbolIcon',
|
|
1159
|
+
package: '@atlaskit/icon-lab/core/shape-document-symbol',
|
|
1160
|
+
type: 'core',
|
|
1161
|
+
categorization: 'single-purpose',
|
|
1162
|
+
usage: 'Creating a document shape in Whiteboards',
|
|
1163
|
+
team: 'Whiteboards',
|
|
1164
|
+
status: 'ready-to-publish'
|
|
1165
|
+
},
|
|
1096
1166
|
'shape-ellipse': {
|
|
1097
1167
|
keywords: ['shape-ellipse', 'shapeellipse', 'icon', 'icon-lab', 'core', 'ellipse', 'circle', 'shape tool'],
|
|
1098
1168
|
componentName: 'ShapeEllipseIcon',
|
|
@@ -1103,6 +1173,76 @@ var metadata = {
|
|
|
1103
1173
|
team: 'Whiteboards',
|
|
1104
1174
|
status: 'published'
|
|
1105
1175
|
},
|
|
1176
|
+
'shape-hard-disk': {
|
|
1177
|
+
keywords: ['shape-hard-disk', 'shapeharddisk', 'icon', 'icon-lab', 'core', 'Whiteboards', 'diagram'],
|
|
1178
|
+
componentName: 'ShapeHardDiskIcon',
|
|
1179
|
+
package: '@atlaskit/icon-lab/core/shape-hard-disk',
|
|
1180
|
+
type: 'core',
|
|
1181
|
+
categorization: 'single-purpose',
|
|
1182
|
+
usage: 'Creating a shape for a hard disk in Whiteboards',
|
|
1183
|
+
team: 'Whiteboards',
|
|
1184
|
+
status: 'ready-to-publish'
|
|
1185
|
+
},
|
|
1186
|
+
'shape-internal-storage': {
|
|
1187
|
+
keywords: ['shape-internal-storage', 'shapeinternalstorage', 'icon', 'icon-lab', 'core', 'Whiteboards', 'diagram'],
|
|
1188
|
+
componentName: 'ShapeInternalStorageIcon',
|
|
1189
|
+
package: '@atlaskit/icon-lab/core/shape-internal-storage',
|
|
1190
|
+
type: 'core',
|
|
1191
|
+
categorization: 'single-purpose',
|
|
1192
|
+
usage: 'Creating a shape for internal storage in Whiteboards',
|
|
1193
|
+
team: 'Whiteboards',
|
|
1194
|
+
status: 'ready-to-publish'
|
|
1195
|
+
},
|
|
1196
|
+
'shape-manual-input': {
|
|
1197
|
+
keywords: ['shape-manual-input', 'shapemanualinput', 'icon', 'icon-lab', 'core', 'diagram', 'whiteboards'],
|
|
1198
|
+
componentName: 'ShapeManualInputIcon',
|
|
1199
|
+
package: '@atlaskit/icon-lab/core/shape-manual-input',
|
|
1200
|
+
type: 'core',
|
|
1201
|
+
categorization: 'single-purpose',
|
|
1202
|
+
usage: 'Creating a shape for manual input in whiteboards',
|
|
1203
|
+
team: 'Whiteboards',
|
|
1204
|
+
status: 'ready-to-publish'
|
|
1205
|
+
},
|
|
1206
|
+
'shape-manual-operation-symbol': {
|
|
1207
|
+
keywords: ['shape-manual-operation-symbol', 'shapemanualoperationsymbol', 'icon', 'icon-lab', 'core', 'whiteboards', 'diagram'],
|
|
1208
|
+
componentName: 'ShapeManualOperationSymbolIcon',
|
|
1209
|
+
package: '@atlaskit/icon-lab/core/shape-manual-operation-symbol',
|
|
1210
|
+
type: 'core',
|
|
1211
|
+
categorization: 'single-purpose',
|
|
1212
|
+
usage: 'Creating a shape for manual operation in Whiteboards',
|
|
1213
|
+
team: 'Whiteboards',
|
|
1214
|
+
status: 'ready-to-publish'
|
|
1215
|
+
},
|
|
1216
|
+
'shape-mindmap': {
|
|
1217
|
+
keywords: ['shape-mindmap', 'shapemindmap', 'icon', 'icon-lab', 'core', 'Whiteboards', 'diagram', 'mind', 'map'],
|
|
1218
|
+
componentName: 'ShapeMindmapIcon',
|
|
1219
|
+
package: '@atlaskit/icon-lab/core/shape-mindmap',
|
|
1220
|
+
type: 'core',
|
|
1221
|
+
categorization: 'single-purpose',
|
|
1222
|
+
usage: 'Creating a mind map shape in Whiteboards',
|
|
1223
|
+
team: 'Whiteboards',
|
|
1224
|
+
status: 'ready-to-publish'
|
|
1225
|
+
},
|
|
1226
|
+
'shape-multiple-documents': {
|
|
1227
|
+
keywords: ['shape-multiple-documents', 'shapemultipledocuments', 'icon', 'icon-lab', 'core', 'Whiteboards', 'diagram', 'documents'],
|
|
1228
|
+
componentName: 'ShapeMultipleDocumentsIcon',
|
|
1229
|
+
package: '@atlaskit/icon-lab/core/shape-multiple-documents',
|
|
1230
|
+
type: 'core',
|
|
1231
|
+
categorization: 'single-purpose',
|
|
1232
|
+
usage: 'Creating a shape for multiple documents in whiteboards',
|
|
1233
|
+
team: 'Whiteboards',
|
|
1234
|
+
status: 'ready-to-publish'
|
|
1235
|
+
},
|
|
1236
|
+
'shape-off-page': {
|
|
1237
|
+
keywords: ['shape-off-page', 'shapeoffpage', 'icon', 'icon-lab', 'core', 'off-page', 'diagram'],
|
|
1238
|
+
componentName: 'ShapeOffPageIcon',
|
|
1239
|
+
package: '@atlaskit/icon-lab/core/shape-off-page',
|
|
1240
|
+
type: 'core',
|
|
1241
|
+
categorization: 'single-purpose',
|
|
1242
|
+
usage: 'Creating a shape for off page in Whiteboards',
|
|
1243
|
+
team: 'Whiteboards',
|
|
1244
|
+
status: 'ready-to-publish'
|
|
1245
|
+
},
|
|
1106
1246
|
'shape-parallelogram-skew-left': {
|
|
1107
1247
|
keywords: ['shape-parallelogram-skew-left', 'shapeparallelogramskewleft', 'icon', 'icon-lab', 'core', 'parallelogram', 'skewed', 'left', 'shape tool'],
|
|
1108
1248
|
componentName: 'ShapeParallelogramSkewLeftIcon',
|
|
@@ -1123,6 +1263,26 @@ var metadata = {
|
|
|
1123
1263
|
team: 'Whiteboards',
|
|
1124
1264
|
status: 'published'
|
|
1125
1265
|
},
|
|
1266
|
+
'shape-predefined-process': {
|
|
1267
|
+
keywords: ['shape-predefined-process', 'shapepredefinedprocess', 'icon', 'icon-lab', 'core', 'diagram', 'whiteboards'],
|
|
1268
|
+
componentName: 'ShapePredefinedProcessIcon',
|
|
1269
|
+
package: '@atlaskit/icon-lab/core/shape-predefined-process',
|
|
1270
|
+
type: 'core',
|
|
1271
|
+
categorization: 'single-purpose',
|
|
1272
|
+
usage: 'Creating a shape for predefined process in whiteboards',
|
|
1273
|
+
team: 'Whiteboards',
|
|
1274
|
+
status: 'ready-to-publish'
|
|
1275
|
+
},
|
|
1276
|
+
'shape-preparation-symbol': {
|
|
1277
|
+
keywords: ['shape-preparation-symbol', 'shapepreparationsymbol', 'icon', 'icon-lab', 'core', 'diagram'],
|
|
1278
|
+
componentName: 'ShapePreparationSymbolIcon',
|
|
1279
|
+
package: '@atlaskit/icon-lab/core/shape-preparation-symbol',
|
|
1280
|
+
type: 'core',
|
|
1281
|
+
categorization: 'single-purpose',
|
|
1282
|
+
usage: 'Creating a shape for preparing in whiteboards',
|
|
1283
|
+
team: 'Whiteboards',
|
|
1284
|
+
status: 'ready-to-publish'
|
|
1285
|
+
},
|
|
1126
1286
|
'shape-rectangle': {
|
|
1127
1287
|
keywords: ['shape-rectangle', 'shaperectangle', 'icon', 'icon-lab', 'core', 'shape tool', 'rectangle', 'square'],
|
|
1128
1288
|
componentName: 'ShapeRectangleIcon',
|
|
@@ -1143,6 +1303,46 @@ var metadata = {
|
|
|
1143
1303
|
team: 'Whiteboards',
|
|
1144
1304
|
status: 'published'
|
|
1145
1305
|
},
|
|
1306
|
+
'shape-start-end': {
|
|
1307
|
+
keywords: ['shape-start-end', 'shapestartend', 'icon', 'icon-lab', 'core', 'whiteboards', 'diagram'],
|
|
1308
|
+
componentName: 'ShapeStartEndIcon',
|
|
1309
|
+
package: '@atlaskit/icon-lab/core/shape-start-end',
|
|
1310
|
+
type: 'core',
|
|
1311
|
+
categorization: 'single-purpose',
|
|
1312
|
+
usage: 'Creating a shape for start end in Whiteboards',
|
|
1313
|
+
team: 'Whiteboards',
|
|
1314
|
+
status: 'ready-to-publish'
|
|
1315
|
+
},
|
|
1316
|
+
'shape-stored-data': {
|
|
1317
|
+
keywords: ['shape-stored-data', 'shapestoreddata', 'icon', 'icon-lab', 'core', 'whiteboards', 'diagram'],
|
|
1318
|
+
componentName: 'ShapeStoredDataIcon',
|
|
1319
|
+
package: '@atlaskit/icon-lab/core/shape-stored-data',
|
|
1320
|
+
type: 'core',
|
|
1321
|
+
categorization: 'single-purpose',
|
|
1322
|
+
usage: 'Creating a shape for stored data in whiteboards',
|
|
1323
|
+
team: 'Whiteboards',
|
|
1324
|
+
status: 'ready-to-publish'
|
|
1325
|
+
},
|
|
1326
|
+
'shape-summing-junction-cross': {
|
|
1327
|
+
keywords: ['shape-summing-junction-cross', 'shapesummingjunctioncross', 'icon', 'icon-lab', 'core', 'whiteboards', 'diagram'],
|
|
1328
|
+
componentName: 'ShapeSummingJunctionCrossIcon',
|
|
1329
|
+
package: '@atlaskit/icon-lab/core/shape-summing-junction-cross',
|
|
1330
|
+
type: 'core',
|
|
1331
|
+
categorization: 'single-purpose',
|
|
1332
|
+
usage: 'Creating a shape for summing junction plus in whiteboards',
|
|
1333
|
+
team: 'Whiteboards',
|
|
1334
|
+
status: 'ready-to-publish'
|
|
1335
|
+
},
|
|
1336
|
+
'shape-summing-junction-plus': {
|
|
1337
|
+
keywords: ['shape-summing-junction-plus', 'shapesummingjunctionplus', 'icon', 'icon-lab', 'core', 'diagram', 'whiteboards'],
|
|
1338
|
+
componentName: 'ShapeSummingJunctionPlusIcon',
|
|
1339
|
+
package: '@atlaskit/icon-lab/core/shape-summing-junction-plus',
|
|
1340
|
+
type: 'core',
|
|
1341
|
+
categorization: 'single-purpose',
|
|
1342
|
+
usage: 'Creating a shape for summing junction plus in whiteboards',
|
|
1343
|
+
team: 'Whiteboards',
|
|
1344
|
+
status: 'ready-to-publish'
|
|
1345
|
+
},
|
|
1146
1346
|
'shape-triangle': {
|
|
1147
1347
|
keywords: ['shape-triangle', 'shapetriangle', 'icon', 'icon-lab', 'core', 'triangle', 'shape tool', 'equilateral'],
|
|
1148
1348
|
componentName: 'ShapeTriangleIcon',
|