@activecollab/components 2.0.329 → 2.0.331
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/dist/cjs/components/Icons/collection/ConnectionIcon.js +10 -4
- package/dist/cjs/components/Icons/collection/ConnectionIcon.js.map +1 -1
- package/dist/cjs/components/Icons/collection/RoundedRectangleIcon.js +5 -2
- package/dist/cjs/components/Icons/collection/RoundedRectangleIcon.js.map +1 -1
- package/dist/cjs/components/Icons/collection/StickyIcon.js +8 -2
- package/dist/cjs/components/Icons/collection/StickyIcon.js.map +1 -1
- package/dist/cjs/components/Icons/collection/TriangleIcon.js +5 -2
- package/dist/cjs/components/Icons/collection/TriangleIcon.js.map +1 -1
- package/dist/cjs/components/Icons/collection/index.js +28 -0
- package/dist/cjs/components/Icons/collection/index.js.map +1 -1
- package/dist/esm/components/Icons/collection/ConnectionIcon.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/ConnectionIcon.js +10 -4
- package/dist/esm/components/Icons/collection/ConnectionIcon.js.map +1 -1
- package/dist/esm/components/Icons/collection/RoundedRectangleIcon.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/RoundedRectangleIcon.js +5 -2
- package/dist/esm/components/Icons/collection/RoundedRectangleIcon.js.map +1 -1
- package/dist/esm/components/Icons/collection/StickyIcon.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/StickyIcon.js +8 -2
- package/dist/esm/components/Icons/collection/StickyIcon.js.map +1 -1
- package/dist/esm/components/Icons/collection/TriangleIcon.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/TriangleIcon.js +5 -2
- package/dist/esm/components/Icons/collection/TriangleIcon.js.map +1 -1
- package/dist/esm/components/Icons/collection/index.d.ts +4 -0
- package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
- package/dist/esm/components/Icons/collection/index.js +4 -0
- package/dist/esm/components/Icons/collection/index.js.map +1 -1
- package/dist/index.js +605 -412
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -52,17 +52,23 @@ var ConnectionIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref)
|
|
|
52
52
|
}, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
|
|
53
53
|
gradient: gradient
|
|
54
54
|
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
55
|
-
stroke: "
|
|
55
|
+
stroke: "var(--color-theme-600)",
|
|
56
56
|
strokeLinecap: "round",
|
|
57
57
|
strokeLinejoin: "round",
|
|
58
58
|
strokeWidth: 2,
|
|
59
|
-
d: "m15 14 5-5-5-5"
|
|
59
|
+
d: "m15 14 5-5-5-5",
|
|
60
|
+
style: {
|
|
61
|
+
fill: "none"
|
|
62
|
+
}
|
|
60
63
|
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
61
|
-
stroke: "
|
|
64
|
+
stroke: "var(--color-theme-600)",
|
|
62
65
|
strokeLinecap: "round",
|
|
63
66
|
strokeLinejoin: "round",
|
|
64
67
|
strokeWidth: 2,
|
|
65
|
-
d: "M4 20v-7a4 4 0 0 1 4-4h12"
|
|
68
|
+
d: "M4 20v-7a4 4 0 0 1 4-4h12",
|
|
69
|
+
style: {
|
|
70
|
+
fill: "none"
|
|
71
|
+
}
|
|
66
72
|
}));
|
|
67
73
|
});
|
|
68
74
|
ConnectionIcon.displayName = "ConnectionIcon";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectionIcon.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","ConnectionIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","focusable","GradientDefs","stroke","strokeLinecap","strokeLinejoin","strokeWidth","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/ConnectionIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component ConnectionIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <ConnectionIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <ConnectionIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst ConnectionIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"ConnectionIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n stroke=\"
|
|
1
|
+
{"version":3,"file":"ConnectionIcon.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","ConnectionIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","focusable","GradientDefs","stroke","strokeLinecap","strokeLinejoin","strokeWidth","d","style","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/ConnectionIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component ConnectionIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <ConnectionIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <ConnectionIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst ConnectionIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"ConnectionIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n stroke=\"var(--color-theme-600)\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n d=\"m15 14 5-5-5-5\"\n style={{\n fill: \"none\",\n }}\n />\n <path\n stroke=\"var(--color-theme-600)\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n d=\"M4 20v-7a4 4 0 0 1 4-4h12\"\n style={{\n fill: \"none\",\n }}\n />\n </svg>\n )\n);\nConnectionIcon.displayName = \"ConnectionIcon\";\nexport default ConnectionIcon;\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -52,11 +52,14 @@ var RoundedRectangleIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref
|
|
|
52
52
|
}, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
|
|
53
53
|
gradient: gradient
|
|
54
54
|
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
55
|
-
stroke: "
|
|
55
|
+
stroke: "var(--color-theme-600)",
|
|
56
56
|
strokeLinecap: "round",
|
|
57
57
|
strokeLinejoin: "round",
|
|
58
58
|
strokeWidth: 2,
|
|
59
|
-
d: "M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"
|
|
59
|
+
d: "M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2",
|
|
60
|
+
style: {
|
|
61
|
+
fill: "none"
|
|
62
|
+
}
|
|
60
63
|
}));
|
|
61
64
|
});
|
|
62
65
|
RoundedRectangleIcon.displayName = "RoundedRectangleIcon";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RoundedRectangleIcon.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","RoundedRectangleIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","focusable","GradientDefs","stroke","strokeLinecap","strokeLinejoin","strokeWidth","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/RoundedRectangleIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component RoundedRectangleIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <RoundedRectangleIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <RoundedRectangleIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst RoundedRectangleIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"RoundedRectangleIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n stroke=\"
|
|
1
|
+
{"version":3,"file":"RoundedRectangleIcon.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","RoundedRectangleIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","focusable","GradientDefs","stroke","strokeLinecap","strokeLinejoin","strokeWidth","d","style","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/RoundedRectangleIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component RoundedRectangleIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <RoundedRectangleIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <RoundedRectangleIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst RoundedRectangleIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"RoundedRectangleIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n stroke=\"var(--color-theme-600)\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n d=\"M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2\"\n style={{\n fill: \"none\",\n }}\n />\n </svg>\n )\n);\nRoundedRectangleIcon.displayName = \"RoundedRectangleIcon\";\nexport default RoundedRectangleIcon;\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -52,9 +52,15 @@ var StickyIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
|
|
|
52
52
|
}, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
|
|
53
53
|
gradient: gradient
|
|
54
54
|
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
55
|
-
d: "M3 6.95a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v6.087a4 4 0 0 1-1.161 2.819l-3.884 3.912a4 4 0 0 1-2.84 1.182H7a4 4 0 0 1-4-4z"
|
|
55
|
+
d: "M3 6.95a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v6.087a4 4 0 0 1-1.161 2.819l-3.884 3.912a4 4 0 0 1-2.84 1.182H7a4 4 0 0 1-4-4z",
|
|
56
|
+
style: {
|
|
57
|
+
fill: "#ffcc6b"
|
|
58
|
+
}
|
|
56
59
|
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
57
|
-
d: "M17.031 13.95h2a2 2 0 0 0 1.992-1.818l.008-2.651v2.469q0 .092-.008.182l-.003.866a4 4 0 0 1-1.144 2.789L15.99 19.75a4 4 0 0 1-2.856 1.2H12.03a2 2 0 0 0 2-2v-2a3 3 0 0 1 3.001-3"
|
|
60
|
+
d: "M17.031 13.95h2a2 2 0 0 0 1.992-1.818l.008-2.651v2.469q0 .092-.008.182l-.003.866a4 4 0 0 1-1.144 2.789L15.99 19.75a4 4 0 0 1-2.856 1.2H12.03a2 2 0 0 0 2-2v-2a3 3 0 0 1 3.001-3",
|
|
61
|
+
style: {
|
|
62
|
+
fill: "#c49cb6"
|
|
63
|
+
}
|
|
58
64
|
}));
|
|
59
65
|
});
|
|
60
66
|
StickyIcon.displayName = "StickyIcon";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StickyIcon.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","StickyIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","focusable","GradientDefs","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/StickyIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component StickyIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <StickyIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <StickyIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst StickyIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"StickyIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path
|
|
1
|
+
{"version":3,"file":"StickyIcon.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","StickyIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","focusable","GradientDefs","d","style","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/StickyIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component StickyIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <StickyIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <StickyIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst StickyIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"StickyIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n d=\"M3 6.95a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v6.087a4 4 0 0 1-1.161 2.819l-3.884 3.912a4 4 0 0 1-2.84 1.182H7a4 4 0 0 1-4-4z\"\n style={{\n fill: \"#ffcc6b\",\n }}\n />\n <path\n d=\"M17.031 13.95h2a2 2 0 0 0 1.992-1.818l.008-2.651v2.469q0 .092-.008.182l-.003.866a4 4 0 0 1-1.144 2.789L15.99 19.75a4 4 0 0 1-2.856 1.2H12.03a2 2 0 0 0 2-2v-2a3 3 0 0 1 3.001-3\"\n style={{\n fill: \"#c49cb6\",\n }}\n />\n </svg>\n )\n);\nStickyIcon.displayName = \"StickyIcon\";\nexport default StickyIcon;\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -52,11 +52,14 @@ var TriangleIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
|
|
|
52
52
|
}, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
|
|
53
53
|
gradient: gradient
|
|
54
54
|
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
55
|
-
stroke: "
|
|
55
|
+
stroke: "var(--color-theme-600)",
|
|
56
56
|
strokeLinecap: "round",
|
|
57
57
|
strokeLinejoin: "round",
|
|
58
58
|
strokeWidth: 2,
|
|
59
|
-
d: "M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0"
|
|
59
|
+
d: "M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0",
|
|
60
|
+
style: {
|
|
61
|
+
fill: "none"
|
|
62
|
+
}
|
|
60
63
|
}));
|
|
61
64
|
});
|
|
62
65
|
TriangleIcon.displayName = "TriangleIcon";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TriangleIcon.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","TriangleIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","focusable","GradientDefs","stroke","strokeLinecap","strokeLinejoin","strokeWidth","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/TriangleIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component TriangleIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <TriangleIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <TriangleIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst TriangleIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"TriangleIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n stroke=\"
|
|
1
|
+
{"version":3,"file":"TriangleIcon.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","TriangleIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","focusable","GradientDefs","stroke","strokeLinecap","strokeLinejoin","strokeWidth","d","style","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/TriangleIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component TriangleIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <TriangleIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <TriangleIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst TriangleIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"TriangleIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n stroke=\"var(--color-theme-600)\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n d=\"M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0\"\n style={{\n fill: \"none\",\n }}\n />\n </svg>\n )\n);\nTriangleIcon.displayName = \"TriangleIcon\";\nexport default TriangleIcon;\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -603,6 +603,24 @@ Object.defineProperty(exports, "GiftIcon", {
|
|
|
603
603
|
return _Gift.default;
|
|
604
604
|
}
|
|
605
605
|
});
|
|
606
|
+
Object.defineProperty(exports, "GitBranchIcon", {
|
|
607
|
+
enumerable: true,
|
|
608
|
+
get: function get() {
|
|
609
|
+
return _GitBranch.default;
|
|
610
|
+
}
|
|
611
|
+
});
|
|
612
|
+
Object.defineProperty(exports, "GitCommitIcon", {
|
|
613
|
+
enumerable: true,
|
|
614
|
+
get: function get() {
|
|
615
|
+
return _GitCommit.default;
|
|
616
|
+
}
|
|
617
|
+
});
|
|
618
|
+
Object.defineProperty(exports, "GitPullRequestIcon", {
|
|
619
|
+
enumerable: true,
|
|
620
|
+
get: function get() {
|
|
621
|
+
return _GitPullRequest.default;
|
|
622
|
+
}
|
|
623
|
+
});
|
|
606
624
|
Object.defineProperty(exports, "GroupByIcon", {
|
|
607
625
|
enumerable: true,
|
|
608
626
|
get: function get() {
|
|
@@ -1167,6 +1185,12 @@ Object.defineProperty(exports, "SortSmallIcon", {
|
|
|
1167
1185
|
return _SortSmall.default;
|
|
1168
1186
|
}
|
|
1169
1187
|
});
|
|
1188
|
+
Object.defineProperty(exports, "SourceCodeIcon", {
|
|
1189
|
+
enumerable: true,
|
|
1190
|
+
get: function get() {
|
|
1191
|
+
return _SourceCode.default;
|
|
1192
|
+
}
|
|
1193
|
+
});
|
|
1170
1194
|
Object.defineProperty(exports, "SparkIcon", {
|
|
1171
1195
|
enumerable: true,
|
|
1172
1196
|
get: function get() {
|
|
@@ -1436,6 +1460,9 @@ var _Filter = _interopRequireDefault(require("./Filter"));
|
|
|
1436
1460
|
var _FolderMove = _interopRequireDefault(require("./FolderMove"));
|
|
1437
1461
|
var _FolderOutline = _interopRequireDefault(require("./FolderOutline"));
|
|
1438
1462
|
var _Gift = _interopRequireDefault(require("./Gift"));
|
|
1463
|
+
var _GitBranch = _interopRequireDefault(require("./GitBranch"));
|
|
1464
|
+
var _GitCommit = _interopRequireDefault(require("./GitCommit"));
|
|
1465
|
+
var _GitPullRequest = _interopRequireDefault(require("./GitPullRequest"));
|
|
1439
1466
|
var _GroupBy = _interopRequireDefault(require("./GroupBy"));
|
|
1440
1467
|
var _Hashtag = _interopRequireDefault(require("./Hashtag"));
|
|
1441
1468
|
var _Help = _interopRequireDefault(require("./Help"));
|
|
@@ -1529,6 +1556,7 @@ var _SortGeneral = _interopRequireDefault(require("./SortGeneral"));
|
|
|
1529
1556
|
var _SortIcon = _interopRequireDefault(require("./SortIcon"));
|
|
1530
1557
|
var _SortList = _interopRequireDefault(require("./SortList"));
|
|
1531
1558
|
var _SortSmall = _interopRequireDefault(require("./SortSmall"));
|
|
1559
|
+
var _SourceCode = _interopRequireDefault(require("./SourceCode"));
|
|
1532
1560
|
var _Spark = _interopRequireDefault(require("./Spark"));
|
|
1533
1561
|
var _StarOutline = _interopRequireDefault(require("./StarOutline"));
|
|
1534
1562
|
var _Star = _interopRequireDefault(require("./Star"));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["_Recurring","_interopRequireDefault","require","_AccessLog","_Activity","_AddCrossTiny","_AddCross","_Archive","_ArrowBackMobile","_ArrowCollapseMultiple","_ArrowDownLong","_ArrowDownSmall","_ArrowDown","_ArrowExpandeMultiple","_ArrowLeftBox","_ArrowLeft","_ArrowRefresh","_ArrowRestore","_ArrowRight","_ArrowUpLong","_ArrowUp","_Assign","_Attachment","_BellOffSmall","_BellOff","_Billing","_BudgetAlert","_Bulb","_CalendarAddX","_CalendarImport","_Calendar","_CancelCross","_CaretLeft","_CaretRight","_Chat","_Check","_CheckboxBlankToggler","_CheckboxCircleArrow","_CheckboxCircleBlank","_CheckboxDocuments","_Checkbox","_ChecklistSmall","_Checklist","_CircleIcon","_CircleMultiple","_ClockAdd","_ClockDollar","_ClockSmall","_ClockStopwatchIndicator","_ClockStopwatchSmall","_ClockStopwatch","_Clock","_CloseCircle","_CloseDocument","_CloseSmall","_Close","_CollapsIcon","_CollapseAll","_CollapseExpandSingle","_CompanyAdd","_Company","_Computer","_ConnectionIcon","_Copy","_CrownBlank","_CrownSelected","_DependencySmall","_Dependency","_DescriptionSmall","_Description","_DiscussionAdd","_Discussion","_DollarCheckmarkSmall","_DollarCheckmark","_DollarClockSmall","_DollarClock","_DollarDocumentPlus","_DollarDocument","_DollarOffSmall","_DollarOff","_DollarSmall","_Dollar","_Download","_DrawIcon","_Drive","_Dropbox","_Duplicate","_EditMultiple","_Edit","_Emoji","_EstimatePlus","_Estimates","_ExpandAll","_ExpenseAdd","_ExpensePlus","_EyeOffSmall","_EyeOff","_EyeSmall","_Eye","_Filter","_FolderMove","_FolderOutline","_Gift","_GroupBy","_Hashtag","_Help","_HistoryOfChanges","_Image","_InfoSmall","_Info","_InsertLink","_Integrations","_Invoices","_Labels","_LetterArrowRight","_LetterFast","_Letter","_LockSmall","_Lock","_Marker","_MessageAdd","_MessageEmpty","_MessageSmall","_MessageSolid","_MessageStar","_Message","_Minus","_MobileMenu","_MoneyStack","_Moon","_MoveTrigger","_Move","_MyWork","_NoteAdd","_Note","_Notebook","_NotificationBell","_OpenExpanded","_OpenSheet","_OrderFirst","_PaidSmall","_PauseCircleOutline","_PauseIcon","_PauseSmall","_PencilSmall","_Pencil","_PendingPaymentSmall","_People","_PersonArrowOutCircle","_PersonCircleOff","_PersonCircle","_PersonList","_PersonPlus","_Person","_PinSmall","_Pin","_PlayCircleOutline","_PlayIcon","_PlaySmall","_PriorityLow","_ProjectAdd","_ProjectSearch","_ProjectStar","_ProjectTemplateAdd","_ProjectTemplateConvert","_ProjectTemplate","_Projects","_Puzzle","_RadioBlank","_RadioButton","_Rearange","_RearrangeSmall","_RecurringCheckmarkSmall","_RecurringCheckmark","_RecurringDollar","_RecurringSmall","_ReminderIcon","_Reorder","_ReportTime","_Reports","_Robot","_RocketSmall","_Rocket","_RoundedRectangleIcon","_Save","_SearchLarge","_SearchPlus","_Search","_SendBlank","_SendFilled","_Settings","_Shield","_SortGeneral","_SortIcon","_SortList","_SortSmall","_Spark","_StarOutline","_Star","_Status","_StickyIcon","_Stop","_Stopwatch","_Sun","_SystemSettings","_TaskAdd","_TaskListAdd","_TaskListComplete","_TaskList","_TextIcon","_ThumbUpOutline","_Trash","_TreeDots","_TriangleIcon","_Upload","_ViewDay","_ViewGrid","_ViewList","_ViewTimeline","_VolumeHigh","_WarningTriangleSmall","_WarningTriangle","_Warning","_Workload","e","__esModule","default"],"sources":["../../../../../src/components/Icons/collection/index.tsx"],"sourcesContent":["export { default as RecurringIcon } from \"./Recurring\";\nexport { default as AccessLogIcon } from \"./AccessLog\";\nexport { default as ActivityIcon } from \"./Activity\";\nexport { default as AddCrossTinyIcon } from \"./AddCrossTiny\";\nexport { default as AddCrossIcon } from \"./AddCross\";\nexport { default as ArchiveIcon } from \"./Archive\";\nexport { default as ArrowBackMobileIcon } from \"./ArrowBackMobile\";\nexport { default as ArrowCollapseMultipleIcon } from \"./ArrowCollapseMultiple\";\nexport { default as ArrowDownLongIcon } from \"./ArrowDownLong\";\nexport { default as ArrowDownSmallIcon } from \"./ArrowDownSmall\";\nexport { default as ArrowDownIcon } from \"./ArrowDown\";\nexport { default as ArrowExpandeMultipleIcon } from \"./ArrowExpandeMultiple\";\nexport { default as ArrowLeftBoxIcon } from \"./ArrowLeftBox\";\nexport { default as ArrowLeftIcon } from \"./ArrowLeft\";\nexport { default as ArrowRefreshIcon } from \"./ArrowRefresh\";\nexport { default as ArrowRestoreIcon } from \"./ArrowRestore\";\nexport { default as ArrowRightIcon } from \"./ArrowRight\";\nexport { default as ArrowUpLongIcon } from \"./ArrowUpLong\";\nexport { default as ArrowUpIcon } from \"./ArrowUp\";\nexport { default as AssignIcon } from \"./Assign\";\nexport { default as AttachmentIcon } from \"./Attachment\";\nexport { default as BellOffSmallIcon } from \"./BellOffSmall\";\nexport { default as BellOffIcon } from \"./BellOff\";\nexport { default as BillingIcon } from \"./Billing\";\nexport { default as BudgetAlertIcon } from \"./BudgetAlert\";\nexport { default as BulbIcon } from \"./Bulb\";\nexport { default as CalendarAddXIcon } from \"./CalendarAddX\";\nexport { default as CalendarImportIcon } from \"./CalendarImport\";\nexport { default as CalendarIcon } from \"./Calendar\";\nexport { default as CancelCrossIcon } from \"./CancelCross\";\nexport { default as CaretLeftIcon } from \"./CaretLeft\";\nexport { default as CaretRightIcon } from \"./CaretRight\";\nexport { default as ChatIcon } from \"./Chat\";\nexport { default as CheckIcon } from \"./Check\";\nexport { default as CheckboxBlankTogglerIcon } from \"./CheckboxBlankToggler\";\nexport { default as CheckboxCircleArrowIcon } from \"./CheckboxCircleArrow\";\nexport { default as CheckboxCircleBlankIcon } from \"./CheckboxCircleBlank\";\nexport { default as CheckboxDocumentsIcon } from \"./CheckboxDocuments\";\nexport { default as CheckboxIcon } from \"./Checkbox\";\nexport { default as ChecklistSmallIcon } from \"./ChecklistSmall\";\nexport { default as ChecklistIcon } from \"./Checklist\";\nexport { default as CircleIcon } from \"./CircleIcon\";\nexport { default as CircleMultipleIcon } from \"./CircleMultiple\";\nexport { default as ClockAddIcon } from \"./ClockAdd\";\nexport { default as ClockDollarIcon } from \"./ClockDollar\";\nexport { default as ClockSmallIcon } from \"./ClockSmall\";\nexport { default as ClockStopwatchIndicatorIcon } from \"./ClockStopwatchIndicator\";\nexport { default as ClockStopwatchSmallIcon } from \"./ClockStopwatchSmall\";\nexport { default as ClockStopwatchIcon } from \"./ClockStopwatch\";\nexport { default as ClockIcon } from \"./Clock\";\nexport { default as CloseCircleIcon } from \"./CloseCircle\";\nexport { default as CloseDocumentIcon } from \"./CloseDocument\";\nexport { default as CloseSmallIcon } from \"./CloseSmall\";\nexport { default as CloseIcon } from \"./Close\";\nexport { default as CollapsIcon } from \"./CollapsIcon\";\nexport { default as CollapseAllIcon } from \"./CollapseAll\";\nexport { default as CollapseExpandSingleIcon } from \"./CollapseExpandSingle\";\nexport { default as CompanyAddIcon } from \"./CompanyAdd\";\nexport { default as CompanyIcon } from \"./Company\";\nexport { default as ComputerIcon } from \"./Computer\";\nexport { default as ConnectionIcon } from \"./ConnectionIcon\";\nexport { default as CopyIcon } from \"./Copy\";\nexport { default as CrownBlankIcon } from \"./CrownBlank\";\nexport { default as CrownSelectedIcon } from \"./CrownSelected\";\nexport { default as DependencySmallIcon } from \"./DependencySmall\";\nexport { default as DependencyIcon } from \"./Dependency\";\nexport { default as DescriptionSmallIcon } from \"./DescriptionSmall\";\nexport { default as DescriptionIcon } from \"./Description\";\nexport { default as DiscussionAddIcon } from \"./DiscussionAdd\";\nexport { default as DiscussionIcon } from \"./Discussion\";\nexport { default as DollarCheckmarkSmallIcon } from \"./DollarCheckmarkSmall\";\nexport { default as DollarCheckmarkIcon } from \"./DollarCheckmark\";\nexport { default as DollarClockSmallIcon } from \"./DollarClockSmall\";\nexport { default as DollarClockIcon } from \"./DollarClock\";\nexport { default as DollarDocumentPlusIcon } from \"./DollarDocumentPlus\";\nexport { default as DollarDocumentIcon } from \"./DollarDocument\";\nexport { default as DollarOffSmallIcon } from \"./DollarOffSmall\";\nexport { default as DollarOffIcon } from \"./DollarOff\";\nexport { default as DollarSmallIcon } from \"./DollarSmall\";\nexport { default as DollarIcon } from \"./Dollar\";\nexport { default as DownloadIcon } from \"./Download\";\nexport { default as DrawIcon } from \"./DrawIcon\";\nexport { default as DriveIcon } from \"./Drive\";\nexport { default as DropboxIcon } from \"./Dropbox\";\nexport { default as DuplicateIcon } from \"./Duplicate\";\nexport { default as EditMultipleIcon } from \"./EditMultiple\";\nexport { default as EditIcon } from \"./Edit\";\nexport { default as EmojiIcon } from \"./Emoji\";\nexport { default as EstimatePlusIcon } from \"./EstimatePlus\";\nexport { default as EstimatesIcon } from \"./Estimates\";\nexport { default as ExpandAllIcon } from \"./ExpandAll\";\nexport { default as ExpenseAddIcon } from \"./ExpenseAdd\";\nexport { default as ExpensePlusIcon } from \"./ExpensePlus\";\nexport { default as EyeOffSmallIcon } from \"./EyeOffSmall\";\nexport { default as EyeOffIcon } from \"./EyeOff\";\nexport { default as EyeSmallIcon } from \"./EyeSmall\";\nexport { default as EyeIcon } from \"./Eye\";\nexport { default as FilterIcon } from \"./Filter\";\nexport { default as FolderMoveIcon } from \"./FolderMove\";\nexport { default as FolderOutlineIcon } from \"./FolderOutline\";\nexport { default as GiftIcon } from \"./Gift\";\nexport { default as GroupByIcon } from \"./GroupBy\";\nexport { default as HashtagIcon } from \"./Hashtag\";\nexport { default as HelpIcon } from \"./Help\";\nexport { default as HistoryOfChangesIcon } from \"./HistoryOfChanges\";\nexport { default as ImageIcon } from \"./Image\";\nexport { default as InfoSmallIcon } from \"./InfoSmall\";\nexport { default as InfoIcon } from \"./Info\";\nexport { default as InsertLinkIcon } from \"./InsertLink\";\nexport { default as IntegrationsIcon } from \"./Integrations\";\nexport { default as InvoicesIcon } from \"./Invoices\";\nexport { default as LabelsIcon } from \"./Labels\";\nexport { default as LetterArrowRightIcon } from \"./LetterArrowRight\";\nexport { default as LetterFastIcon } from \"./LetterFast\";\nexport { default as LetterIcon } from \"./Letter\";\nexport { default as LockSmallIcon } from \"./LockSmall\";\nexport { default as LockIcon } from \"./Lock\";\nexport { default as MarkerIcon } from \"./Marker\";\nexport { default as MessageAddIcon } from \"./MessageAdd\";\nexport { default as MessageEmptyIcon } from \"./MessageEmpty\";\nexport { default as MessageSmallIcon } from \"./MessageSmall\";\nexport { default as MessageSolidIcon } from \"./MessageSolid\";\nexport { default as MessageStarIcon } from \"./MessageStar\";\nexport { default as MessageIcon } from \"./Message\";\nexport { default as MinusIcon } from \"./Minus\";\nexport { default as MobileMenuIcon } from \"./MobileMenu\";\nexport { default as MoneyStackIcon } from \"./MoneyStack\";\nexport { default as MoonIcon } from \"./Moon\";\nexport { default as MoveTriggerIcon } from \"./MoveTrigger\";\nexport { default as MoveIcon } from \"./Move\";\nexport { default as MyWorkIcon } from \"./MyWork\";\nexport { default as NoteAddIcon } from \"./NoteAdd\";\nexport { default as NoteIcon } from \"./Note\";\nexport { default as NotebookIcon } from \"./Notebook\";\nexport { default as NotificationBellIcon } from \"./NotificationBell\";\nexport { default as OpenExpandedIcon } from \"./OpenExpanded\";\nexport { default as OpenSheetIcon } from \"./OpenSheet\";\nexport { default as OrderFirstIcon } from \"./OrderFirst\";\nexport { default as PaidSmallIcon } from \"./PaidSmall\";\nexport { default as PauseCircleOutlineIcon } from \"./PauseCircleOutline\";\nexport { default as PauseIcon } from \"./PauseIcon\";\nexport { default as PauseSmallIcon } from \"./PauseSmall\";\nexport { default as PencilSmallIcon } from \"./PencilSmall\";\nexport { default as PencilIcon } from \"./Pencil\";\nexport { default as PendingPaymentSmallIcon } from \"./PendingPaymentSmall\";\nexport { default as PeopleIcon } from \"./People\";\nexport { default as PersonArrowOutCircleIcon } from \"./PersonArrowOutCircle\";\nexport { default as PersonCircleOffIcon } from \"./PersonCircleOff\";\nexport { default as PersonCircleIcon } from \"./PersonCircle\";\nexport { default as PersonListIcon } from \"./PersonList\";\nexport { default as PersonPlusIcon } from \"./PersonPlus\";\nexport { default as PersonIcon } from \"./Person\";\nexport { default as PinSmallIcon } from \"./PinSmall\";\nexport { default as PinIcon } from \"./Pin\";\nexport { default as PlayCircleOutlineIcon } from \"./PlayCircleOutline\";\nexport { default as PlayIcon } from \"./PlayIcon\";\nexport { default as PlaySmallIcon } from \"./PlaySmall\";\nexport { default as PriorityLowIcon } from \"./PriorityLow\";\nexport { default as ProjectAddIcon } from \"./ProjectAdd\";\nexport { default as ProjectSearchIcon } from \"./ProjectSearch\";\nexport { default as ProjectStarIcon } from \"./ProjectStar\";\nexport { default as ProjectTemplateAddIcon } from \"./ProjectTemplateAdd\";\nexport { default as ProjectTemplateConvertIcon } from \"./ProjectTemplateConvert\";\nexport { default as ProjectTemplateIcon } from \"./ProjectTemplate\";\nexport { default as ProjectsIcon } from \"./Projects\";\nexport { default as PuzzleIcon } from \"./Puzzle\";\nexport { default as RadioBlankIcon } from \"./RadioBlank\";\nexport { default as RadioButtonIcon } from \"./RadioButton\";\nexport { default as RearangeIcon } from \"./Rearange\";\nexport { default as RearrangeSmallIcon } from \"./RearrangeSmall\";\nexport { default as RecurringCheckmarkSmallIcon } from \"./RecurringCheckmarkSmall\";\nexport { default as RecurringCheckmarkIcon } from \"./RecurringCheckmark\";\nexport { default as RecurringDollarIcon } from \"./RecurringDollar\";\nexport { default as RecurringSmallIcon } from \"./RecurringSmall\";\nexport { default as ReminderIcon } from \"./ReminderIcon\";\nexport { default as ReorderIcon } from \"./Reorder\";\nexport { default as ReportTimeIcon } from \"./ReportTime\";\nexport { default as ReportsIcon } from \"./Reports\";\nexport { default as RobotIcon } from \"./Robot\";\nexport { default as RocketSmallIcon } from \"./RocketSmall\";\nexport { default as RocketIcon } from \"./Rocket\";\nexport { default as RoundedRectangleIcon } from \"./RoundedRectangleIcon\";\nexport { default as SaveIcon } from \"./Save\";\nexport { default as SearchLargeIcon } from \"./SearchLarge\";\nexport { default as SearchPlusIcon } from \"./SearchPlus\";\nexport { default as SearchIcon } from \"./Search\";\nexport { default as SendBlankIcon } from \"./SendBlank\";\nexport { default as SendFilledIcon } from \"./SendFilled\";\nexport { default as SettingsIcon } from \"./Settings\";\nexport { default as ShieldIcon } from \"./Shield\";\nexport { default as SortGeneralIcon } from \"./SortGeneral\";\nexport { default as SortIcon } from \"./SortIcon\";\nexport { default as SortListIcon } from \"./SortList\";\nexport { default as SortSmallIcon } from \"./SortSmall\";\nexport { default as SparkIcon } from \"./Spark\";\nexport { default as StarOutlineIcon } from \"./StarOutline\";\nexport { default as StarIcon } from \"./Star\";\nexport { default as StatusIcon } from \"./Status\";\nexport { default as StickyIcon } from \"./StickyIcon\";\nexport { default as StopIcon } from \"./Stop\";\nexport { default as StopwatchIcon } from \"./Stopwatch\";\nexport { default as SunIcon } from \"./Sun\";\nexport { default as SystemSettingsIcon } from \"./SystemSettings\";\nexport { default as TaskAddIcon } from \"./TaskAdd\";\nexport { default as TaskListAddIcon } from \"./TaskListAdd\";\nexport { default as TaskListCompleteIcon } from \"./TaskListComplete\";\nexport { default as TaskListIcon } from \"./TaskList\";\nexport { default as TextIcon } from \"./TextIcon\";\nexport { default as ThumbUpOutlineIcon } from \"./ThumbUpOutline\";\nexport { default as TrashIcon } from \"./Trash\";\nexport { default as TreeDotsIcon } from \"./TreeDots\";\nexport { default as TriangleIcon } from \"./TriangleIcon\";\nexport { default as UploadIcon } from \"./Upload\";\nexport { default as ViewDayIcon } from \"./ViewDay\";\nexport { default as ViewGridIcon } from \"./ViewGrid\";\nexport { default as ViewListIcon } from \"./ViewList\";\nexport { default as ViewTimelineIcon } from \"./ViewTimeline\";\nexport { default as VolumeHighIcon } from \"./VolumeHigh\";\nexport { default as WarningTriangleSmallIcon } from \"./WarningTriangleSmall\";\nexport { default as WarningTriangleIcon } from \"./WarningTriangle\";\nexport { default as WarningIcon } from \"./Warning\";\nexport { default as WorkloadIcon } from \"./Workload\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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","ignoreList":[]}
|
|
1
|
+
{"version":3,"file":"index.js","names":["_Recurring","_interopRequireDefault","require","_AccessLog","_Activity","_AddCrossTiny","_AddCross","_Archive","_ArrowBackMobile","_ArrowCollapseMultiple","_ArrowDownLong","_ArrowDownSmall","_ArrowDown","_ArrowExpandeMultiple","_ArrowLeftBox","_ArrowLeft","_ArrowRefresh","_ArrowRestore","_ArrowRight","_ArrowUpLong","_ArrowUp","_Assign","_Attachment","_BellOffSmall","_BellOff","_Billing","_BudgetAlert","_Bulb","_CalendarAddX","_CalendarImport","_Calendar","_CancelCross","_CaretLeft","_CaretRight","_Chat","_Check","_CheckboxBlankToggler","_CheckboxCircleArrow","_CheckboxCircleBlank","_CheckboxDocuments","_Checkbox","_ChecklistSmall","_Checklist","_CircleIcon","_CircleMultiple","_ClockAdd","_ClockDollar","_ClockSmall","_ClockStopwatchIndicator","_ClockStopwatchSmall","_ClockStopwatch","_Clock","_CloseCircle","_CloseDocument","_CloseSmall","_Close","_CollapsIcon","_CollapseAll","_CollapseExpandSingle","_CompanyAdd","_Company","_Computer","_ConnectionIcon","_Copy","_CrownBlank","_CrownSelected","_DependencySmall","_Dependency","_DescriptionSmall","_Description","_DiscussionAdd","_Discussion","_DollarCheckmarkSmall","_DollarCheckmark","_DollarClockSmall","_DollarClock","_DollarDocumentPlus","_DollarDocument","_DollarOffSmall","_DollarOff","_DollarSmall","_Dollar","_Download","_DrawIcon","_Drive","_Dropbox","_Duplicate","_EditMultiple","_Edit","_Emoji","_EstimatePlus","_Estimates","_ExpandAll","_ExpenseAdd","_ExpensePlus","_EyeOffSmall","_EyeOff","_EyeSmall","_Eye","_Filter","_FolderMove","_FolderOutline","_Gift","_GitBranch","_GitCommit","_GitPullRequest","_GroupBy","_Hashtag","_Help","_HistoryOfChanges","_Image","_InfoSmall","_Info","_InsertLink","_Integrations","_Invoices","_Labels","_LetterArrowRight","_LetterFast","_Letter","_LockSmall","_Lock","_Marker","_MessageAdd","_MessageEmpty","_MessageSmall","_MessageSolid","_MessageStar","_Message","_Minus","_MobileMenu","_MoneyStack","_Moon","_MoveTrigger","_Move","_MyWork","_NoteAdd","_Note","_Notebook","_NotificationBell","_OpenExpanded","_OpenSheet","_OrderFirst","_PaidSmall","_PauseCircleOutline","_PauseIcon","_PauseSmall","_PencilSmall","_Pencil","_PendingPaymentSmall","_People","_PersonArrowOutCircle","_PersonCircleOff","_PersonCircle","_PersonList","_PersonPlus","_Person","_PinSmall","_Pin","_PlayCircleOutline","_PlayIcon","_PlaySmall","_PriorityLow","_ProjectAdd","_ProjectSearch","_ProjectStar","_ProjectTemplateAdd","_ProjectTemplateConvert","_ProjectTemplate","_Projects","_Puzzle","_RadioBlank","_RadioButton","_Rearange","_RearrangeSmall","_RecurringCheckmarkSmall","_RecurringCheckmark","_RecurringDollar","_RecurringSmall","_ReminderIcon","_Reorder","_ReportTime","_Reports","_Robot","_RocketSmall","_Rocket","_RoundedRectangleIcon","_Save","_SearchLarge","_SearchPlus","_Search","_SendBlank","_SendFilled","_Settings","_Shield","_SortGeneral","_SortIcon","_SortList","_SortSmall","_SourceCode","_Spark","_StarOutline","_Star","_Status","_StickyIcon","_Stop","_Stopwatch","_Sun","_SystemSettings","_TaskAdd","_TaskListAdd","_TaskListComplete","_TaskList","_TextIcon","_ThumbUpOutline","_Trash","_TreeDots","_TriangleIcon","_Upload","_ViewDay","_ViewGrid","_ViewList","_ViewTimeline","_VolumeHigh","_WarningTriangleSmall","_WarningTriangle","_Warning","_Workload","e","__esModule","default"],"sources":["../../../../../src/components/Icons/collection/index.tsx"],"sourcesContent":["export { default as RecurringIcon } from \"./Recurring\";\nexport { default as AccessLogIcon } from \"./AccessLog\";\nexport { default as ActivityIcon } from \"./Activity\";\nexport { default as AddCrossTinyIcon } from \"./AddCrossTiny\";\nexport { default as AddCrossIcon } from \"./AddCross\";\nexport { default as ArchiveIcon } from \"./Archive\";\nexport { default as ArrowBackMobileIcon } from \"./ArrowBackMobile\";\nexport { default as ArrowCollapseMultipleIcon } from \"./ArrowCollapseMultiple\";\nexport { default as ArrowDownLongIcon } from \"./ArrowDownLong\";\nexport { default as ArrowDownSmallIcon } from \"./ArrowDownSmall\";\nexport { default as ArrowDownIcon } from \"./ArrowDown\";\nexport { default as ArrowExpandeMultipleIcon } from \"./ArrowExpandeMultiple\";\nexport { default as ArrowLeftBoxIcon } from \"./ArrowLeftBox\";\nexport { default as ArrowLeftIcon } from \"./ArrowLeft\";\nexport { default as ArrowRefreshIcon } from \"./ArrowRefresh\";\nexport { default as ArrowRestoreIcon } from \"./ArrowRestore\";\nexport { default as ArrowRightIcon } from \"./ArrowRight\";\nexport { default as ArrowUpLongIcon } from \"./ArrowUpLong\";\nexport { default as ArrowUpIcon } from \"./ArrowUp\";\nexport { default as AssignIcon } from \"./Assign\";\nexport { default as AttachmentIcon } from \"./Attachment\";\nexport { default as BellOffSmallIcon } from \"./BellOffSmall\";\nexport { default as BellOffIcon } from \"./BellOff\";\nexport { default as BillingIcon } from \"./Billing\";\nexport { default as BudgetAlertIcon } from \"./BudgetAlert\";\nexport { default as BulbIcon } from \"./Bulb\";\nexport { default as CalendarAddXIcon } from \"./CalendarAddX\";\nexport { default as CalendarImportIcon } from \"./CalendarImport\";\nexport { default as CalendarIcon } from \"./Calendar\";\nexport { default as CancelCrossIcon } from \"./CancelCross\";\nexport { default as CaretLeftIcon } from \"./CaretLeft\";\nexport { default as CaretRightIcon } from \"./CaretRight\";\nexport { default as ChatIcon } from \"./Chat\";\nexport { default as CheckIcon } from \"./Check\";\nexport { default as CheckboxBlankTogglerIcon } from \"./CheckboxBlankToggler\";\nexport { default as CheckboxCircleArrowIcon } from \"./CheckboxCircleArrow\";\nexport { default as CheckboxCircleBlankIcon } from \"./CheckboxCircleBlank\";\nexport { default as CheckboxDocumentsIcon } from \"./CheckboxDocuments\";\nexport { default as CheckboxIcon } from \"./Checkbox\";\nexport { default as ChecklistSmallIcon } from \"./ChecklistSmall\";\nexport { default as ChecklistIcon } from \"./Checklist\";\nexport { default as CircleIcon } from \"./CircleIcon\";\nexport { default as CircleMultipleIcon } from \"./CircleMultiple\";\nexport { default as ClockAddIcon } from \"./ClockAdd\";\nexport { default as ClockDollarIcon } from \"./ClockDollar\";\nexport { default as ClockSmallIcon } from \"./ClockSmall\";\nexport { default as ClockStopwatchIndicatorIcon } from \"./ClockStopwatchIndicator\";\nexport { default as ClockStopwatchSmallIcon } from \"./ClockStopwatchSmall\";\nexport { default as ClockStopwatchIcon } from \"./ClockStopwatch\";\nexport { default as ClockIcon } from \"./Clock\";\nexport { default as CloseCircleIcon } from \"./CloseCircle\";\nexport { default as CloseDocumentIcon } from \"./CloseDocument\";\nexport { default as CloseSmallIcon } from \"./CloseSmall\";\nexport { default as CloseIcon } from \"./Close\";\nexport { default as CollapsIcon } from \"./CollapsIcon\";\nexport { default as CollapseAllIcon } from \"./CollapseAll\";\nexport { default as CollapseExpandSingleIcon } from \"./CollapseExpandSingle\";\nexport { default as CompanyAddIcon } from \"./CompanyAdd\";\nexport { default as CompanyIcon } from \"./Company\";\nexport { default as ComputerIcon } from \"./Computer\";\nexport { default as ConnectionIcon } from \"./ConnectionIcon\";\nexport { default as CopyIcon } from \"./Copy\";\nexport { default as CrownBlankIcon } from \"./CrownBlank\";\nexport { default as CrownSelectedIcon } from \"./CrownSelected\";\nexport { default as DependencySmallIcon } from \"./DependencySmall\";\nexport { default as DependencyIcon } from \"./Dependency\";\nexport { default as DescriptionSmallIcon } from \"./DescriptionSmall\";\nexport { default as DescriptionIcon } from \"./Description\";\nexport { default as DiscussionAddIcon } from \"./DiscussionAdd\";\nexport { default as DiscussionIcon } from \"./Discussion\";\nexport { default as DollarCheckmarkSmallIcon } from \"./DollarCheckmarkSmall\";\nexport { default as DollarCheckmarkIcon } from \"./DollarCheckmark\";\nexport { default as DollarClockSmallIcon } from \"./DollarClockSmall\";\nexport { default as DollarClockIcon } from \"./DollarClock\";\nexport { default as DollarDocumentPlusIcon } from \"./DollarDocumentPlus\";\nexport { default as DollarDocumentIcon } from \"./DollarDocument\";\nexport { default as DollarOffSmallIcon } from \"./DollarOffSmall\";\nexport { default as DollarOffIcon } from \"./DollarOff\";\nexport { default as DollarSmallIcon } from \"./DollarSmall\";\nexport { default as DollarIcon } from \"./Dollar\";\nexport { default as DownloadIcon } from \"./Download\";\nexport { default as DrawIcon } from \"./DrawIcon\";\nexport { default as DriveIcon } from \"./Drive\";\nexport { default as DropboxIcon } from \"./Dropbox\";\nexport { default as DuplicateIcon } from \"./Duplicate\";\nexport { default as EditMultipleIcon } from \"./EditMultiple\";\nexport { default as EditIcon } from \"./Edit\";\nexport { default as EmojiIcon } from \"./Emoji\";\nexport { default as EstimatePlusIcon } from \"./EstimatePlus\";\nexport { default as EstimatesIcon } from \"./Estimates\";\nexport { default as ExpandAllIcon } from \"./ExpandAll\";\nexport { default as ExpenseAddIcon } from \"./ExpenseAdd\";\nexport { default as ExpensePlusIcon } from \"./ExpensePlus\";\nexport { default as EyeOffSmallIcon } from \"./EyeOffSmall\";\nexport { default as EyeOffIcon } from \"./EyeOff\";\nexport { default as EyeSmallIcon } from \"./EyeSmall\";\nexport { default as EyeIcon } from \"./Eye\";\nexport { default as FilterIcon } from \"./Filter\";\nexport { default as FolderMoveIcon } from \"./FolderMove\";\nexport { default as FolderOutlineIcon } from \"./FolderOutline\";\nexport { default as GiftIcon } from \"./Gift\";\nexport { default as GitBranchIcon } from \"./GitBranch\";\nexport { default as GitCommitIcon } from \"./GitCommit\";\nexport { default as GitPullRequestIcon } from \"./GitPullRequest\";\nexport { default as GroupByIcon } from \"./GroupBy\";\nexport { default as HashtagIcon } from \"./Hashtag\";\nexport { default as HelpIcon } from \"./Help\";\nexport { default as HistoryOfChangesIcon } from \"./HistoryOfChanges\";\nexport { default as ImageIcon } from \"./Image\";\nexport { default as InfoSmallIcon } from \"./InfoSmall\";\nexport { default as InfoIcon } from \"./Info\";\nexport { default as InsertLinkIcon } from \"./InsertLink\";\nexport { default as IntegrationsIcon } from \"./Integrations\";\nexport { default as InvoicesIcon } from \"./Invoices\";\nexport { default as LabelsIcon } from \"./Labels\";\nexport { default as LetterArrowRightIcon } from \"./LetterArrowRight\";\nexport { default as LetterFastIcon } from \"./LetterFast\";\nexport { default as LetterIcon } from \"./Letter\";\nexport { default as LockSmallIcon } from \"./LockSmall\";\nexport { default as LockIcon } from \"./Lock\";\nexport { default as MarkerIcon } from \"./Marker\";\nexport { default as MessageAddIcon } from \"./MessageAdd\";\nexport { default as MessageEmptyIcon } from \"./MessageEmpty\";\nexport { default as MessageSmallIcon } from \"./MessageSmall\";\nexport { default as MessageSolidIcon } from \"./MessageSolid\";\nexport { default as MessageStarIcon } from \"./MessageStar\";\nexport { default as MessageIcon } from \"./Message\";\nexport { default as MinusIcon } from \"./Minus\";\nexport { default as MobileMenuIcon } from \"./MobileMenu\";\nexport { default as MoneyStackIcon } from \"./MoneyStack\";\nexport { default as MoonIcon } from \"./Moon\";\nexport { default as MoveTriggerIcon } from \"./MoveTrigger\";\nexport { default as MoveIcon } from \"./Move\";\nexport { default as MyWorkIcon } from \"./MyWork\";\nexport { default as NoteAddIcon } from \"./NoteAdd\";\nexport { default as NoteIcon } from \"./Note\";\nexport { default as NotebookIcon } from \"./Notebook\";\nexport { default as NotificationBellIcon } from \"./NotificationBell\";\nexport { default as OpenExpandedIcon } from \"./OpenExpanded\";\nexport { default as OpenSheetIcon } from \"./OpenSheet\";\nexport { default as OrderFirstIcon } from \"./OrderFirst\";\nexport { default as PaidSmallIcon } from \"./PaidSmall\";\nexport { default as PauseCircleOutlineIcon } from \"./PauseCircleOutline\";\nexport { default as PauseIcon } from \"./PauseIcon\";\nexport { default as PauseSmallIcon } from \"./PauseSmall\";\nexport { default as PencilSmallIcon } from \"./PencilSmall\";\nexport { default as PencilIcon } from \"./Pencil\";\nexport { default as PendingPaymentSmallIcon } from \"./PendingPaymentSmall\";\nexport { default as PeopleIcon } from \"./People\";\nexport { default as PersonArrowOutCircleIcon } from \"./PersonArrowOutCircle\";\nexport { default as PersonCircleOffIcon } from \"./PersonCircleOff\";\nexport { default as PersonCircleIcon } from \"./PersonCircle\";\nexport { default as PersonListIcon } from \"./PersonList\";\nexport { default as PersonPlusIcon } from \"./PersonPlus\";\nexport { default as PersonIcon } from \"./Person\";\nexport { default as PinSmallIcon } from \"./PinSmall\";\nexport { default as PinIcon } from \"./Pin\";\nexport { default as PlayCircleOutlineIcon } from \"./PlayCircleOutline\";\nexport { default as PlayIcon } from \"./PlayIcon\";\nexport { default as PlaySmallIcon } from \"./PlaySmall\";\nexport { default as PriorityLowIcon } from \"./PriorityLow\";\nexport { default as ProjectAddIcon } from \"./ProjectAdd\";\nexport { default as ProjectSearchIcon } from \"./ProjectSearch\";\nexport { default as ProjectStarIcon } from \"./ProjectStar\";\nexport { default as ProjectTemplateAddIcon } from \"./ProjectTemplateAdd\";\nexport { default as ProjectTemplateConvertIcon } from \"./ProjectTemplateConvert\";\nexport { default as ProjectTemplateIcon } from \"./ProjectTemplate\";\nexport { default as ProjectsIcon } from \"./Projects\";\nexport { default as PuzzleIcon } from \"./Puzzle\";\nexport { default as RadioBlankIcon } from \"./RadioBlank\";\nexport { default as RadioButtonIcon } from \"./RadioButton\";\nexport { default as RearangeIcon } from \"./Rearange\";\nexport { default as RearrangeSmallIcon } from \"./RearrangeSmall\";\nexport { default as RecurringCheckmarkSmallIcon } from \"./RecurringCheckmarkSmall\";\nexport { default as RecurringCheckmarkIcon } from \"./RecurringCheckmark\";\nexport { default as RecurringDollarIcon } from \"./RecurringDollar\";\nexport { default as RecurringSmallIcon } from \"./RecurringSmall\";\nexport { default as ReminderIcon } from \"./ReminderIcon\";\nexport { default as ReorderIcon } from \"./Reorder\";\nexport { default as ReportTimeIcon } from \"./ReportTime\";\nexport { default as ReportsIcon } from \"./Reports\";\nexport { default as RobotIcon } from \"./Robot\";\nexport { default as RocketSmallIcon } from \"./RocketSmall\";\nexport { default as RocketIcon } from \"./Rocket\";\nexport { default as RoundedRectangleIcon } from \"./RoundedRectangleIcon\";\nexport { default as SaveIcon } from \"./Save\";\nexport { default as SearchLargeIcon } from \"./SearchLarge\";\nexport { default as SearchPlusIcon } from \"./SearchPlus\";\nexport { default as SearchIcon } from \"./Search\";\nexport { default as SendBlankIcon } from \"./SendBlank\";\nexport { default as SendFilledIcon } from \"./SendFilled\";\nexport { default as SettingsIcon } from \"./Settings\";\nexport { default as ShieldIcon } from \"./Shield\";\nexport { default as SortGeneralIcon } from \"./SortGeneral\";\nexport { default as SortIcon } from \"./SortIcon\";\nexport { default as SortListIcon } from \"./SortList\";\nexport { default as SortSmallIcon } from \"./SortSmall\";\nexport { default as SourceCodeIcon } from \"./SourceCode\";\nexport { default as SparkIcon } from \"./Spark\";\nexport { default as StarOutlineIcon } from \"./StarOutline\";\nexport { default as StarIcon } from \"./Star\";\nexport { default as StatusIcon } from \"./Status\";\nexport { default as StickyIcon } from \"./StickyIcon\";\nexport { default as StopIcon } from \"./Stop\";\nexport { default as StopwatchIcon } from \"./Stopwatch\";\nexport { default as SunIcon } from \"./Sun\";\nexport { default as SystemSettingsIcon } from \"./SystemSettings\";\nexport { default as TaskAddIcon } from \"./TaskAdd\";\nexport { default as TaskListAddIcon } from \"./TaskListAdd\";\nexport { default as TaskListCompleteIcon } from \"./TaskListComplete\";\nexport { default as TaskListIcon } from \"./TaskList\";\nexport { default as TextIcon } from \"./TextIcon\";\nexport { default as ThumbUpOutlineIcon } from \"./ThumbUpOutline\";\nexport { default as TrashIcon } from \"./Trash\";\nexport { default as TreeDotsIcon } from \"./TreeDots\";\nexport { default as TriangleIcon } from \"./TriangleIcon\";\nexport { default as UploadIcon } from \"./Upload\";\nexport { default as ViewDayIcon } from \"./ViewDay\";\nexport { default as ViewGridIcon } from \"./ViewGrid\";\nexport { default as ViewListIcon } from \"./ViewList\";\nexport { default as ViewTimelineIcon } from \"./ViewTimeline\";\nexport { default as VolumeHighIcon } from \"./VolumeHigh\";\nexport { default as WarningTriangleSmallIcon } from \"./WarningTriangleSmall\";\nexport { default as WarningTriangleIcon } from \"./WarningTriangle\";\nexport { default as WarningIcon } from \"./Warning\";\nexport { default as WorkloadIcon } from \"./Workload\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectionIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/ConnectionIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,cAAc;eAMH,MAAM;+
|
|
1
|
+
{"version":3,"file":"ConnectionIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/ConnectionIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,cAAc;eAMH,MAAM;+CA4CtB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -45,17 +45,23 @@ const ConnectionIcon = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
|
45
45
|
}, props), /*#__PURE__*/React.createElement(GradientDefs, {
|
|
46
46
|
gradient: gradient
|
|
47
47
|
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
-
stroke: "
|
|
48
|
+
stroke: "var(--color-theme-600)",
|
|
49
49
|
strokeLinecap: "round",
|
|
50
50
|
strokeLinejoin: "round",
|
|
51
51
|
strokeWidth: 2,
|
|
52
|
-
d: "m15 14 5-5-5-5"
|
|
52
|
+
d: "m15 14 5-5-5-5",
|
|
53
|
+
style: {
|
|
54
|
+
fill: "none"
|
|
55
|
+
}
|
|
53
56
|
}), /*#__PURE__*/React.createElement("path", {
|
|
54
|
-
stroke: "
|
|
57
|
+
stroke: "var(--color-theme-600)",
|
|
55
58
|
strokeLinecap: "round",
|
|
56
59
|
strokeLinejoin: "round",
|
|
57
60
|
strokeWidth: 2,
|
|
58
|
-
d: "M4 20v-7a4 4 0 0 1 4-4h12"
|
|
61
|
+
d: "M4 20v-7a4 4 0 0 1 4-4h12",
|
|
62
|
+
style: {
|
|
63
|
+
fill: "none"
|
|
64
|
+
}
|
|
59
65
|
}));
|
|
60
66
|
});
|
|
61
67
|
ConnectionIcon.displayName = "ConnectionIcon";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectionIcon.js","names":["React","GradientDefs","ConnectionIcon","forwardRef","_ref","ref","gradient","props","_objectWithoutPropertiesLoose","_excluded","createElement","_extends","xmlns","width","height","viewBox","fill","focusable","stroke","strokeLinecap","strokeLinejoin","strokeWidth","d","displayName"],"sources":["../../../../../src/components/Icons/collection/ConnectionIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component ConnectionIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <ConnectionIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <ConnectionIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst ConnectionIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"ConnectionIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n stroke=\"
|
|
1
|
+
{"version":3,"file":"ConnectionIcon.js","names":["React","GradientDefs","ConnectionIcon","forwardRef","_ref","ref","gradient","props","_objectWithoutPropertiesLoose","_excluded","createElement","_extends","xmlns","width","height","viewBox","fill","focusable","stroke","strokeLinecap","strokeLinejoin","strokeWidth","d","style","displayName"],"sources":["../../../../../src/components/Icons/collection/ConnectionIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component ConnectionIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <ConnectionIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <ConnectionIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst ConnectionIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"ConnectionIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n stroke=\"var(--color-theme-600)\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n d=\"m15 14 5-5-5-5\"\n style={{\n fill: \"none\",\n }}\n />\n <path\n stroke=\"var(--color-theme-600)\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n d=\"M4 20v-7a4 4 0 0 1 4-4h12\"\n style={{\n fill: \"none\",\n }}\n />\n </svg>\n )\n);\nConnectionIcon.displayName = \"ConnectionIcon\";\nexport default ConnectionIcon;\n"],"mappings":";;;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,SAASC,YAAY,QAAQ,oBAAoB;;AAEjD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,cAAc,gBAAGF,KAAK,CAACG,UAAU,CACrC,CAAAC,IAAA,EAOEC,GAA8B;EAAA,IAL5BC,QAAQ,GAAAF,IAAA,CAARE,QAAQ;IACLC,KAAK,GAAAC,6BAAA,CAAAJ,IAAA,EAAAK,SAAA;EAAA,oBAMVT,KAAA,CAAAU,aAAA,QAAAC,QAAA;IACEC,KAAK,EAAC,4BAA4B;IAClCC,KAAK,EAAE,EAAG;IACVC,MAAM,EAAE,EAAG;IACXC,OAAO,EAAC,WAAW;IACnB,eAAY,gBAAgB;IAC5BC,IAAI,EACFV,QAAQ,GACJ,qBAAqB,GACrBC,KAAK,YAALA,KAAK,CAAES,IAAI,GACXT,KAAK,CAACS,IAAI,GACV,wBACL;IACDC,SAAS,EAAE,KAAM;IACjBZ,GAAG,EAAEA;EAAI,GACLE,KAAK,gBAETP,KAAA,CAAAU,aAAA,CAACT,YAAY;IAACK,QAAQ,EAAEA;EAAS,CAAE,CAAC,eACpCN,KAAA,CAAAU,aAAA;IACEQ,MAAM,EAAC,wBAAwB;IAC/BC,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC,OAAO;IACtBC,WAAW,EAAE,CAAE;IACfC,CAAC,EAAC,gBAAgB;IAClBC,KAAK,EAAE;MACLP,IAAI,EAAE;IACR;EAAE,CACH,CAAC,eACFhB,KAAA,CAAAU,aAAA;IACEQ,MAAM,EAAC,wBAAwB;IAC/BC,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC,OAAO;IACtBC,WAAW,EAAE,CAAE;IACfC,CAAC,EAAC,2BAA2B;IAC7BC,KAAK,EAAE;MACLP,IAAI,EAAE;IACR;EAAE,CACH,CACE,CAAC;AAAA,CAEV,CAAC;AACDd,cAAc,CAACsB,WAAW,GAAG,gBAAgB;AAC7C,eAAetB,cAAc","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RoundedRectangleIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/RoundedRectangleIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,oBAAoB;eAMT,MAAM;+
|
|
1
|
+
{"version":3,"file":"RoundedRectangleIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/RoundedRectangleIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,oBAAoB;eAMT,MAAM;+CAkCtB,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
|
|
@@ -45,11 +45,14 @@ const RoundedRectangleIcon = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
|
45
45
|
}, props), /*#__PURE__*/React.createElement(GradientDefs, {
|
|
46
46
|
gradient: gradient
|
|
47
47
|
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
-
stroke: "
|
|
48
|
+
stroke: "var(--color-theme-600)",
|
|
49
49
|
strokeLinecap: "round",
|
|
50
50
|
strokeLinejoin: "round",
|
|
51
51
|
strokeWidth: 2,
|
|
52
|
-
d: "M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"
|
|
52
|
+
d: "M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2",
|
|
53
|
+
style: {
|
|
54
|
+
fill: "none"
|
|
55
|
+
}
|
|
53
56
|
}));
|
|
54
57
|
});
|
|
55
58
|
RoundedRectangleIcon.displayName = "RoundedRectangleIcon";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RoundedRectangleIcon.js","names":["React","GradientDefs","RoundedRectangleIcon","forwardRef","_ref","ref","gradient","props","_objectWithoutPropertiesLoose","_excluded","createElement","_extends","xmlns","width","height","viewBox","fill","focusable","stroke","strokeLinecap","strokeLinejoin","strokeWidth","d","displayName"],"sources":["../../../../../src/components/Icons/collection/RoundedRectangleIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component RoundedRectangleIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <RoundedRectangleIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <RoundedRectangleIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst RoundedRectangleIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"RoundedRectangleIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n stroke=\"
|
|
1
|
+
{"version":3,"file":"RoundedRectangleIcon.js","names":["React","GradientDefs","RoundedRectangleIcon","forwardRef","_ref","ref","gradient","props","_objectWithoutPropertiesLoose","_excluded","createElement","_extends","xmlns","width","height","viewBox","fill","focusable","stroke","strokeLinecap","strokeLinejoin","strokeWidth","d","style","displayName"],"sources":["../../../../../src/components/Icons/collection/RoundedRectangleIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component RoundedRectangleIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <RoundedRectangleIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <RoundedRectangleIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst RoundedRectangleIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"RoundedRectangleIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n stroke=\"var(--color-theme-600)\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n d=\"M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2\"\n style={{\n fill: \"none\",\n }}\n />\n </svg>\n )\n);\nRoundedRectangleIcon.displayName = \"RoundedRectangleIcon\";\nexport default RoundedRectangleIcon;\n"],"mappings":";;;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,SAASC,YAAY,QAAQ,oBAAoB;;AAEjD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,oBAAoB,gBAAGF,KAAK,CAACG,UAAU,CAC3C,CAAAC,IAAA,EAOEC,GAA8B;EAAA,IAL5BC,QAAQ,GAAAF,IAAA,CAARE,QAAQ;IACLC,KAAK,GAAAC,6BAAA,CAAAJ,IAAA,EAAAK,SAAA;EAAA,oBAMVT,KAAA,CAAAU,aAAA,QAAAC,QAAA;IACEC,KAAK,EAAC,4BAA4B;IAClCC,KAAK,EAAE,EAAG;IACVC,MAAM,EAAE,EAAG;IACXC,OAAO,EAAC,WAAW;IACnB,eAAY,sBAAsB;IAClCC,IAAI,EACFV,QAAQ,GACJ,qBAAqB,GACrBC,KAAK,YAALA,KAAK,CAAES,IAAI,GACXT,KAAK,CAACS,IAAI,GACV,wBACL;IACDC,SAAS,EAAE,KAAM;IACjBZ,GAAG,EAAEA;EAAI,GACLE,KAAK,gBAETP,KAAA,CAAAU,aAAA,CAACT,YAAY;IAACK,QAAQ,EAAEA;EAAS,CAAE,CAAC,eACpCN,KAAA,CAAAU,aAAA;IACEQ,MAAM,EAAC,wBAAwB;IAC/BC,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC,OAAO;IACtBC,WAAW,EAAE,CAAE;IACfC,CAAC,EAAC,yEAAyE;IAC3EC,KAAK,EAAE;MACLP,IAAI,EAAE;IACR;EAAE,CACH,CACE,CAAC;AAAA,CAEV,CAAC;AACDd,oBAAoB,CAACsB,WAAW,GAAG,sBAAsB;AACzD,eAAetB,oBAAoB","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StickyIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/StickyIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,UAAU;eAMC,MAAM;+
|
|
1
|
+
{"version":3,"file":"StickyIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/StickyIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,UAAU;eAMC,MAAM;+CAoCtB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -45,9 +45,15 @@ const StickyIcon = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
|
45
45
|
}, props), /*#__PURE__*/React.createElement(GradientDefs, {
|
|
46
46
|
gradient: gradient
|
|
47
47
|
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
-
d: "M3 6.95a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v6.087a4 4 0 0 1-1.161 2.819l-3.884 3.912a4 4 0 0 1-2.84 1.182H7a4 4 0 0 1-4-4z"
|
|
48
|
+
d: "M3 6.95a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v6.087a4 4 0 0 1-1.161 2.819l-3.884 3.912a4 4 0 0 1-2.84 1.182H7a4 4 0 0 1-4-4z",
|
|
49
|
+
style: {
|
|
50
|
+
fill: "#ffcc6b"
|
|
51
|
+
}
|
|
49
52
|
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
-
d: "M17.031 13.95h2a2 2 0 0 0 1.992-1.818l.008-2.651v2.469q0 .092-.008.182l-.003.866a4 4 0 0 1-1.144 2.789L15.99 19.75a4 4 0 0 1-2.856 1.2H12.03a2 2 0 0 0 2-2v-2a3 3 0 0 1 3.001-3"
|
|
53
|
+
d: "M17.031 13.95h2a2 2 0 0 0 1.992-1.818l.008-2.651v2.469q0 .092-.008.182l-.003.866a4 4 0 0 1-1.144 2.789L15.99 19.75a4 4 0 0 1-2.856 1.2H12.03a2 2 0 0 0 2-2v-2a3 3 0 0 1 3.001-3",
|
|
54
|
+
style: {
|
|
55
|
+
fill: "#c49cb6"
|
|
56
|
+
}
|
|
51
57
|
}));
|
|
52
58
|
});
|
|
53
59
|
StickyIcon.displayName = "StickyIcon";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StickyIcon.js","names":["React","GradientDefs","StickyIcon","forwardRef","_ref","ref","gradient","props","_objectWithoutPropertiesLoose","_excluded","createElement","_extends","xmlns","width","height","viewBox","fill","focusable","d","displayName"],"sources":["../../../../../src/components/Icons/collection/StickyIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component StickyIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <StickyIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <StickyIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst StickyIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"StickyIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path
|
|
1
|
+
{"version":3,"file":"StickyIcon.js","names":["React","GradientDefs","StickyIcon","forwardRef","_ref","ref","gradient","props","_objectWithoutPropertiesLoose","_excluded","createElement","_extends","xmlns","width","height","viewBox","fill","focusable","d","style","displayName"],"sources":["../../../../../src/components/Icons/collection/StickyIcon.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component StickyIcon\n * @description\n *\n * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.\n * The Icon component is\n * customizable, allowing for variations in size, color, and style to fit the needs of the application.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.\n * Format: \"linear-gradient(<angle>deg, <color1>, <color2>, ...)\"\n *\n * @example\n * return (\n * <StickyIcon gradient=\"linear-gradient(135deg, #4da2ed, #f72222)\" />\n * )\n *\n * @example\n * return (\n * <StickyIcon className=\"mr-2\" />\n * )\n *\n * @see\n * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons\n * @see\n * https://design.activecollab.com/docs/foundations/icons\n */\nconst StickyIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"StickyIcon\"\n fill={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.fill\n ? props.fill\n : \"var(--color-theme-600)\"\n }\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path\n d=\"M3 6.95a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v6.087a4 4 0 0 1-1.161 2.819l-3.884 3.912a4 4 0 0 1-2.84 1.182H7a4 4 0 0 1-4-4z\"\n style={{\n fill: \"#ffcc6b\",\n }}\n />\n <path\n d=\"M17.031 13.95h2a2 2 0 0 0 1.992-1.818l.008-2.651v2.469q0 .092-.008.182l-.003.866a4 4 0 0 1-1.144 2.789L15.99 19.75a4 4 0 0 1-2.856 1.2H12.03a2 2 0 0 0 2-2v-2a3 3 0 0 1 3.001-3\"\n style={{\n fill: \"#c49cb6\",\n }}\n />\n </svg>\n )\n);\nStickyIcon.displayName = \"StickyIcon\";\nexport default StickyIcon;\n"],"mappings":";;;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,SAASC,YAAY,QAAQ,oBAAoB;;AAEjD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,UAAU,gBAAGF,KAAK,CAACG,UAAU,CACjC,CAAAC,IAAA,EAOEC,GAA8B;EAAA,IAL5BC,QAAQ,GAAAF,IAAA,CAARE,QAAQ;IACLC,KAAK,GAAAC,6BAAA,CAAAJ,IAAA,EAAAK,SAAA;EAAA,oBAMVT,KAAA,CAAAU,aAAA,QAAAC,QAAA;IACEC,KAAK,EAAC,4BAA4B;IAClCC,KAAK,EAAE,EAAG;IACVC,MAAM,EAAE,EAAG;IACXC,OAAO,EAAC,WAAW;IACnB,eAAY,YAAY;IACxBC,IAAI,EACFV,QAAQ,GACJ,qBAAqB,GACrBC,KAAK,YAALA,KAAK,CAAES,IAAI,GACXT,KAAK,CAACS,IAAI,GACV,wBACL;IACDC,SAAS,EAAE,KAAM;IACjBZ,GAAG,EAAEA;EAAI,GACLE,KAAK,gBAETP,KAAA,CAAAU,aAAA,CAACT,YAAY;IAACK,QAAQ,EAAEA;EAAS,CAAE,CAAC,eACpCN,KAAA,CAAAU,aAAA;IACEQ,CAAC,EAAC,uHAAuH;IACzHC,KAAK,EAAE;MACLH,IAAI,EAAE;IACR;EAAE,CACH,CAAC,eACFhB,KAAA,CAAAU,aAAA;IACEQ,CAAC,EAAC,iLAAiL;IACnLC,KAAK,EAAE;MACLH,IAAI,EAAE;IACR;EAAE,CACH,CACE,CAAC;AAAA,CAEV,CAAC;AACDd,UAAU,CAACkB,WAAW,GAAG,YAAY;AACrC,eAAelB,UAAU","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TriangleIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/TriangleIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,YAAY;eAMD,MAAM;+
|
|
1
|
+
{"version":3,"file":"TriangleIcon.d.ts","sourceRoot":"","sources":["../../../../../src/components/Icons/collection/TriangleIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,YAAY;eAMD,MAAM;+CAkCtB,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -45,11 +45,14 @@ const TriangleIcon = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
|
45
45
|
}, props), /*#__PURE__*/React.createElement(GradientDefs, {
|
|
46
46
|
gradient: gradient
|
|
47
47
|
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
-
stroke: "
|
|
48
|
+
stroke: "var(--color-theme-600)",
|
|
49
49
|
strokeLinecap: "round",
|
|
50
50
|
strokeLinejoin: "round",
|
|
51
51
|
strokeWidth: 2,
|
|
52
|
-
d: "M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0"
|
|
52
|
+
d: "M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0",
|
|
53
|
+
style: {
|
|
54
|
+
fill: "none"
|
|
55
|
+
}
|
|
53
56
|
}));
|
|
54
57
|
});
|
|
55
58
|
TriangleIcon.displayName = "TriangleIcon";
|