@atlaskit/icon-lab 0.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 +45 -0
- package/README.md +18 -0
- package/UNSAFE_migration-map/package.json +15 -0
- package/build/index.tsx +47 -0
- package/core/coins.d.ts +14 -0
- package/core/coins.js +31 -0
- package/core/cross-octagon.d.ts +14 -0
- package/core/cross-octagon.js +31 -0
- package/core/editions.d.ts +14 -0
- package/core/editions.js +31 -0
- package/core/field-text.d.ts +14 -0
- package/core/field-text.js +31 -0
- package/core/highlight.d.ts +14 -0
- package/core/highlight.js +31 -0
- package/core/paint-brush.d.ts +14 -0
- package/core/paint-brush.js +31 -0
- package/core/paint-roller.d.ts +14 -0
- package/core/paint-roller.js +31 -0
- package/core/roadmaps-plan.d.ts +14 -0
- package/core/roadmaps-plan.js +31 -0
- package/core/roadmaps-service.d.ts +14 -0
- package/core/roadmaps-service.js +31 -0
- package/core/speedometer.d.ts +14 -0
- package/core/speedometer.js +31 -0
- package/core/takeout-container.d.ts +14 -0
- package/core/takeout-container.js +31 -0
- package/core/ticket.d.ts +14 -0
- package/core/ticket.js +31 -0
- package/core/vehicle-train.d.ts +14 -0
- package/core/vehicle-train.js +31 -0
- package/core/wallet.d.ts +14 -0
- package/core/wallet.js +31 -0
- package/core/wrench.d.ts +14 -0
- package/core/wrench.js +31 -0
- package/dist/cjs/entry-points/metadata.js +13 -0
- package/dist/cjs/index.js +13 -0
- package/dist/cjs/metadata-core.js +155 -0
- package/dist/cjs/migration-map.js +35 -0
- package/dist/es2019/entry-points/metadata.js +1 -0
- package/dist/es2019/index.js +1 -0
- package/dist/es2019/metadata-core.js +149 -0
- package/dist/es2019/migration-map.js +29 -0
- package/dist/esm/entry-points/metadata.js +1 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/metadata-core.js +149 -0
- package/dist/esm/migration-map.js +29 -0
- package/dist/types/entry-points/metadata.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/metadata-core.d.ts +51 -0
- package/dist/types/migration-map.d.ts +3 -0
- package/dist/types-ts4.5/entry-points/metadata.d.ts +1 -0
- package/dist/types-ts4.5/index.d.ts +1 -0
- package/dist/types-ts4.5/metadata-core.d.ts +51 -0
- package/dist/types-ts4.5/migration-map.d.ts +3 -0
- package/metadata/package.json +15 -0
- package/package.json +89 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# @atlaskit/icon-lab
|
|
2
|
+
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#137821](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/137821)
|
|
8
|
+
[`bcca6c1789a37`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bcca6c1789a37) - ###
|
|
9
|
+
Summary
|
|
10
|
+
|
|
11
|
+
This release renames `@atlassian/icon-lab` to `@atlaskit/icon-lab` and adds a supplementary set of
|
|
12
|
+
icons to `@atlaskit/icon-lab`.
|
|
13
|
+
|
|
14
|
+
### Added:
|
|
15
|
+
|
|
16
|
+
**`@atlaskit/icon-lab/core`**
|
|
17
|
+
|
|
18
|
+
- `coins`
|
|
19
|
+
- `cross-octagon`
|
|
20
|
+
- `editions`
|
|
21
|
+
- `field-text`
|
|
22
|
+
- `highlight`
|
|
23
|
+
- `paint-brush`
|
|
24
|
+
- `paint-roller`
|
|
25
|
+
- `speedometer`
|
|
26
|
+
- `takeout-container`
|
|
27
|
+
- `ticket`
|
|
28
|
+
- `vehicle-train`
|
|
29
|
+
- `wallet`
|
|
30
|
+
- `wrench`
|
|
31
|
+
|
|
32
|
+
### Renamed:
|
|
33
|
+
|
|
34
|
+
**`@atlaskit/icon-lab/core`**
|
|
35
|
+
|
|
36
|
+
- `roadmaps-code → roadmaps-plan`
|
|
37
|
+
|
|
38
|
+
### Removed entrypoints:
|
|
39
|
+
|
|
40
|
+
**`@atlaskit/icon-lab/core`**
|
|
41
|
+
|
|
42
|
+
- `flag-filled`
|
|
43
|
+
- `headphones`
|
|
44
|
+
- `library`
|
|
45
|
+
- `pulse`
|
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Icon Labs
|
|
2
|
+
|
|
3
|
+
An icon package for public icon contributions
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
yarn add @atlaskit/icon-lab
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
Icons should be used intentionally to maximize comprehension and reduce cognitive load. Use it to
|
|
14
|
+
call attention to a particular action, command, or section. If you’re questioning an icon’s use, it
|
|
15
|
+
probably doesn’t need to be used.
|
|
16
|
+
|
|
17
|
+
To search through all the icons we have in our system, visit the icon examples on Atlaskit:
|
|
18
|
+
[icon explorer](https://atlaskit.atlassian.com/examples/design-system/icon/101-new-icon-explorer).
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/icon-lab/UNSAFE_migration-map",
|
|
3
|
+
"main": "../dist/cjs/migration-map.js",
|
|
4
|
+
"module": "../dist/esm/migration-map.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/migration-map.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/migration-map.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.4": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/migration-map.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
package/build/index.tsx
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import path from 'path';
|
|
2
|
+
|
|
3
|
+
import fs from 'fs-extra';
|
|
4
|
+
import pkgDir from 'pkg-dir';
|
|
5
|
+
|
|
6
|
+
import { UNSAFE_buildNew as buildIcons, UNSAFE_createIconDocsNew } from '@af/icon-build-process';
|
|
7
|
+
import type { UNSAFE_NewIconBuildConfig } from '@af/icon-build-process';
|
|
8
|
+
|
|
9
|
+
import iconMetadata from '../icons_raw/metadata-core';
|
|
10
|
+
import migrationMap from '../src/migration-map';
|
|
11
|
+
|
|
12
|
+
const root = pkgDir.sync();
|
|
13
|
+
|
|
14
|
+
if (!root) {
|
|
15
|
+
throw new Error('Root directory was not found');
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The updated icon build process for the new icons under `@atlaskit/icon/core/*`
|
|
20
|
+
*/
|
|
21
|
+
const config: UNSAFE_NewIconBuildConfig = {
|
|
22
|
+
srcDir: path.resolve(root, 'icons_raw/core'),
|
|
23
|
+
processedDir: path.resolve(root, 'icons_optimised/core'),
|
|
24
|
+
destDir: path.resolve(root, 'core'),
|
|
25
|
+
maxWidth: 24,
|
|
26
|
+
maxHeight: 24,
|
|
27
|
+
glob: '**/*.svg',
|
|
28
|
+
iconType: 'core',
|
|
29
|
+
packageName: '@atlaskit/icon-lab',
|
|
30
|
+
baseIconEntryPoint: '@atlaskit/icon/UNSAFE_base-new',
|
|
31
|
+
metadata: iconMetadata,
|
|
32
|
+
migrationMap: migrationMap,
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
buildIcons(config).then((icons) => {
|
|
36
|
+
const iconDocs = UNSAFE_createIconDocsNew(
|
|
37
|
+
icons,
|
|
38
|
+
'@atlaskit/icon-lab',
|
|
39
|
+
'core',
|
|
40
|
+
{},
|
|
41
|
+
['icon', 'icon-lab', 'core'],
|
|
42
|
+
iconMetadata,
|
|
43
|
+
migrationMap,
|
|
44
|
+
);
|
|
45
|
+
|
|
46
|
+
return fs.outputFile(path.resolve(root, 'src/metadata-core.tsx'), iconDocs);
|
|
47
|
+
});
|
package/core/coins.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::94046cf58a089bb2b6c6710482a994a0>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const CoinsIcon: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default CoinsIcon;
|
package/core/coins.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::427c77c08a6583415bcb4c8772b600db>>
|
|
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
/**
|
|
16
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "Coins".
|
|
20
|
+
* Category: multi-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Multi purpose
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const CoinsIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
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
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
CoinsIcon.displayName = 'CoinsIcon';
|
|
31
|
+
var _default = exports.default = CoinsIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::676115cb835b28b640a1e66753023718>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const CrossOctagonIcon: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default CrossOctagonIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::b63a89054495ae069c2fda50d7b483a3>>
|
|
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
/**
|
|
16
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "CrossOctagon".
|
|
20
|
+
* Category: multi-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Multi purpose
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const CrossOctagonIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
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
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
CrossOctagonIcon.displayName = 'CrossOctagonIcon';
|
|
31
|
+
var _default = exports.default = CrossOctagonIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::961209f7732502a188b60c4670f70181>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const EditionsIcon: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default EditionsIcon;
|
package/core/editions.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::6ae6f7a9745e60c3ca2bb43f93ecd93e>>
|
|
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
/**
|
|
16
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "Editions".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Single purpose - Reserved for representing premium features and functionality. Editions may replace the current premium sparkle icon.
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const EditionsIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="m15.25 5.75-2.5-4H9.5m5.75 4L8 14.25m7.25-8.5h-4.5m-10 0 2.5-4H6.5m-5.75 4L8 14.25M.75 5.75h4.5M8 14.25l-2.75-8.5M8 14.25l2.75-8.5m-5.5 0 1.25-4m-1.25 4h5.5m-4.25-4h3m1.25 4-1.25-4"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
EditionsIcon.displayName = 'EditionsIcon';
|
|
31
|
+
var _default = exports.default = EditionsIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::a21599a145cf374ae420817fae6c9e3d>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const FieldTextIcon: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default FieldTextIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::a54872a6e2c832bc39670c1debb9b3b2>>
|
|
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
/**
|
|
16
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "FieldText".
|
|
20
|
+
* Category: multi-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Multi purpose
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const FieldTextIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
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
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
FieldTextIcon.displayName = 'FieldTextIcon';
|
|
31
|
+
var _default = exports.default = FieldTextIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::83d171dbfbeff4d8a134bd0830e39c72>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const HighlightIcon: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default HighlightIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::fe1a23bc44cfe15c7353a43ab60db862>>
|
|
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
/**
|
|
16
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "Highlight".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Single purpose - Reserved for highlight text tool in Confluence Editor.
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const HighlightIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M13.25 16v-3.25M2.75 16v-3.25m3.5-8H5.5L5 7.5l-2.09 3.715a1.25 1.25 0 0 0-.16.612v.923m3.5-8v-4L9.75 2v2.75m-3.5 0h3.5m0 0h.75L11 7.5l2.09 3.715c.105.187.16.398.16.612v.923m-10.5 0h10.5"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
HighlightIcon.displayName = 'HighlightIcon';
|
|
31
|
+
var _default = exports.default = HighlightIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::ccbde56f8ef357b7846d11b3ac2a7c51>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const PaintBrushIcon: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default PaintBrushIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::6cb2b34ee1df3fad20cfb5c36e928f9e>>
|
|
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
/**
|
|
16
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "PaintBrush".
|
|
20
|
+
* Category: multi-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Multi purpose
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const PaintBrushIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
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
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
PaintBrushIcon.displayName = 'PaintBrushIcon';
|
|
31
|
+
var _default = exports.default = PaintBrushIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::9ef604fbf52962d9bf154d19c2113823>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const PaintRollerIcon: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default PaintRollerIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::5fc49fed68d1810a169210869aa9cde9>>
|
|
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
/**
|
|
16
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "PaintRoller".
|
|
20
|
+
* Category: multi-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Multi purpose
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const PaintRollerIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
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
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
PaintRollerIcon.displayName = 'PaintRollerIcon';
|
|
31
|
+
var _default = exports.default = PaintRollerIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e6affdf1a9f459969f316a7356ff4b75>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const RoadmapsPlanIcon: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default RoadmapsPlanIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::3f1a9c3108f342fc61f7e84aa56136fc>>
|
|
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
/**
|
|
16
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "RoadmapsPlan".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Single purpose - Reserved for roadmaps plan.
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const RoadmapsPlanIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M5.25 3.5h5.5a2.25 2.25 0 0 1 0 4.5h-5.5a2.25 2.25 0 0 0 0 4.5h5.5m-5.5-9a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm5.5 9a1.75 1.75 0 1 0 3.5 0 1.75 1.75 0 0 0-3.5 0Z"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
RoadmapsPlanIcon.displayName = 'RoadmapsPlanIcon';
|
|
31
|
+
var _default = exports.default = RoadmapsPlanIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::dcf99ae3b727688fb7f7bf4bbff5ca3e>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const RoadmapsServiceIcon: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default RoadmapsServiceIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::c2e4bb86b99b57a39e586d65685eacae>>
|
|
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
/**
|
|
16
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "RoadmapsService".
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Single purpose - Reserved for roadmaps service.
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const RoadmapsServiceIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M10.75 3.5a1.75 1.75 0 1 0 3.5 0 1.75 1.75 0 0 0-3.5 0Zm0 0H8.451c-.435 0-.84.227-1.067.598L5 8m5.75 4.5a1.75 1.75 0 1 0 3.5 0 1.75 1.75 0 0 0-3.5 0Zm0 0H8.451a1.25 1.25 0 0 1-1.067-.598L5 8M1 8h4"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
RoadmapsServiceIcon.displayName = 'RoadmapsServiceIcon';
|
|
31
|
+
var _default = exports.default = RoadmapsServiceIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::345177767c7586c1b0ffdbc16099b30d>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const SpeedometerIcon: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default SpeedometerIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::403c1b22f560fc4a48b3c9c27ae17259>>
|
|
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
/**
|
|
16
|
+
* ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
|
|
17
|
+
* Please reach out in #icon-contributions before using these in production.
|
|
18
|
+
*
|
|
19
|
+
* Icon: "Speedometer".
|
|
20
|
+
* Category: multi-purpose
|
|
21
|
+
* Location: @atlaskit/icon-lab
|
|
22
|
+
* Usage guidance: Multi purpose
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const SpeedometerIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
|
|
27
|
+
dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M9.237 8.263a1.75 1.75 0 1 0-2.475 2.475 1.75 1.75 0 0 0 2.475-2.475Zm0 0 4.13-4.138A7.22 7.22 0 0 1 15.25 9c0 2.066-.864 3.93-2.25 5.25M11.25 2.517A7.25 7.25 0 0 0 3 14.25"/>`
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
SpeedometerIcon.displayName = 'SpeedometerIcon';
|
|
31
|
+
var _default = exports.default = SpeedometerIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::9edc14b198ceadd80caa7bb5cf562c8c>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import Icon from '@atlaskit/icon/UNSAFE_base-new';
|
|
9
|
+
|
|
10
|
+
declare const TakeoutContainerIcon: {
|
|
11
|
+
(props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
|
|
12
|
+
displayName: string;
|
|
13
|
+
};
|
|
14
|
+
export default TakeoutContainerIcon;
|