@atlaskit/icon-lab 5.5.0 → 5.6.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.
Files changed (34) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/core/arrow-curved-down-left.d.ts +13 -0
  3. package/core/arrow-curved-down-left.js +27 -0
  4. package/core/arrow-curved-down-right.d.ts +13 -0
  5. package/core/arrow-curved-down-right.js +27 -0
  6. package/core/arrow-curved-left-down.d.ts +13 -0
  7. package/core/arrow-curved-left-down.js +27 -0
  8. package/core/arrow-curved-left-up.d.ts +13 -0
  9. package/core/arrow-curved-left-up.js +27 -0
  10. package/core/arrow-curved-right-down.d.ts +13 -0
  11. package/core/arrow-curved-right-down.js +27 -0
  12. package/core/arrow-curved-right-up.d.ts +13 -0
  13. package/core/arrow-curved-right-up.js +27 -0
  14. package/core/arrow-curved-up-left.d.ts +13 -0
  15. package/core/arrow-curved-up-left.js +27 -0
  16. package/core/arrow-curved-up-right.d.ts +13 -0
  17. package/core/arrow-curved-up-right.js +27 -0
  18. package/core/group.d.ts +13 -0
  19. package/core/group.js +28 -0
  20. package/dist/cjs/metadata-core.js +83 -1
  21. package/dist/es2019/metadata-core.js +83 -1
  22. package/dist/esm/metadata-core.js +83 -1
  23. package/dist/types/metadata-core.d.ts +1 -1
  24. package/dist/types-ts4.5/metadata-core.d.ts +1 -1
  25. package/package.json +1 -1
  26. package/svgs/core/arrow-curved-down-left.svg +1 -0
  27. package/svgs/core/arrow-curved-down-right.svg +1 -0
  28. package/svgs/core/arrow-curved-left-down.svg +1 -0
  29. package/svgs/core/arrow-curved-left-up.svg +1 -0
  30. package/svgs/core/arrow-curved-right-down.svg +1 -0
  31. package/svgs/core/arrow-curved-right-up.svg +1 -0
  32. package/svgs/core/arrow-curved-up-left.svg +1 -0
  33. package/svgs/core/arrow-curved-up-right.svg +1 -0
  34. package/svgs/core/group.svg +1 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @atlaskit/icon-lab
2
2
 
