@conveyorhq/arrow-ds 1.25.0 → 1.26.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/CommentAltCheck.d.ts +2 -0
- package/public/components/Icon/svg/CommentAltCheck.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/CommentAltCheck.tsx +13 -0
- package/src/components/Icon/svg/index.ts +1 -0
package/package.json
CHANGED
|
@@ -3,6 +3,7 @@ import { FlipProp } from "@fortawesome/fontawesome-svg-core";
|
|
|
3
3
|
import { STATUS_VARIANT } from "../../types";
|
|
4
4
|
export declare enum CUSTOM_ICON_TYPE {
|
|
5
5
|
ARROW_TO_BOTTOM = "arrow-to-bottom",
|
|
6
|
+
COMMENT_ALT_CHECK = "comment-alt-check",
|
|
6
7
|
DIALOG_CHECK = "dialog-check",
|
|
7
8
|
SCROLL = "scroll",
|
|
8
9
|
SPARKLE = "sparkle",
|
|
@@ -146,6 +146,7 @@ fontawesome_svg_core_1.library.add(faArchive_1.faArchive, faArrowDown_1.faArrowD
|
|
|
146
146
|
var CUSTOM_ICON_TYPE;
|
|
147
147
|
(function (CUSTOM_ICON_TYPE) {
|
|
148
148
|
CUSTOM_ICON_TYPE["ARROW_TO_BOTTOM"] = "arrow-to-bottom";
|
|
149
|
+
CUSTOM_ICON_TYPE["COMMENT_ALT_CHECK"] = "comment-alt-check";
|
|
149
150
|
CUSTOM_ICON_TYPE["DIALOG_CHECK"] = "dialog-check";
|
|
150
151
|
CUSTOM_ICON_TYPE["SCROLL"] = "scroll";
|
|
151
152
|
CUSTOM_ICON_TYPE["SPARKLE"] = "sparkle";
|
|
@@ -154,6 +155,7 @@ var CUSTOM_ICON_TYPE;
|
|
|
154
155
|
})(CUSTOM_ICON_TYPE = exports.CUSTOM_ICON_TYPE || (exports.CUSTOM_ICON_TYPE = {}));
|
|
155
156
|
const CustomIcons = {
|
|
156
157
|
[CUSTOM_ICON_TYPE.ARROW_TO_BOTTOM]: svg_1.ArrowToBottom,
|
|
158
|
+
[CUSTOM_ICON_TYPE.COMMENT_ALT_CHECK]: svg_1.CommentAltCheck,
|
|
157
159
|
[CUSTOM_ICON_TYPE.DIALOG_CHECK]: svg_1.DialogCheck,
|
|
158
160
|
[CUSTOM_ICON_TYPE.SCROLL]: svg_1.Scroll,
|
|
159
161
|
[CUSTOM_ICON_TYPE.SPARKLE]: svg_1.Sparkle,
|
|
@@ -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.CommentAltCheck = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
const CommentAltCheck = (props) => {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, Object.assign({ width: "30", height: "32", viewBox: "0 0 30 32", fill: "none" }, props),
|
|
11
|
+
react_1.default.createElement("path", { d: "M26.133 1.067h-22.4c-2.1 0-3.733 1.692-3.733 3.733v16.8c0 2.1 1.633 3.733 3.733 3.733h5.6v4.9c0 0.583 0.642 0.933 1.108 0.583l7.292-5.483h8.4c2.042 0 3.733-1.633 3.733-3.733v-16.8c0-2.042-1.692-3.733-3.733-3.733zM21.583 10.633l-7.642 7.583c-0.292 0.292-0.7 0.292-0.933 0l-4.433-4.433c-0.233-0.233-0.233-0.642 0-0.933l1.517-1.517c0.292-0.233 0.7-0.233 0.933 0.058l2.45 2.45 5.658-5.6c0.292-0.292 0.7-0.292 0.933 0l1.517 1.517c0.233 0.233 0.233 0.642 0 0.875z", fill: "currentColor" })));
|
|
12
|
+
};
|
|
13
|
+
exports.CommentAltCheck = CommentAltCheck;
|
|
@@ -11,6 +11,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
11
11
|
};
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
13
|
__exportStar(require("./ArrowToBottom"), exports);
|
|
14
|
+
__exportStar(require("./CommentAltCheck"), exports);
|
|
14
15
|
__exportStar(require("./DialogCheck"), exports);
|
|
15
16
|
__exportStar(require("./Scroll"), exports);
|
|
16
17
|
__exportStar(require("./Sparkle"), exports);
|
|
@@ -120,6 +120,7 @@ import { faUserFriends } from "@fortawesome/free-solid-svg-icons/faUserFriends";
|
|
|
120
120
|
// Custom icon SVGs
|
|
121
121
|
import {
|
|
122
122
|
ArrowToBottom,
|
|
123
|
+
CommentAltCheck,
|
|
123
124
|
DialogCheck,
|
|
124
125
|
Scroll,
|
|
125
126
|
Sparkle,
|
|
@@ -249,6 +250,7 @@ library.add(
|
|
|
249
250
|
|
|
250
251
|
export enum CUSTOM_ICON_TYPE {
|
|
251
252
|
ARROW_TO_BOTTOM = "arrow-to-bottom",
|
|
253
|
+
COMMENT_ALT_CHECK = "comment-alt-check",
|
|
252
254
|
DIALOG_CHECK = "dialog-check",
|
|
253
255
|
SCROLL = "scroll",
|
|
254
256
|
SPARKLE = "sparkle",
|
|
@@ -262,6 +264,7 @@ type CustomIconPaths = Record<
|
|
|
262
264
|
>;
|
|
263
265
|
const CustomIcons: CustomIconPaths = {
|
|
264
266
|
[CUSTOM_ICON_TYPE.ARROW_TO_BOTTOM]: ArrowToBottom,
|
|
267
|
+
[CUSTOM_ICON_TYPE.COMMENT_ALT_CHECK]: CommentAltCheck,
|
|
265
268
|
[CUSTOM_ICON_TYPE.DIALOG_CHECK]: DialogCheck,
|
|
266
269
|
[CUSTOM_ICON_TYPE.SCROLL]: Scroll,
|
|
267
270
|
[CUSTOM_ICON_TYPE.SPARKLE]: Sparkle,
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg, SvgProps } from "../../Svg";
|
|
3
|
+
|
|
4
|
+
export const CommentAltCheck = (props: SvgProps) => {
|
|
5
|
+
return (
|
|
6
|
+
<Svg width="30" height="32" viewBox="0 0 30 32" fill="none" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M26.133 1.067h-22.4c-2.1 0-3.733 1.692-3.733 3.733v16.8c0 2.1 1.633 3.733 3.733 3.733h5.6v4.9c0 0.583 0.642 0.933 1.108 0.583l7.292-5.483h8.4c2.042 0 3.733-1.633 3.733-3.733v-16.8c0-2.042-1.692-3.733-3.733-3.733zM21.583 10.633l-7.642 7.583c-0.292 0.292-0.7 0.292-0.933 0l-4.433-4.433c-0.233-0.233-0.233-0.642 0-0.933l1.517-1.517c0.292-0.233 0.7-0.233 0.933 0.058l2.45 2.45 5.658-5.6c0.292-0.292 0.7-0.292 0.933 0l1.517 1.517c0.233 0.233 0.233 0.642 0 0.875z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</Svg>
|
|
12
|
+
);
|
|
13
|
+
};
|