@atlaskit/icon-lab 4.9.0 → 4.11.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 +42 -0
- package/core/ai-generative-cleanup.d.ts +13 -0
- package/core/ai-generative-cleanup.js +28 -0
- package/core/atom.d.ts +13 -0
- package/core/atom.js +27 -0
- package/core/bluetooth.d.ts +13 -0
- package/core/bluetooth.js +28 -0
- package/core/compass-hinged.d.ts +13 -0
- package/core/compass-hinged.js +27 -0
- package/core/draw.d.ts +13 -0
- package/core/draw.js +28 -0
- package/core/eyedropper.d.ts +13 -0
- package/core/eyedropper.js +28 -0
- package/core/hourglass.d.ts +13 -0
- package/core/hourglass.js +28 -0
- package/core/initiative.js +2 -2
- package/core/kanban.d.ts +13 -0
- package/core/kanban.js +28 -0
- package/core/save.d.ts +13 -0
- package/core/save.js +28 -0
- package/core/text-letter-case.d.ts +13 -0
- package/core/text-letter-case.js +28 -0
- package/core/text-subscript.d.ts +13 -0
- package/core/text-subscript.js +28 -0
- package/core/text-superscript.d.ts +13 -0
- package/core/text-superscript.js +28 -0
- package/dist/cjs/metadata-core.js +134 -4
- package/dist/es2019/metadata-core.js +134 -4
- package/dist/esm/metadata-core.js +134 -4
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/package.json +6 -6
- package/svgs/core/ai-generative-cleanup.svg +1 -0
- package/svgs/core/atom.svg +1 -0
- package/svgs/core/bluetooth.svg +1 -0
- package/svgs/core/compass-hinged.svg +1 -0
- package/svgs/core/draw.svg +1 -0
- package/svgs/core/eyedropper.svg +1 -0
- package/svgs/core/hourglass.svg +1 -0
- package/svgs/core/kanban.svg +1 -0
- package/svgs/core/save.svg +1 -0
- package/svgs/core/text-letter-case.svg +1 -0
- package/svgs/core/text-subscript.svg +1 -0
- package/svgs/core/text-superscript.svg +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# @atlaskit/icon-lab
|
|
2
2
|
|
|
3
|
+
## 4.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#150689](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/150689)
|
|
8
|
+
[`35118f49ae5c3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/35118f49ae5c3) -
|
|
9
|
+
This release adds icons in `@atlaskit/icon-lab`.
|
|
10
|
+
|
|
11
|
+
### Added:
|
|
12
|
+
|
|
13
|
+
**`@atlaskit/icon-lab/core`**
|
|
14
|
+
|
|
15
|
+
- `hourglass`
|
|
16
|
+
- `text-subscript`
|
|
17
|
+
- `text-superscript`
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
|
|
23
|
+
## 4.10.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- [#148003](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/148003)
|
|
28
|
+
[`5e3708b3c4c7f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5e3708b3c4c7f) -
|
|
29
|
+
This release adds icons in `@atlaskit/icon-lab`.
|
|
30
|
+
|
|
31
|
+
### Added:
|
|
32
|
+
|
|
33
|
+
**`@atlaskit/icon-lab/core`**
|
|
34
|
+
|
|
35
|
+
- `ai-generative-cleanup`
|
|
36
|
+
- `atom`
|
|
37
|
+
- `bluetooth`
|
|
38
|
+
- `compass-hinged`
|
|
39
|
+
- `draw`
|
|
40
|
+
- `eyedropper`
|
|
41
|
+
- `kanban`
|
|
42
|
+
- `save`
|
|
43
|
+
- `text-letter-case`
|
|
44
|
+
|
|
3
45
|
## 4.9.0
|
|
4
46
|
|
|
5
47
|
### 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::35f45db6e0e6b4881900f833cd37e2ec>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const AiGenerativeCleanupIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default AiGenerativeCleanupIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::b3045c8311340ccfec4f05affa6631fd>>
|
|
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: "AiGenerativeCleanup".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for automated cleanup and tidy functionality
|
|
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 AiGenerativeCleanupIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M14.23.44 12.22 8h1.58a2 2 0 0 1 1.91 2.59l-1.23 4a2 2 0 0 1-1.9 1.41H4.75a.75.75 0 0 1-.28-1.45h-.01l.02-.01q.03-.01.1-.06c.09-.06.23-.16.39-.32.31-.32.71-.88.93-1.84l.03-.09L7 9.3A2 2 0 0 1 8.87 8h1.8L12.78.06zM8.87 9.5a.5.5 0 0 0-.47.33l-1.06 2.89a5.7 5.7 0 0 1-.73 1.78h5.97a.5.5 0 0 0 .48-.35l1.23-4a.5.5 0 0 0-.48-.65zM4.62 1.01a.75.75 0 0 1 .54.38l.05.11.54 1.47.05.1a.5.5 0 0 0 .25.2l1.47.54.11.05a.75.75 0 0 1 0 1.31l-.11.05-1.47.54a.5.5 0 0 0-.3.3l-.54 1.47a.75.75 0 0 1-1.36.11l-.05-.1-.54-1.47a.5.5 0 0 0-.2-.25l-.1-.05-1.47-.53a.75.75 0 0 1-.48-.59L1 4.5l.01-.12a.75.75 0 0 1 .48-.59l1.47-.54.1-.05a.5.5 0 0 0 .2-.25l.54-1.47.05-.11A.75.75 0 0 1 4.5 1z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
AiGenerativeCleanupIcon.displayName = 'AiGenerativeCleanupIcon';
|
|
28
|
+
var _default = exports.default = AiGenerativeCleanupIcon;
|
package/core/atom.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::e2977ca58ffcf5bbd4c27a38ce3b20a9>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const AtomIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default AtomIcon;
|
package/core/atom.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::eb7d689351fa239e9bf63bbf0f343cfd>>
|
|
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: "Atom".
|
|
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 AtomIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
23
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M9.87 1.42c1.566-.567 3.258-.667 4.318.393 1.059 1.059.959 2.75.392 4.317A11 11 0 0 1 13.683 8c.376.635.678 1.265.897 1.87.567 1.566.667 3.258-.393 4.318-1.059 1.059-2.75.959-4.317.392A11 11 0 0 1 8 13.683a11 11 0 0 1-1.87.897c-1.566.567-3.258.667-4.317-.393-1.06-1.059-.96-2.75-.393-4.317.219-.605.52-1.235.896-1.87a11 11 0 0 1-.896-1.87c-.567-1.566-.667-3.258.393-4.317C2.872.753 4.563.853 6.13 1.42c.605.219 1.235.52 1.87.896a11 11 0 0 1 1.87-.896M3.26 9.397a9 9 0 0 0-.43.983c-.521 1.44-.362 2.342.043 2.747s1.306.564 2.747.043q.476-.173.983-.43a17 17 0 0 1-1.785-1.558A17 17 0 0 1 3.26 9.397m9.48 0a17.4 17.4 0 0 1-3.343 3.342q.507.259.983.43c1.44.522 2.342.363 2.747-.042s.564-1.306.043-2.747a9 9 0 0 0-.43-.983M8 4.099a15.5 15.5 0 0 0-2.121 1.78A15.5 15.5 0 0 0 4.099 8a15.4 15.4 0 0 0 1.78 2.121A15.5 15.5 0 0 0 8 11.901a15.5 15.5 0 0 0 2.121-1.78A15.5 15.5 0 0 0 11.901 8a15.5 15.5 0 0 0-1.78-2.121A15.5 15.5 0 0 0 8 4.099M5.62 2.83c-1.44-.521-2.342-.362-2.747.043S2.31 4.18 2.83 5.62q.173.475.43.983a17 17 0 0 1 1.558-1.785A17 17 0 0 1 6.603 3.26a9 9 0 0 0-.983-.43m7.507.043c-.405-.405-1.306-.564-2.747-.043a9 9 0 0 0-.983.43c.607.46 1.207.981 1.785 1.558a17 17 0 0 1 1.557 1.785q.258-.507.431-.983c.521-1.44.362-2.342-.043-2.747"/><path fill="currentcolor" d="M9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0"/>`
|
|
24
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
25
|
+
}, props));
|
|
26
|
+
AtomIcon.displayName = 'AtomIcon';
|
|
27
|
+
var _default = exports.default = AtomIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::6aa906018bfa7951d3dda93c95d4dac6>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const BluetoothIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default BluetoothIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::eed7a0647745a0872e95ee08fa696d6a>>
|
|
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: "Bluetooth".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for Bluetooth
|
|
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 BluetoothIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M7.69.317a.75.75 0 0 1 .804.119l4 3.5a.75.75 0 0 1 0 1.128L9.139 8l3.355 2.936a.75.75 0 0 1 0 1.128l-4 3.5A.75.75 0 0 1 7.25 15V9.653l-2.756 2.411-.988-1.128L6.861 8 3.506 5.064l.988-1.128L7.25 6.347V1a.75.75 0 0 1 .44-.683m1.06 9.336 2.111 1.847-2.111 1.847zm0-3.306V2.653L10.861 4.5z" clip-rule="evenodd"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
BluetoothIcon.displayName = 'BluetoothIcon';
|
|
28
|
+
var _default = exports.default = BluetoothIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::def6da2d83d80ec3fc763d9b1df7b60c>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const CompassHingedIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default CompassHingedIcon;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::32908a99819e910135f53b0d0f549a31>>
|
|
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: "CompassHinged".
|
|
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 CompassHingedIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
23
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M9.25 4.25a1.25 1.25 0 1 0-1.799 1.124l.128.054a1.25 1.25 0 0 0 .97-.054l.15-.087A1.25 1.25 0 0 0 9.25 4.25m-.763 2.706a2.8 2.8 0 0 1-.974 0L6.173 9.7a5.72 5.72 0 0 0 3.653 0zM10.75 4.25c0 .814-.355 1.545-.916 2.048l1.341 2.744a5.77 5.77 0 0 0 2.037-2.36l1.359.635a7.3 7.3 0 0 1-2.733 3.083l2.086 4.27-1.348.66-2.085-4.27A7.2 7.2 0 0 1 8 11.5a7.2 7.2 0 0 1-2.492-.44l-2.085 4.27-1.348-.66L4.16 10.4a7.3 7.3 0 0 1-2.73-3.083l1.36-.634a5.77 5.77 0 0 0 2.035 2.36l1.34-2.745A2.75 2.75 0 0 1 7.25 1.606V0h1.5v1.606a2.75 2.75 0 0 1 2 2.644"/>`
|
|
24
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
25
|
+
}, props));
|
|
26
|
+
CompassHingedIcon.displayName = 'CompassHingedIcon';
|
|
27
|
+
var _default = exports.default = CompassHingedIcon;
|
package/core/draw.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::0ca3eef1962f845ebdf7d77dbda31a79>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const DrawIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default DrawIcon;
|
package/core/draw.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::e069b795a512005e254ea3fadbdb31ee>>
|
|
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: "Draw".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: For drawing and annotation
|
|
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 DrawIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M11.836.854a2 2 0 0 1 2.828 0l.482.482a2 2 0 0 1 0 2.828l-2.148 2.148c.588 1.027.988 2.15 1.1 3.23.13 1.266-.133 2.554-1.068 3.488-1.018 1.02-2.299 1.025-3.367.606-1.038-.408-1.965-1.237-2.537-2.095l1.248-.832c.428.643 1.126 1.251 1.838 1.53.682.268 1.276.212 1.758-.27.515-.515.737-1.294.636-2.273-.075-.723-.324-1.51-.714-2.277l-1.724 1.723c-.197.198-.45.33-.726.38l-2.558.466a.75.75 0 0 1-.872-.872l.465-2.558c.05-.275.183-.529.38-.726l1.766-1.765c-1.535-.756-3.354-.92-4.768.26-1.04.867-1.497 2.919-.725 5.129.747 2.138 2.615 4.253 5.924 5.066l-.358 1.456c-3.816-.937-6.073-3.426-6.982-6.027-.884-2.53-.528-5.353 1.18-6.777 2.215-1.845 4.938-1.29 6.837-.215zm1.768 1.06a.5.5 0 0 0-.708 0l-4.95 4.95-.264 1.454 1.453-.264 4.95-4.95a.5.5 0 0 0 0-.707z" clip-rule="evenodd"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
DrawIcon.displayName = 'DrawIcon';
|
|
28
|
+
var _default = exports.default = DrawIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::660eaab9d416b8f5dfe43d751b3fc637>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const EyedropperIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default EyedropperIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::73726d1546f4839df334733245d697b4>>
|
|
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: "Eyedropper".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Sampling a color with a color picker
|
|
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 EyedropperIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M10.345 1.845a2.694 2.694 0 1 1 3.81 3.81l-2.47 2.47L13.03 9.47l-1.06 1.06-1.345-1.344-5.173 5.173A2.2 2.2 0 0 1 3.904 15H1.75a.75.75 0 0 1-.75-.75v-2.154c0-.58.23-1.137.641-1.548l5.173-5.173L5.47 4.03l1.06-1.06 1.345 1.344zm-2.47 4.59L2.702 11.61a.7.7 0 0 0-.202.487V13.5h1.404a.7.7 0 0 0 .487-.202l5.173-5.173zm2.75.63-1.69-1.69 2.47-2.47a1.195 1.195 0 0 1 1.69 1.69z" clip-rule="evenodd"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
EyedropperIcon.displayName = 'EyedropperIcon';
|
|
28
|
+
var _default = exports.default = EyedropperIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::dd356973c0a6e0d86fbc907180651681>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const HourglassIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default HourglassIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::96f63434171345c25a44154375eb8b31>>
|
|
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: "Hourglass".
|
|
17
|
+
* Category: multi-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Aging or expiring items
|
|
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 HourglassIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M11 12.392c0-.445-.169-.87-.468-1.192l-.136-.13L8 8.99l-2.396 2.08A1.75 1.75 0 0 0 5 12.392V13.5h6zM11 2.5H5v1.108c0 .508.22.99.604 1.323L8 7.008l2.396-2.077.136-.131c.3-.322.468-.747.468-1.192zm1.5 1.108a3.25 3.25 0 0 1-.991 2.337l-.13.12L9.145 8l2.234 1.936.13.119a3.25 3.25 0 0 1 .991 2.337V13.5H14V15H2v-1.5h1.5v-1.108a3.25 3.25 0 0 1 1.121-2.456L6.854 8 4.621 6.064A3.25 3.25 0 0 1 3.5 3.608V2.5H2V1h12v1.5h-1.5z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
HourglassIcon.displayName = 'HourglassIcon';
|
|
28
|
+
var _default = exports.default = HourglassIcon;
|
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::1c3fe5726d41070bfdd7410791a05e21>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -16,7 +16,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
16
16
|
* Icon: "Initiative".
|
|
17
17
|
* Category: single-purpose
|
|
18
18
|
* Location: @atlaskit/icon-lab
|
|
19
|
-
* Usage guidance:
|
|
19
|
+
* Usage guidance: Reserved for initiative work type.
|
|
20
20
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
21
21
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
22
22
|
*/
|
package/core/kanban.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::373f2f250401628b19c6f175d7ae2bc0>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const KanbanIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default KanbanIcon;
|
package/core/kanban.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::346d085877a4dcdec1f391305dc4689a>>
|
|
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: "Kanban".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Kanban board
|
|
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 KanbanIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M13.25 13.5h1.25v-11h-1.25zm-11.75-2h1.25v-9H1.5zm5.75-2h1.5v-7h-1.5zm-3 2.125c0 .76-.616 1.375-1.375 1.375h-1.5C.615 13 0 12.384 0 11.625v-9.25C0 1.615.616 1 1.375 1h1.5c.76 0 1.375.616 1.375 1.375zm6-2c0 .76-.616 1.375-1.375 1.375h-1.75c-.76 0-1.375-.616-1.375-1.375v-7.25C5.75 1.615 6.366 1 7.125 1h1.75c.76 0 1.375.616 1.375 1.375zm5.75 4c0 .76-.616 1.375-1.375 1.375h-1.5c-.76 0-1.375-.616-1.375-1.375V2.375c0-.76.616-1.375 1.375-1.375h1.5C15.385 1 16 1.616 16 2.375z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
KanbanIcon.displayName = 'KanbanIcon';
|
|
28
|
+
var _default = exports.default = KanbanIcon;
|
package/core/save.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::fa3870495bc1bfb0fe2475002b1a76a0>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const SaveIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default SaveIcon;
|
package/core/save.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::550880524c74079e72b90991317c8599>>
|
|
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: "Save".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for saving
|
|
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 SaveIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M3 2.5a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V4.018a.5.5 0 0 0-.146-.354l-1.018-1.018A.5.5 0 0 0 12 2.5v3.75a.75.75 0 0 1-.75.75h-6.5A.75.75 0 0 1 4 6.25V2.5zm2.5 0v3h5v-3zM1 3a2 2 0 0 1 2-2h8.982a2 2 0 0 1 1.414.586l1.018 1.018A2 2 0 0 1 15 4.018V13a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2z" clip-rule="evenodd"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
SaveIcon.displayName = 'SaveIcon';
|
|
28
|
+
var _default = exports.default = SaveIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e451074937391de300df9f2e5ac7a107>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const TextLetterCaseIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default TextLetterCaseIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::cc3ba3c2cb72e0e35b0f4f0eec3c6e84>>
|
|
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: "TextLetterCase".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for letter casing and text-transform
|
|
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 TextLetterCaseIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" fill-rule="evenodd" d="M16 13h-1.5v-.38a3.1 3.1 0 0 1-1.87.63c-1.95 0-3.37-1.78-3.37-3.75s1.42-3.75 3.38-3.75c.71 0 1.35.24 1.88.63v-.63H16zm-3.37-5.75c-.94 0-1.87.91-1.87 2.25s.93 2.25 1.88 2.25 1.86-.91 1.86-2.25-.93-2.25-1.87-2.25M5.71 3.51 8.92 13H7.33l-.84-2.5H2.51L1.67 13H.09l3.2-9.49.17-.51h2.08zM3.02 9h2.96L4.5 4.61z" clip-rule="evenodd"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
TextLetterCaseIcon.displayName = 'TextLetterCaseIcon';
|
|
28
|
+
var _default = exports.default = TextLetterCaseIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::baddc15d96a09845d76845440dc2892e>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const TextSubscriptIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default TextSubscriptIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::2656d88182cabb2065bd8ae65f805937>>
|
|
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: "TextSubscript".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for subscript text formatting.
|
|
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 TextSubscriptIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="m6.26 8 3.69 6H8.19L5.4 9.47 2.78 14H1.05l3.46-6-3.46-6h1.73L5.4 6.53 8.19 2h1.76zm7.49.5h.08a.75.75 0 0 1 .67.75V16H13v-6h-1V8.5z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
TextSubscriptIcon.displayName = 'TextSubscriptIcon';
|
|
28
|
+
var _default = exports.default = TextSubscriptIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::86eedca76c99cd5c255619656c17fedb>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const TextSuperscriptIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default TextSuperscriptIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::059ada903aa61b313e50067987565d33>>
|
|
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: "TextSuperscript".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon-lab
|
|
19
|
+
* Usage guidance: Reserved for superscript text formatting.
|
|
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 TextSuperscriptIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="m6.26 8 3.69 6H8.19L5.4 9.47 2.78 14H1.05l3.46-6-3.46-6h1.73L5.4 6.53 8.19 2h1.76zm7.49-8h.08a.75.75 0 0 1 .67.75V7.5H13v-6h-1V0z"/>`
|
|
25
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
26
|
+
}, props));
|
|
27
|
+
TextSuperscriptIcon.displayName = 'TextSuperscriptIcon';
|
|
28
|
+
var _default = exports.default = TextSuperscriptIcon;
|