3
+ ## 5.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#200547](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/200547)
8
+ [`360e37c87dfdd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/360e37c87dfdd) -
9
+ This release adds icons in `@atlaskit/icon-lab`.
10
+
11
+ ### Added:
12
+
13
+ **`@atlaskit/icon-lab/core`**
14
+
15
+ - `arrow-curved-down-left`
16
+ - `arrow-curved-down-right`
17
+ - `arrow-curved-left-down`
18
+ - `arrow-curved-left-up`
19
+ - `arrow-curved-right-down`
20
+ - `arrow-curved-right-up`
21
+ - `arrow-curved-up-left`
22
+ - `arrow-curved-up-right`
23
+ - `group`
24
+
3
25
  ## 5.5.0
4
26
 
5
27
  ### 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::47d8978f4d09ad06060f74e72cae5197>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const ArrowCurvedDownLeftIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default ArrowCurvedDownLeftIcon;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::535dd56ad3d87e6a4d3fcfa724626151>>
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: "ArrowCurvedDownLeft".
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 ArrowCurvedDownLeftIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
23
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M13.5 6a3 3 0 0 1-3 3H3.56l3.22-3.22-1.06-1.06-4.5 4.5a.75.75 0 0 0 0 1.06l4.5 4.5 1.06-1.06-3.22-3.22h6.94A4.5 4.5 0 0 0 15 6V1h-1.5z"/>`
24
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
25
+ }, props));
26
+ ArrowCurvedDownLeftIcon.displayName = 'ArrowCurvedDownLeftIcon';
27
+ var _default = exports.default = ArrowCurvedDownLeftIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::ef81a35b034bdc3f807f8b5d3337fcce>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const ArrowCurvedDownRightIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default ArrowCurvedDownRightIcon;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::13828726df8740b17359f8acd8e145a1>>
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: "ArrowCurvedDownRight".
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 ArrowCurvedDownRightIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
23
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M2.5 6a3 3 0 0 0 3 3h6.94L9.22 5.78l1.06-1.06 4.5 4.5a.75.75 0 0 1 0 1.06l-4.5 4.5-1.06-1.06 3.22-3.22H5.5A4.5 4.5 0 0 1 1 6V1h1.5z"/>`
24
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
25
+ }, props));
26
+ ArrowCurvedDownRightIcon.displayName = 'ArrowCurvedDownRightIcon';
27
+ var _default = exports.default = ArrowCurvedDownRightIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::4c4e48e43c046384158e69578049f60a>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const ArrowCurvedLeftDownIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default ArrowCurvedLeftDownIcon;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::cc3e80cc4c1cb9fb3b72c399fb56fe67>>
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: "ArrowCurvedLeftDown".
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 ArrowCurvedLeftDownIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
23
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M10 2.5a3 3 0 0 0-3 3v6.94l3.22-3.22 1.06 1.06-4.5 4.5a.75.75 0 0 1-1.06 0l-4.5-4.5 1.06-1.06 3.22 3.22V5.5A4.5 4.5 0 0 1 10 1h5v1.5z"/>`
24
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
25
+ }, props));
26
+ ArrowCurvedLeftDownIcon.displayName = 'ArrowCurvedLeftDownIcon';
27
+ var _default = exports.default = ArrowCurvedLeftDownIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::a42be14494fe9afa44adaa69b83b7d8e>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const ArrowCurvedLeftUpIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default ArrowCurvedLeftUpIcon;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::bcc62539839443df5d6ff981570feb70>>
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: "ArrowCurvedLeftUp".
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 ArrowCurvedLeftUpIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
23
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M10 13.5a3 3 0 0 1-3-3V3.56l3.22 3.22 1.06-1.06-4.5-4.5a.75.75 0 0 0-1.06 0l-4.5 4.5 1.06 1.06L5.5 3.56v6.94A4.5 4.5 0 0 0 10 15h5v-1.5z"/>`
24
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
25
+ }, props));
26
+ ArrowCurvedLeftUpIcon.displayName = 'ArrowCurvedLeftUpIcon';
27
+ var _default = exports.default = ArrowCurvedLeftUpIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::0dfc1ab7cabc4a63ccf3061f00455b60>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const ArrowCurvedRightDownIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default ArrowCurvedRightDownIcon;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::8db6579310439f0c4e72474a74a4fe3c>>
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: "ArrowCurvedRightDown".
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 ArrowCurvedRightDownIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
23
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M6 2.5a3 3 0 0 1 3 3v6.94L5.78 9.22l-1.06 1.06 4.5 4.5a.75.75 0 0 0 1.06 0l4.5-4.5-1.06-1.06-3.22 3.22V5.5A4.5 4.5 0 0 0 6 1H1v1.5z"/>`
24
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
25
+ }, props));
26
+ ArrowCurvedRightDownIcon.displayName = 'ArrowCurvedRightDownIcon';
27
+ var _default = exports.default = ArrowCurvedRightDownIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::b3406f8ff0f96e70926a3586c0e1e58f>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const ArrowCurvedRightUpIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default ArrowCurvedRightUpIcon;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::d78a52e31d9b124f2cae40f7456c040e>>
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: "ArrowCurvedRightUp".
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 ArrowCurvedRightUpIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
23
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M6 13.5a3 3 0 0 0 3-3V3.56L5.78 6.78 4.72 5.72l4.5-4.5a.75.75 0 0 1 1.06 0l4.5 4.5-1.06 1.06-3.22-3.22v6.94A4.5 4.5 0 0 1 6 15H1v-1.5z"/>`
24
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
25
+ }, props));
26
+ ArrowCurvedRightUpIcon.displayName = 'ArrowCurvedRightUpIcon';
27
+ var _default = exports.default = ArrowCurvedRightUpIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::d4deddcda8a355718746493035e2487f>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const ArrowCurvedUpLeftIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default ArrowCurvedUpLeftIcon;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::bdad134fe256fa42c668388cefad50a7>>
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: "ArrowCurvedUpLeft".
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 ArrowCurvedUpLeftIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
23
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M13.5 10a3 3 0 0 0-3-3H3.56l3.22 3.22-1.06 1.06-4.5-4.5a.75.75 0 0 1 0-1.06l4.5-4.5 1.06 1.06L3.56 5.5h6.94A4.5 4.5 0 0 1 15 10v5h-1.5z"/>`
24
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
25
+ }, props));
26
+ ArrowCurvedUpLeftIcon.displayName = 'ArrowCurvedUpLeftIcon';
27
+ var _default = exports.default = ArrowCurvedUpLeftIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::92fdd2546f55e1a6d659b27e179a2fd3>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const ArrowCurvedUpRightIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default ArrowCurvedUpRightIcon;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::8d1e958b325055cc323dedf608b70657>>
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: "ArrowCurvedUpRight".
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 ArrowCurvedUpRightIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
23
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M2.5 10a3 3 0 0 1 3-3h6.94l-3.22 3.22 1.06 1.06 4.5-4.5a.75.75 0 0 0 0-1.06l-4.5-4.5-1.06 1.06 3.22 3.22H5.5A4.5 4.5 0 0 0 1 10v5h1.5z"/>`
24
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
25
+ }, props));
26
+ ArrowCurvedUpRightIcon.displayName = 'ArrowCurvedUpRightIcon';
27
+ var _default = exports.default = ArrowCurvedUpRightIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::17251aadfc77f6f6b5522b33288eb4f3>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const GroupIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default GroupIcon;
package/core/group.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::56be7afdc75376b24cd7d8061fd57c6f>>
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: "Group".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for grouping data
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 GroupIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M7.164 1.183a2 2 0 0 1 1.672 0l5.727 2.635a.75.75 0 0 1 0 1.363L8.837 7.816a2 2 0 0 1-1.672 0L1.437 5.18a.75.75 0 0 1 0-1.363zM8.21 2.546a.5.5 0 0 0-.418 0L3.545 4.5 7.79 6.453a.5.5 0 0 0 .418 0l4.245-1.954z"/><path fill="currentcolor" d="M14.945 8.428 8.854 11.3a2 2 0 0 1-1.708 0L1.055 8.428l.64-1.358 6.092 2.874a.5.5 0 0 0 .426 0l6.092-2.874z"/><path fill="currentcolor" d="M14.945 11.928 8.854 14.8a2 2 0 0 1-1.708 0l-6.091-2.873.64-1.358 6.092 2.874a.5.5 0 0 0 .426 0l6.092-2.874z"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ GroupIcon.displayName = 'GroupIcon';
28
+ var _default = exports.default = GroupIcon;
@@ -9,7 +9,7 @@ exports.default = void 0;
9
9
  *
