@conveyorhq/arrow-ds 1.164.0 → 1.165.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/package.json +1 -1
- package/public/components/Icon/Icon.d.ts +1 -0
- package/public/components/Icon/Icon.js +2 -0
- package/public/components/Icon/svg/BrandConfluenceIcon.d.ts +3 -0
- package/public/components/Icon/svg/BrandConfluenceIcon.js +13 -0
- package/public/components/Icon/svg/index.d.ts +1 -0
- package/public/components/Icon/svg/index.js +1 -0
- package/src/components/Icon/Icon.tsx +3 -0
- package/src/components/Icon/svg/BrandConfluenceIcon.tsx +18 -0
- package/src/components/Icon/svg/index.ts +1 -0
package/package.json
CHANGED
|
@@ -6,6 +6,7 @@ export declare enum CUSTOM_ICON_TYPE {
|
|
|
6
6
|
ARROW_TO_LEFT = "arrow-to-left",
|
|
7
7
|
ARROW_TO_RIGHT = "arrow-to-right",
|
|
8
8
|
BADGE_CHECK = "badge-check",
|
|
9
|
+
BRAND_CONFLUENCE = "brand-confluence",
|
|
9
10
|
COMMENT_ALT_CHECK = "comment-alt-check",
|
|
10
11
|
CONVEYOR_LOGO = "conveyor-logo",
|
|
11
12
|
DIALOG_CHECK = "dialog-check",
|
|
@@ -242,6 +242,7 @@ var CUSTOM_ICON_TYPE;
|
|
|
242
242
|
CUSTOM_ICON_TYPE["ARROW_TO_LEFT"] = "arrow-to-left";
|
|
243
243
|
CUSTOM_ICON_TYPE["ARROW_TO_RIGHT"] = "arrow-to-right";
|
|
244
244
|
CUSTOM_ICON_TYPE["BADGE_CHECK"] = "badge-check";
|
|
245
|
+
CUSTOM_ICON_TYPE["BRAND_CONFLUENCE"] = "brand-confluence";
|
|
245
246
|
CUSTOM_ICON_TYPE["COMMENT_ALT_CHECK"] = "comment-alt-check";
|
|
246
247
|
CUSTOM_ICON_TYPE["CONVEYOR_LOGO"] = "conveyor-logo";
|
|
247
248
|
CUSTOM_ICON_TYPE["DIALOG_CHECK"] = "dialog-check";
|
|
@@ -261,6 +262,7 @@ const CustomIcons = {
|
|
|
261
262
|
[CUSTOM_ICON_TYPE.ARROW_TO_LEFT]: svg_1.ArrowToLeft,
|
|
262
263
|
[CUSTOM_ICON_TYPE.ARROW_TO_RIGHT]: svg_1.ArrowToRight,
|
|
263
264
|
[CUSTOM_ICON_TYPE.BADGE_CHECK]: svg_1.BadgeCheck,
|
|
265
|
+
[CUSTOM_ICON_TYPE.BRAND_CONFLUENCE]: svg_1.BrandConfluenceIcon,
|
|
264
266
|
[CUSTOM_ICON_TYPE.COMMENT_ALT_CHECK]: svg_1.CommentAltCheck,
|
|
265
267
|
[CUSTOM_ICON_TYPE.CONVEYOR_LOGO]: svg_1.ConveyorLogoIcon,
|
|
266
268
|
[CUSTOM_ICON_TYPE.DIALOG_CHECK]: svg_1.DialogCheck,
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.BrandConfluenceIcon = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
const BrandConfluenceIcon = (props) => {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "32", height: "32", viewBox: "0 0 512 512", fill: "none", ...props },
|
|
11
|
+
react_1.default.createElement("path", { fill: "currentColor", d: "M2.3 412.2c-4.5 7.6-2.1 17.5 5.5 22.2l105.9 65.2c7.7 4.7 17.7 2.4 22.4-5.3 0-.1 .1-.2 .1-.2 67.1-112.2 80.5-95.9 280.9-.7 8.1 3.9 17.8 .4 21.7-7.7 .1-.1 .1-.3 .2-.4l50.4-114.1c3.6-8.1-.1-17.6-8.1-21.3-22.2-10.4-66.2-31.2-105.9-50.3C127.5 179 44.6 345.3 2.3 412.2zm507.4-312.1c4.5-7.6 2.1-17.5-5.5-22.2L398.4 12.8c-7.5-5-17.6-3.1-22.6 4.4-.2 .3-.4 .6-.6 1-67.3 112.6-81.1 95.6-280.6 .9-8.1-3.9-17.8-.4-21.7 7.7-.1 .1-.1 .3-.2 .4L22.2 141.3c-3.6 8.1 .1 17.6 8.1 21.3 22.2 10.4 66.3 31.2 106 50.4 248 120 330.8-45.4 373.4-112.9z" })));
|
|
12
|
+
};
|
|
13
|
+
exports.BrandConfluenceIcon = BrandConfluenceIcon;
|
|
@@ -2,6 +2,7 @@ export * from "./ArrowToBottom";
|
|
|
2
2
|
export * from "./ArrowToLeft";
|
|
3
3
|
export * from "./ArrowToRight";
|
|
4
4
|
export * from "./BadgeCheck";
|
|
5
|
+
export * from "./BrandConfluenceIcon";
|
|
5
6
|
export * from "./CommentAltCheck";
|
|
6
7
|
export * from "./ConveyorLogoIcon";
|
|
7
8
|
export * from "./DialogCheck";
|
|
@@ -18,6 +18,7 @@ __exportStar(require("./ArrowToBottom"), exports);
|
|
|
18
18
|
__exportStar(require("./ArrowToLeft"), exports);
|
|
19
19
|
__exportStar(require("./ArrowToRight"), exports);
|
|
20
20
|
__exportStar(require("./BadgeCheck"), exports);
|
|
21
|
+
__exportStar(require("./BrandConfluenceIcon"), exports);
|
|
21
22
|
__exportStar(require("./CommentAltCheck"), exports);
|
|
22
23
|
__exportStar(require("./ConveyorLogoIcon"), exports);
|
|
23
24
|
__exportStar(require("./DialogCheck"), exports);
|
|
@@ -211,6 +211,7 @@ import {
|
|
|
211
211
|
ArrowToLeft,
|
|
212
212
|
ArrowToRight,
|
|
213
213
|
BadgeCheck,
|
|
214
|
+
BrandConfluenceIcon,
|
|
214
215
|
CommentAltCheck,
|
|
215
216
|
ConveyorLogoIcon,
|
|
216
217
|
DialogCheck,
|
|
@@ -439,6 +440,7 @@ export enum CUSTOM_ICON_TYPE {
|
|
|
439
440
|
ARROW_TO_LEFT = "arrow-to-left",
|
|
440
441
|
ARROW_TO_RIGHT = "arrow-to-right",
|
|
441
442
|
BADGE_CHECK = "badge-check",
|
|
443
|
+
BRAND_CONFLUENCE = "brand-confluence",
|
|
442
444
|
COMMENT_ALT_CHECK = "comment-alt-check",
|
|
443
445
|
CONVEYOR_LOGO = "conveyor-logo",
|
|
444
446
|
DIALOG_CHECK = "dialog-check",
|
|
@@ -463,6 +465,7 @@ const CustomIcons: CustomIconPaths = {
|
|
|
463
465
|
[CUSTOM_ICON_TYPE.ARROW_TO_LEFT]: ArrowToLeft,
|
|
464
466
|
[CUSTOM_ICON_TYPE.ARROW_TO_RIGHT]: ArrowToRight,
|
|
465
467
|
[CUSTOM_ICON_TYPE.BADGE_CHECK]: BadgeCheck,
|
|
468
|
+
[CUSTOM_ICON_TYPE.BRAND_CONFLUENCE]: BrandConfluenceIcon,
|
|
466
469
|
[CUSTOM_ICON_TYPE.COMMENT_ALT_CHECK]: CommentAltCheck,
|
|
467
470
|
[CUSTOM_ICON_TYPE.CONVEYOR_LOGO]: ConveyorLogoIcon,
|
|
468
471
|
[CUSTOM_ICON_TYPE.DIALOG_CHECK]: DialogCheck,
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg, SvgProps } from "../../Svg";
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
|
|
6
|
+
* License - https://fontawesome.com/license/free
|
|
7
|
+
* Copyright 2024 Fonticons, Inc.
|
|
8
|
+
*/
|
|
9
|
+
export const BrandConfluenceIcon = (props: SvgProps) => {
|
|
10
|
+
return (
|
|
11
|
+
<Svg width="32" height="32" viewBox="0 0 512 512" fill="none" {...props}>
|
|
12
|
+
<path
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
d="M2.3 412.2c-4.5 7.6-2.1 17.5 5.5 22.2l105.9 65.2c7.7 4.7 17.7 2.4 22.4-5.3 0-.1 .1-.2 .1-.2 67.1-112.2 80.5-95.9 280.9-.7 8.1 3.9 17.8 .4 21.7-7.7 .1-.1 .1-.3 .2-.4l50.4-114.1c3.6-8.1-.1-17.6-8.1-21.3-22.2-10.4-66.2-31.2-105.9-50.3C127.5 179 44.6 345.3 2.3 412.2zm507.4-312.1c4.5-7.6 2.1-17.5-5.5-22.2L398.4 12.8c-7.5-5-17.6-3.1-22.6 4.4-.2 .3-.4 .6-.6 1-67.3 112.6-81.1 95.6-280.6 .9-8.1-3.9-17.8-.4-21.7 7.7-.1 .1-.1 .3-.2 .4L22.2 141.3c-3.6 8.1 .1 17.6 8.1 21.3 22.2 10.4 66.3 31.2 106 50.4 248 120 330.8-45.4 373.4-112.9z"
|
|
15
|
+
/>
|
|
16
|
+
</Svg>
|
|
17
|
+
);
|
|
18
|
+
};
|
|
@@ -2,6 +2,7 @@ export * from "./ArrowToBottom";
|
|
|
2
2
|
export * from "./ArrowToLeft";
|
|
3
3
|
export * from "./ArrowToRight";
|
|
4
4
|
export * from "./BadgeCheck";
|
|
5
|
+
export * from "./BrandConfluenceIcon";
|
|
5
6
|
export * from "./CommentAltCheck";
|
|
6
7
|
export * from "./ConveyorLogoIcon";
|
|
7
8
|
export * from "./DialogCheck";
|