@atlaskit/icon-lab 1.2.0 → 2.1.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 +34 -0
- package/build/index.tsx +8 -8
- package/core/assets-data-manager.d.ts +3 -5
- package/core/assets-data-manager.js +3 -3
- package/core/assets-schema.d.ts +3 -5
- package/core/assets-schema.js +3 -3
- package/core/book-open.d.ts +3 -5
- package/core/book-open.js +3 -3
- package/core/coins.d.ts +3 -5
- package/core/coins.js +3 -3
- package/core/cross-octagon.d.ts +3 -5
- package/core/cross-octagon.js +3 -3
- package/core/editions.d.ts +3 -5
- package/core/editions.js +3 -3
- package/core/field-text.d.ts +3 -5
- package/core/field-text.js +3 -3
- package/core/initiative.d.ts +3 -5
- package/core/initiative.js +4 -4
- package/core/lozenge.d.ts +3 -5
- package/core/lozenge.js +3 -3
- package/core/paint-brush.d.ts +3 -5
- package/core/paint-brush.js +3 -3
- package/core/paint-roller.d.ts +3 -5
- package/core/paint-roller.js +3 -3
- package/core/qr-code.d.ts +3 -5
- package/core/qr-code.js +4 -4
- package/core/roadmaps-plan.d.ts +3 -5
- package/core/roadmaps-plan.js +3 -3
- package/core/roadmaps-service.d.ts +3 -5
- package/core/roadmaps-service.js +3 -3
- package/core/speedometer.d.ts +3 -5
- package/core/speedometer.js +3 -3
- package/core/takeout-container.d.ts +3 -5
- package/core/takeout-container.js +3 -3
- package/core/ticket.d.ts +3 -5
- package/core/ticket.js +3 -3
- package/core/vehicle-train.d.ts +3 -5
- package/core/vehicle-train.js +3 -3
- package/core/vulnerability.d.ts +3 -5
- package/core/vulnerability.js +3 -3
- package/core/wallet.d.ts +3 -5
- package/core/wallet.js +3 -3
- package/core/wrench.d.ts +3 -5
- package/core/wrench.js +3 -3
- package/dist/cjs/deprecated-core.js +2 -2
- package/dist/cjs/metadata-core.js +2 -2
- package/dist/es2019/deprecated-core.js +2 -2
- package/dist/es2019/metadata-core.js +2 -2
- package/dist/esm/deprecated-core.js +2 -2
- package/dist/esm/metadata-core.js +2 -2
- package/dist/types/deprecated-core.d.ts +2 -2
- package/dist/types/metadata-core.d.ts +2 -2
- package/dist/types/migration-map.d.ts +2 -2
- package/dist/types-ts4.5/deprecated-core.d.ts +2 -2
- package/dist/types-ts4.5/metadata-core.d.ts +2 -2
- package/dist/types-ts4.5/migration-map.d.ts +2 -2
- package/{UNSAFE_migration-map → migration-map}/package.json +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @atlaskit/icon-lab
|
|
2
2
|
|
|
3
|
+
## 2.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#100878](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100878)
|
|
8
|
+
[`46c4545aa5d77`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/46c4545aa5d77) -
|
|
9
|
+
This release updates icons in `@atlaskit/icon-lab`.
|
|
10
|
+
|
|
11
|
+
**`@atlaskit/icon-lab/core`**
|
|
12
|
+
|
|
13
|
+
- 'initiative'
|
|
14
|
+
- 'qr-code'
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
20
|
+
## 2.0.0
|
|
21
|
+
|
|
22
|
+
### Major Changes
|
|
23
|
+
|
|
24
|
+
- [#171994](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/171994)
|
|
25
|
+
[`be58e4bb2e387`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/be58e4bb2e387) -
|
|
26
|
+
This release renames the UNSAFE migration map entrypoint. Also includes re-building the icons due
|
|
27
|
+
to UNSAFE types and entrypoints being renamed in the `@atlaskit/icon` package.
|
|
28
|
+
|
|
29
|
+
### Renamed entrypoints:
|
|
30
|
+
|
|
31
|
+
- `@atlaskit/icon-lab/UNSAFE_migration-map` → `@atlaskit/icon-lab/migration-map`
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- Updated dependencies
|
|
36
|
+
|
|
3
37
|
## 1.2.0
|
|
4
38
|
|
|
5
39
|
### Minor Changes
|
package/build/index.tsx
CHANGED
|
@@ -4,10 +4,10 @@ import fs from 'fs-extra';
|
|
|
4
4
|
import pkgDir from 'pkg-dir';
|
|
5
5
|
|
|
6
6
|
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
type
|
|
7
|
+
buildNew as buildIcons,
|
|
8
|
+
createDeprecatedIconDocs,
|
|
9
|
+
createIconDocsNew,
|
|
10
|
+
type NewIconBuildConfig,
|
|
11
11
|
} from '@af/icon-build-process';
|
|
12
12
|
|
|
13
13
|
import coreIconMetadata from '../icons_raw/metadata-core';
|
|
@@ -22,7 +22,7 @@ if (!root) {
|
|
|
22
22
|
/**
|
|
23
23
|
* The updated icon build process for the new icons under `@atlaskit/icon/core/*`
|
|
24
24
|
*/
|
|
25
|
-
const config:
|
|
25
|
+
const config: NewIconBuildConfig = {
|
|
26
26
|
srcDir: path.resolve(root, 'icons_raw/core'),
|
|
27
27
|
processedDir: path.resolve(root, 'icons_optimised/core'),
|
|
28
28
|
destDir: path.resolve(root, 'core'),
|
|
@@ -31,13 +31,13 @@ const config: UNSAFE_NewIconBuildConfig = {
|
|
|
31
31
|
glob: '**/*.svg',
|
|
32
32
|
iconType: 'core',
|
|
33
33
|
packageName: '@atlaskit/icon-lab',
|
|
34
|
-
baseIconEntryPoint: '@atlaskit/icon/
|
|
34
|
+
baseIconEntryPoint: '@atlaskit/icon/base-new',
|
|
35
35
|
metadata: coreIconMetadata,
|
|
36
36
|
migrationMap: migrationMap,
|
|
37
37
|
};
|
|
38
38
|
|
|
39
39
|
buildIcons(config).then((icons) => {
|
|
40
|
-
const iconDocs =
|
|
40
|
+
const iconDocs = createIconDocsNew(
|
|
41
41
|
icons,
|
|
42
42
|
'@atlaskit/icon-lab',
|
|
43
43
|
'core',
|
|
@@ -49,7 +49,7 @@ buildIcons(config).then((icons) => {
|
|
|
49
49
|
|
|
50
50
|
fs.outputFile(path.resolve(root, 'src/metadata-core.tsx'), iconDocs);
|
|
51
51
|
|
|
52
|
-
const deprecatedDocs =
|
|
52
|
+
const deprecatedDocs = createDeprecatedIconDocs(
|
|
53
53
|
icons,
|
|
54
54
|
'@atlaskit/icon-lab',
|
|
55
55
|
'core',
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::c0e97abad8b4eb31cabc000ab10adaa5>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import type
|
|
8
|
-
import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
-
import type Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
10
8
|
|
|
11
9
|
declare const AssetsDataManagerIcon: {
|
|
12
|
-
(props:
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
13
11
|
displayName: string;
|
|
14
12
|
};
|
|
15
13
|
export default AssetsDataManagerIcon;
|
|
@@ -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::3f4564db0b569575d5d7ae3945006ae7>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.default = void 0;
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
var
|
|
13
|
+
var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
/**
|
|
16
16
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
@@ -23,7 +23,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
|
-
const AssetsDataManagerIcon = props => /*#__PURE__*/_react.default.createElement(
|
|
26
|
+
const AssetsDataManagerIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
27
|
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M4.75 3.25a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 0H6.5c.69 0 1.25.56 1.25 1.25v7c0 .69-.56 1.25-1.25 1.25H4.75M11.25 8a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm0 0h-3.5m-3 4.75a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
package/core/assets-schema.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::ea6ef2e582069323b69809834a667a7b>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import type
|
|
8
|
-
import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
-
import type Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
10
8
|
|
|
11
9
|
declare const AssetsSchemaIcon: {
|
|
12
|
-
(props:
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
13
11
|
displayName: string;
|
|
14
12
|
};
|
|
15
13
|
export default AssetsSchemaIcon;
|
package/core/assets-schema.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::c2cf6d0b083efc7534cda00bbb519961>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.default = void 0;
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
var
|
|
13
|
+
var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
/**
|
|
16
16
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
@@ -23,7 +23,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
|
-
const AssetsSchemaIcon = props => /*#__PURE__*/_react.default.createElement(
|
|
26
|
+
const AssetsSchemaIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
27
|
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M10.25 7.25a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm0 0h-6m0-2.625v7c0 .69.56 1.25 1.25 1.25h4.75M5.75 3.25a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm7.5 9.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
package/core/book-open.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::37cacf2c7a0fa52874e37c6099a70112>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import type
|
|
8
|
-
import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
-
import type Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
10
8
|
|
|
11
9
|
declare const BookOpenIcon: {
|
|
12
|
-
(props:
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
13
11
|
displayName: string;
|
|
14
12
|
};
|
|
15
13
|
export default BookOpenIcon;
|
package/core/book-open.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::465637393ca4634058418718d1cacdfa>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.default = void 0;
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
var
|
|
13
|
+
var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
/**
|
|
16
16
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
@@ -23,7 +23,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
|
-
const BookOpenIcon = props => /*#__PURE__*/_react.default.createElement(
|
|
26
|
+
const BookOpenIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
27
|
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8 15.5v-2.25m0-8.375v8.375m0-8.375C8 3.149 9.4 1.75 11.127 1.75h3.5c.346 0 .625.28.625.625v10.25c0 .345-.28.625-.625.625H8m0-8.375A3.124 3.124 0 0 0 4.876 1.75h-3.5a.625.625 0 0 0-.625.625v10.25c0 .345.28.625.625.625H8m2.5-8h2.75m-2.75 2.5h2.75"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
package/core/coins.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::8bcc4fcbecec8f62109db64dca9d73b1>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import type
|
|
8
|
-
import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
-
import type Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
10
8
|
|
|
11
9
|
declare const CoinsIcon: {
|
|
12
|
-
(props:
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
13
11
|
displayName: string;
|
|
14
12
|
};
|
|
15
13
|
export default CoinsIcon;
|
package/core/coins.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::5d86bf2383bc81e775813c0ffe357bb7>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.default = void 0;
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
var
|
|
13
|
+
var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
/**
|
|
16
16
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
@@ -23,7 +23,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
|
-
const CoinsIcon = props => /*#__PURE__*/_react.default.createElement(
|
|
26
|
+
const CoinsIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
27
|
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M12.477 9.454a4.25 4.25 0 1 0-5.931-5.931M10.25 10a4.25 4.25 0 1 1-8.5 0 4.25 4.25 0 0 1 8.5 0Z"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
package/core/cross-octagon.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::231243a30afd0ffb6dd6ae714d9f38c0>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import type
|
|
8
|
-
import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
-
import type Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
10
8
|
|
|
11
9
|
declare const CrossOctagonIcon: {
|
|
12
|
-
(props:
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
13
11
|
displayName: string;
|
|
14
12
|
};
|
|
15
13
|
export default CrossOctagonIcon;
|
package/core/cross-octagon.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::f8a24881a9635fbd280b42e2158b4010>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.default = void 0;
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
var
|
|
13
|
+
var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
/**
|
|
16
16
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
@@ -23,7 +23,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
|
-
const CrossOctagonIcon = props => /*#__PURE__*/_react.default.createElement(
|
|
26
|
+
const CrossOctagonIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
27
|
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M3.582 3.582 1.75 5.414v5.172l1.832 1.832m0-8.836L5.414 1.75h5.172l1.832 1.832m-8.836 0L8 8m4.418 4.418 1.832-1.832V5.414l-1.832-1.832m0 8.836-1.832 1.832H5.414l-1.832-1.832m8.836 0L8 8m0 0 4.418-4.418M8 8l-4.418 4.418"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
package/core/editions.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::1cd7532aa08b850243b6462e13212206>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import type
|
|
8
|
-
import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
-
import type Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
10
8
|
|
|
11
9
|
declare const EditionsIcon: {
|
|
12
|
-
(props:
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
13
11
|
displayName: string;
|
|
14
12
|
};
|
|
15
13
|
export default EditionsIcon;
|
package/core/editions.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::afa1110716d7247ec25f8bd82a66f789>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.default = void 0;
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
var
|
|
13
|
+
var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
/**
|
|
16
16
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
@@ -23,7 +23,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
|
-
const EditionsIcon = props => /*#__PURE__*/_react.default.createElement(
|
|
26
|
+
const EditionsIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
27
|
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="m5.25 5.75 1.25-4m-1.25 4h5.5m-5.5 0H1m4.25 0L7.92 14h.16l2.67-8.25m-4.25-4H3.25l-2.5 4L8 14.25l7.25-8.5-2.5-4H9.5m-3 0h3m1.25 4-1.25-4m1.25 4h4.125"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
package/core/field-text.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::36920dbba4543a3fdf176f1d4c70f914>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import type
|
|
8
|
-
import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
-
import type Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
10
8
|
|
|
11
9
|
declare const FieldTextIcon: {
|
|
12
|
-
(props:
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
13
11
|
displayName: string;
|
|
14
12
|
};
|
|
15
13
|
export default FieldTextIcon;
|
package/core/field-text.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::fde52e6d65937d0d50a1082a4c29e7f9>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.default = void 0;
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
var
|
|
13
|
+
var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
/**
|
|
16
16
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
@@ -23,7 +23,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
|
-
const FieldTextIcon = props => /*#__PURE__*/_react.default.createElement(
|
|
26
|
+
const FieldTextIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
27
|
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M8 1.75h2.5m2.5 0h-2.5m0 0v3.5m0 9H8m2.5 0H13m-2.5 0v-3.5m0-5.5H14c.69 0 1.25.56 1.25 1.25v3c0 .69-.56 1.25-1.25 1.25h-3.5m0-5.5v5.5M8 5.25H2c-.69 0-1.25.56-1.25 1.25v3c0 .69.56 1.25 1.25 1.25h6"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
package/core/initiative.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::988254ef1d2fd1ad987c693bcde3c9e3>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import type
|
|
8
|
-
import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
-
import type Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
10
8
|
|
|
11
9
|
declare const InitiativeIcon: {
|
|
12
|
-
(props:
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
13
11
|
displayName: string;
|
|
14
12
|
};
|
|
15
13
|
export default InitiativeIcon;
|
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::07554af816f6dd6e094d6ed9d91cff09>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.default = void 0;
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
var
|
|
13
|
+
var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
/**
|
|
16
16
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
@@ -23,8 +23,8 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
|
-
const InitiativeIcon = props => /*#__PURE__*/_react.default.createElement(
|
|
27
|
-
dangerouslySetGlyph: `<path
|
|
26
|
+
const InitiativeIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M4.607 12.25a6.25 6.25 0 1 1 6.785 0m-6.785 0a1.19 1.19 0 0 0-1.128.813L2.75 15.25h10.5l-.729-2.187a1.19 1.19 0 0 0-1.129-.813m-6.785 0h6.786M4.75 7A3.25 3.25 0 0 1 8 3.75"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
|
30
30
|
InitiativeIcon.displayName = 'InitiativeIcon';
|
package/core/lozenge.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::2c86b279b22e52d1b062d6721ef5fca4>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import type
|
|
8
|
-
import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
-
import type Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
10
8
|
|
|
11
9
|
declare const LozengeIcon: {
|
|
12
|
-
(props:
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
13
11
|
displayName: string;
|
|
14
12
|
};
|
|
15
13
|
export default LozengeIcon;
|
package/core/lozenge.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::fcd64d242ce4e2935c3b1af57465f1fc>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.default = void 0;
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
var
|
|
13
|
+
var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
/**
|
|
16
16
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
@@ -23,7 +23,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
|
-
const LozengeIcon = props => /*#__PURE__*/_react.default.createElement(
|
|
26
|
+
const LozengeIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
27
|
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-width="1.5" d="M3 8h10M2 11.25h12c.69 0 1.25-.56 1.25-1.25V6c0-.69-.56-1.25-1.25-1.25H2C1.31 4.75.75 5.31.75 6v4c0 .69.56 1.25 1.25 1.25Z"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
package/core/paint-brush.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::7f535e6b114b33de8e1af500066f8146>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import type
|
|
8
|
-
import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
-
import type Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
10
8
|
|
|
11
9
|
declare const PaintBrushIcon: {
|
|
12
|
-
(props:
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
13
11
|
displayName: string;
|
|
14
12
|
};
|
|
15
13
|
export default PaintBrushIcon;
|
package/core/paint-brush.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::ac31504c730d825b34ede741ec5de080>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.default = void 0;
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
var
|
|
13
|
+
var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
/**
|
|
16
16
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
@@ -23,7 +23,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
|
-
const PaintBrushIcon = props => /*#__PURE__*/_react.default.createElement(
|
|
26
|
+
const PaintBrushIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
27
|
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M6.75 10.25V14a1.25 1.25 0 1 0 2.5 0v-3.75m-2.5 0h2.5m-2.5 0H4.5c-.69 0-1.25-.56-1.25-1.25V7.25m6 3h2.25c.69 0 1.25-.56 1.25-1.25V7.25m-9.5 0V.75h3m-3 6.5h9.5m0 0V.75h-3m-3.5 0V3m0-2.25h3.5m0 0V4"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
package/core/paint-roller.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::267570733b6f29c19ba16f0d9496e8cc>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import type
|
|
8
|
-
import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
-
import type Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
10
8
|
|
|
11
9
|
declare const PaintRollerIcon: {
|
|
12
|
-
(props:
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
13
11
|
displayName: string;
|
|
14
12
|
};
|
|
15
13
|
export default PaintRollerIcon;
|
package/core/paint-roller.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::cf9edc79cd37971ecdd342b1e2fac634>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
"use strict";
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports.default = void 0;
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
var
|
|
13
|
+
var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
|
|
14
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
15
|
/**
|
|
16
16
|
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
@@ -23,7 +23,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
|
|
|
23
23
|
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
24
|
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
25
|
*/
|
|
26
|
-
const PaintRollerIcon = props => /*#__PURE__*/_react.default.createElement(
|
|
26
|
+
const PaintRollerIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
27
27
|
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M11.75 2.5V.75h-10v3.5h10zm0 0h1.875c.345 0 .625.28.625.625V5.5c0 .69-.56 1.25-1.25 1.25H7.638A.64.64 0 0 0 7 7.388V9.75m0 0H5.75V14a1.25 1.25 0 1 0 2.5 0V9.75z"/>`
|
|
28
28
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
29
|
}, props));
|
package/core/qr-code.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::b12846d40faacc6fa42a80add2234fda>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import type
|
|
8
|
-
import type { NewCoreIconProps } from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
-
import type Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
10
8
|
|
|
11
9
|
declare const QrCodeIcon: {
|
|
12
|
-
(props:
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
13
11
|
displayName: string;
|
|
14
12
|
};
|
|
15
13
|
export default QrCodeIcon;
|