10
10
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
11
11
  *
12
- * @codegen <<SignedSource::c1667f19a52f53c9d1c4218e2a58de86>>
12
+ * @codegen <<SignedSource::5b69fe1c13c3b715214c07768484a6fc>>
13
13
  * @codegenCommand yarn build:icon-glyphs
14
14
  */
15
15
 
@@ -180,6 +180,78 @@ var metadata = {
180
180
  team: 'Whiteboards',
181
181
  status: 'published'
182
182
  },
183
+ 'arrow-curved-down-left': {
184
+ keywords: ['arrow-curved-down-left', 'arrowcurveddownleft', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
185
+ componentName: 'ArrowCurvedDownLeftIcon',
186
+ package: '@atlaskit/icon-lab/core/arrow-curved-down-left',
187
+ type: 'core',
188
+ categorization: 'multi-purpose',
189
+ team: 'Design System Team',
190
+ status: 'published'
191
+ },
192
+ 'arrow-curved-down-right': {
193
+ keywords: ['arrow-curved-down-right', 'arrowcurveddownright', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
194
+ componentName: 'ArrowCurvedDownRightIcon',
195
+ package: '@atlaskit/icon-lab/core/arrow-curved-down-right',
196
+ type: 'core',
197
+ categorization: 'multi-purpose',
198
+ team: 'Design System Team',
199
+ status: 'published'
200
+ },
201
+ 'arrow-curved-left-down': {
202
+ keywords: ['arrow-curved-left-down', 'arrowcurvedleftdown', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
203
+ componentName: 'ArrowCurvedLeftDownIcon',
204
+ package: '@atlaskit/icon-lab/core/arrow-curved-left-down',
205
+ type: 'core',
206
+ categorization: 'multi-purpose',
207
+ team: 'Design System Team',
208
+ status: 'published'
209
+ },
210
+ 'arrow-curved-left-up': {
211
+ keywords: ['arrow-curved-left-up', 'arrowcurvedleftup', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
212
+ componentName: 'ArrowCurvedLeftUpIcon',
213
+ package: '@atlaskit/icon-lab/core/arrow-curved-left-up',
214
+ type: 'core',
215
+ categorization: 'multi-purpose',
216
+ team: 'Design System Team',
217
+ status: 'published'
218
+ },
219
+ 'arrow-curved-right-down': {
220
+ keywords: ['arrow-curved-right-down', 'arrowcurvedrightdown', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
221
+ componentName: 'ArrowCurvedRightDownIcon',
222
+ package: '@atlaskit/icon-lab/core/arrow-curved-right-down',
223
+ type: 'core',
224
+ categorization: 'multi-purpose',
225
+ team: 'Design System Team',
226
+ status: 'published'
227
+ },
228
+ 'arrow-curved-right-up': {
229
+ keywords: ['arrow-curved-right-up', 'arrowcurvedrightup', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
230
+ componentName: 'ArrowCurvedRightUpIcon',
231
+ package: '@atlaskit/icon-lab/core/arrow-curved-right-up',
232
+ type: 'core',
233
+ categorization: 'multi-purpose',
234
+ team: 'Design System Team',
235
+ status: 'published'
236
+ },
237
+ 'arrow-curved-up-left': {
238
+ keywords: ['arrow-curved-up-left', 'arrowcurvedupleft', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
239
+ componentName: 'ArrowCurvedUpLeftIcon',
240
+ package: '@atlaskit/icon-lab/core/arrow-curved-up-left',
241
+ type: 'core',
242
+ categorization: 'multi-purpose',
243
+ team: 'Design System Team',
244
+ status: 'published'
245
+ },
246
+ 'arrow-curved-up-right': {
247
+ keywords: ['arrow-curved-up-right', 'arrowcurvedupright', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
248
+ componentName: 'ArrowCurvedUpRightIcon',
249
+ package: '@atlaskit/icon-lab/core/arrow-curved-up-right',
250
+ type: 'core',
251
+ categorization: 'multi-purpose',
252
+ team: 'Design System Team',
253
+ status: 'published'
254
+ },
183
255
  'arrows-diagonal-up-right-down-left': {
184
256
  keywords: ['arrows-diagonal-up-right-down-left', 'arrowsdiagonaluprightdownleft', 'icon', 'icon-lab', 'Arrows', 'Switch', 'Space', 'Swap', 'crossflow'],
185
257
  componentName: 'ArrowsDiagonalUpRightDownLeftIcon',
@@ -923,6 +995,16 @@ var metadata = {
923
995
  team: 'Loom',
924
996
  status: 'published'
925
997
  },
998
+ group: {
999
+ keywords: ['group', 'icon', 'icon-lab', 'group', 'grouping', 'stack', 'related data'],
1000
+ componentName: 'GroupIcon',
1001
+ package: '@atlaskit/icon-lab/core/group',
1002
+ type: 'core',
1003
+ categorization: 'single-purpose',
1004
+ usage: 'Reserved for grouping data',
1005
+ team: 'Database',
1006
+ status: 'published'
1007
+ },
926
1008
  'group-selection': {
927
1009
  keywords: ['group-selection', 'groupselection', 'icon', 'icon-lab', 'group', 'selection', 'layers'],
928
1010
  componentName: 'GroupSelectionIcon',
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::c1667f19a52f53c9d1c4218e2a58de86>>
6
+ * @codegen <<SignedSource::5b69fe1c13c3b715214c07768484a6fc>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
 
@@ -174,6 +174,78 @@ const metadata = {
174
174
  team: 'Whiteboards',
175
175
  status: 'published'
176
176
  },
177
+ 'arrow-curved-down-left': {
178
+ keywords: ['arrow-curved-down-left', 'arrowcurveddownleft', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
179
+ componentName: 'ArrowCurvedDownLeftIcon',
180
+ package: '@atlaskit/icon-lab/core/arrow-curved-down-left',
181
+ type: 'core',
182
+ categorization: 'multi-purpose',
183
+ team: 'Design System Team',
184
+ status: 'published'
185
+ },
186
+ 'arrow-curved-down-right': {
187
+ keywords: ['arrow-curved-down-right', 'arrowcurveddownright', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
188
+ componentName: 'ArrowCurvedDownRightIcon',
189
+ package: '@atlaskit/icon-lab/core/arrow-curved-down-right',
190
+ type: 'core',
191
+ categorization: 'multi-purpose',
192
+ team: 'Design System Team',
193
+ status: 'published'
194
+ },
195
+ 'arrow-curved-left-down': {
196
+ keywords: ['arrow-curved-left-down', 'arrowcurvedleftdown', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
197
+ componentName: 'ArrowCurvedLeftDownIcon',
198
+ package: '@atlaskit/icon-lab/core/arrow-curved-left-down',
199
+ type: 'core',
200
+ categorization: 'multi-purpose',
201
+ team: 'Design System Team',
202
+ status: 'published'
203
+ },
204
+ 'arrow-curved-left-up': {
205
+ keywords: ['arrow-curved-left-up', 'arrowcurvedleftup', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
206
+ componentName: 'ArrowCurvedLeftUpIcon',
207
+ package: '@atlaskit/icon-lab/core/arrow-curved-left-up',
208
+ type: 'core',
209
+ categorization: 'multi-purpose',
210
+ team: 'Design System Team',
211
+ status: 'published'
212
+ },
213
+ 'arrow-curved-right-down': {
214
+ keywords: ['arrow-curved-right-down', 'arrowcurvedrightdown', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
215
+ componentName: 'ArrowCurvedRightDownIcon',
216
+ package: '@atlaskit/icon-lab/core/arrow-curved-right-down',
217
+ type: 'core',
218
+ categorization: 'multi-purpose',
219
+ team: 'Design System Team',
220
+ status: 'published'
221
+ },
222
+ 'arrow-curved-right-up': {
223
+ keywords: ['arrow-curved-right-up', 'arrowcurvedrightup', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
224
+ componentName: 'ArrowCurvedRightUpIcon',
225
+ package: '@atlaskit/icon-lab/core/arrow-curved-right-up',
226
+ type: 'core',
227
+ categorization: 'multi-purpose',
228
+ team: 'Design System Team',
229
+ status: 'published'
230
+ },
231
+ 'arrow-curved-up-left': {
232
+ keywords: ['arrow-curved-up-left', 'arrowcurvedupleft', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
233
+ componentName: 'ArrowCurvedUpLeftIcon',
234
+ package: '@atlaskit/icon-lab/core/arrow-curved-up-left',
235
+ type: 'core',
236
+ categorization: 'multi-purpose',
237
+ team: 'Design System Team',
238
+ status: 'published'
239
+ },
240
+ 'arrow-curved-up-right': {
241
+ keywords: ['arrow-curved-up-right', 'arrowcurvedupright', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
242
+ componentName: 'ArrowCurvedUpRightIcon',
243
+ package: '@atlaskit/icon-lab/core/arrow-curved-up-right',
244
+ type: 'core',
245
+ categorization: 'multi-purpose',
246
+ team: 'Design System Team',
247
+ status: 'published'
248
+ },
177
249
  'arrows-diagonal-up-right-down-left': {
178
250
  keywords: ['arrows-diagonal-up-right-down-left', 'arrowsdiagonaluprightdownleft', 'icon', 'icon-lab', 'Arrows', 'Switch', 'Space', 'Swap', 'crossflow'],
179
251
  componentName: 'ArrowsDiagonalUpRightDownLeftIcon',
@@ -917,6 +989,16 @@ const metadata = {
917
989
  team: 'Loom',
918
990
  status: 'published'
919
991
  },
992
+ group: {
993
+ keywords: ['group', 'icon', 'icon-lab', 'group', 'grouping', 'stack', 'related data'],
994
+ componentName: 'GroupIcon',
995
+ package: '@atlaskit/icon-lab/core/group',
996
+ type: 'core',
997
+ categorization: 'single-purpose',
998
+ usage: 'Reserved for grouping data',
999
+ team: 'Database',
1000
+ status: 'published'
1001
+ },
920
1002
  'group-selection': {
921
1003
  keywords: ['group-selection', 'groupselection', 'icon', 'icon-lab', 'group', 'selection', 'layers'],
922
1004
  componentName: 'GroupSelectionIcon',
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::c1667f19a52f53c9d1c4218e2a58de86>>
6
+ * @codegen <<SignedSource::5b69fe1c13c3b715214c07768484a6fc>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
 
@@ -174,6 +174,78 @@ var metadata = {
174
174
  team: 'Whiteboards',
175
175
  status: 'published'
176
176
  },
177
+ 'arrow-curved-down-left': {
178
+ keywords: ['arrow-curved-down-left', 'arrowcurveddownleft', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
179
+ componentName: 'ArrowCurvedDownLeftIcon',
180
+ package: '@atlaskit/icon-lab/core/arrow-curved-down-left',
181
+ type: 'core',
182
+ categorization: 'multi-purpose',
183
+ team: 'Design System Team',
184
+ status: 'published'
185
+ },
186
+ 'arrow-curved-down-right': {
187
+ keywords: ['arrow-curved-down-right', 'arrowcurveddownright', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
188
+ componentName: 'ArrowCurvedDownRightIcon',
189
+ package: '@atlaskit/icon-lab/core/arrow-curved-down-right',
190
+ type: 'core',
191
+ categorization: 'multi-purpose',
192
+ team: 'Design System Team',
193
+ status: 'published'
194
+ },
195
+ 'arrow-curved-left-down': {
196
+ keywords: ['arrow-curved-left-down', 'arrowcurvedleftdown', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
197
+ componentName: 'ArrowCurvedLeftDownIcon',
198
+ package: '@atlaskit/icon-lab/core/arrow-curved-left-down',
199
+ type: 'core',
200
+ categorization: 'multi-purpose',
201
+ team: 'Design System Team',
202
+ status: 'published'
203
+ },
204
+ 'arrow-curved-left-up': {
205
+ keywords: ['arrow-curved-left-up', 'arrowcurvedleftup', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
206
+ componentName: 'ArrowCurvedLeftUpIcon',
207
+ package: '@atlaskit/icon-lab/core/arrow-curved-left-up',
208
+ type: 'core',
209
+ categorization: 'multi-purpose',
210
+ team: 'Design System Team',
211
+ status: 'published'
212
+ },
213
+ 'arrow-curved-right-down': {
214
+ keywords: ['arrow-curved-right-down', 'arrowcurvedrightdown', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
215
+ componentName: 'ArrowCurvedRightDownIcon',
216
+ package: '@atlaskit/icon-lab/core/arrow-curved-right-down',
217
+ type: 'core',
218
+ categorization: 'multi-purpose',
219
+ team: 'Design System Team',
220
+ status: 'published'
221
+ },
222
+ 'arrow-curved-right-up': {
223
+ keywords: ['arrow-curved-right-up', 'arrowcurvedrightup', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
224
+ componentName: 'ArrowCurvedRightUpIcon',
225
+ package: '@atlaskit/icon-lab/core/arrow-curved-right-up',
226
+ type: 'core',
227
+ categorization: 'multi-purpose',
228
+ team: 'Design System Team',
229
+ status: 'published'
230
+ },
231
+ 'arrow-curved-up-left': {
232
+ keywords: ['arrow-curved-up-left', 'arrowcurvedupleft', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
233
+ componentName: 'ArrowCurvedUpLeftIcon',
234
+ package: '@atlaskit/icon-lab/core/arrow-curved-up-left',
235
+ type: 'core',
236
+ categorization: 'multi-purpose',
237
+ team: 'Design System Team',
238
+ status: 'published'
239
+ },
240
+ 'arrow-curved-up-right': {
241
+ keywords: ['arrow-curved-up-right', 'arrowcurvedupright', 'icon', 'icon-lab', 'arrow', 'curved', 'turn', 'rotate', 'corner'],
242
+ componentName: 'ArrowCurvedUpRightIcon',
243
+ package: '@atlaskit/icon-lab/core/arrow-curved-up-right',
244
+ type: 'core',
245
+ categorization: 'multi-purpose',
246
+ team: 'Design System Team',
247
+ status: 'published'
248
+ },
177
249
  'arrows-diagonal-up-right-down-left': {
178
250
  keywords: ['arrows-diagonal-up-right-down-left', 'arrowsdiagonaluprightdownleft', 'icon', 'icon-lab', 'Arrows', 'Switch', 'Space', 'Swap', 'crossflow'],
179
251
  componentName: 'ArrowsDiagonalUpRightDownLeftIcon',
@@ -917,6 +989,16 @@ var metadata = {
917
989
  team: 'Loom',
918
990
  status: 'published'
919
991
  },
992
+ group: {
993
+ keywords: ['group', 'icon', 'icon-lab', 'group', 'grouping', 'stack', 'related data'],
994
+ componentName: 'GroupIcon',
995
+ package: '@atlaskit/icon-lab/core/group',
996
+ type: 'core',
997
+ categorization: 'single-purpose',
998
+ usage: 'Reserved for grouping data',
999
+ team: 'Database',
1000
+ status: 'published'
1001
+ },
920
1002
  'group-selection': {
921
1003
  keywords: ['group-selection', 'groupselection', 'icon', 'icon-lab', 'group', 'selection', 'layers'],
922
1004
  componentName: 'GroupSelectionIcon',
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::c1667f19a52f53c9d1c4218e2a58de86>>
6
+ * @codegen <<SignedSource::5b69fe1c13c3b715214c07768484a6fc>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
  interface metadata {
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::c1667f19a52f53c9d1c4218e2a58de86>>
6
+ * @codegen <<SignedSource::5b69fe1c13c3b715214c07768484a6fc>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
  interface metadata {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/icon-lab",
3
- "version": "5.5.0",
3
+ "version": "5.6.0",
4
4
  "description": "An icon package for public icon contributions",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M13.5 6a3 3 0 0 1-3 3H3.56l3.22-3.22-1.06-1.06-4.5 4.5a.75.75 0 0 0 0 1.06l4.5 4.5 1.06-1.06-3.22-3.22h6.94A4.5 4.5 0 0 0 15 6V1h-1.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M2.5 6a3 3 0 0 0 3 3h6.94L9.22 5.78l1.06-1.06 4.5 4.5a.75.75 0 0 1 0 1.06l-4.5 4.5-1.06-1.06 3.22-3.22H5.5A4.5 4.5 0 0 1 1 6V1h1.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M10 2.5a3 3 0 0 0-3 3v6.94l3.22-3.22 1.06 1.06-4.5 4.5a.75.75 0 0 1-1.06 0l-4.5-4.5 1.06-1.06 3.22 3.22V5.5A4.5 4.5 0 0 1 10 1h5v1.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M10 13.5a3 3 0 0 1-3-3V3.56l3.22 3.22 1.06-1.06-4.5-4.5a.75.75 0 0 0-1.06 0l-4.5 4.5 1.06 1.06L5.5 3.56v6.94A4.5 4.5 0 0 0 10 15h5v-1.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M6 2.5a3 3 0 0 1 3 3v6.94L5.78 9.22l-1.06 1.06 4.5 4.5a.75.75 0 0 0 1.06 0l4.5-4.5-1.06-1.06-3.22 3.22V5.5A4.5 4.5 0 0 0 6 1H1v1.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M6 13.5a3 3 0 0 0 3-3V3.56L5.78 6.78 4.72 5.72l4.5-4.5a.75.75 0 0 1 1.06 0l4.5 4.5-1.06 1.06-3.22-3.22v6.94A4.5 4.5 0 0 1 6 15H1v-1.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M13.5 10a3 3 0 0 0-3-3H3.56l3.22 3.22-1.06 1.06-4.5-4.5a.75.75 0 0 1 0-1.06l4.5-4.5 1.06 1.06L3.56 5.5h6.94A4.5 4.5 0 0 1 15 10v5h-1.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M2.5 10a3 3 0 0 1 3-3h6.94l-3.22 3.22 1.06 1.06 4.5-4.5a.75.75 0 0 0 0-1.06l-4.5-4.5-1.06 1.06 3.22 3.22H5.5A4.5 4.5 0 0 0 1 10v5h1.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M7.164 1.183a2 2 0 0 1 1.672 0l5.727 2.635a.75.75 0 0 1 0 1.363L8.837 7.816a2 2 0 0 1-1.672 0L1.437 5.18a.75.75 0 0 1 0-1.363zM8.21 2.546a.5.5 0 0 0-.418 0L3.545 4.5 7.79 6.453a.5.5 0 0 0 .418 0l4.245-1.954z"/><path fill="currentcolor" d="M14.945 8.428 8.854 11.3a2 2 0 0 1-1.708 0L1.055 8.428l.64-1.358 6.092 2.874a.5.5 0 0 0 .426 0l6.092-2.874z"/><path fill="currentcolor" d="M14.945 11.928 8.854 14.8a2 2 0 0 1-1.708 0l-6.091-2.873.64-1.358 6.092 2.874a.5.5 0 0 0 .426 0l6.092-2.874z"/></svg>