@economic/taco 1.26.2 → 1.27.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/Icon/components/WorkflowTemplateBasic.d.ts +3 -0
- package/dist/components/Icon/components/index.d.ts +1 -1
- package/dist/components/Input/Input.d.ts +1 -1
- package/dist/components/Menu/components/Item.d.ts +1 -1
- package/dist/components/Menu/components/Link.d.ts +1 -1
- package/dist/components/Navigation2/components/Link.d.ts +1 -1
- package/dist/components/Select2/components/Option.d.ts +1 -1
- package/dist/components/Select2/components/Search.d.ts +1 -1
- package/dist/components/Tag/Tag.d.ts +1 -1
- package/dist/esm/packages/taco/src/components/Icon/components/WorkflowTemplateBasic.js +18 -0
- package/dist/esm/packages/taco/src/components/Icon/components/WorkflowTemplateBasic.js.map +1 -0
- package/dist/esm/packages/taco/src/components/Icon/components/index.js +2 -0
- package/dist/esm/packages/taco/src/components/Icon/components/index.js.map +1 -1
- package/dist/taco.cjs.development.js +15 -0
- package/dist/taco.cjs.development.js.map +1 -1
- package/dist/taco.cjs.production.min.js +1 -1
- package/dist/taco.cjs.production.min.js.map +1 -1
- package/package.json +2 -2
- package/types.json +4 -3
@@ -2950,6 +2950,20 @@ function IconWebsite(props, svgRef) {
|
|
2950
2950
|
}
|
2951
2951
|
var Website = /*#__PURE__*/React.forwardRef(IconWebsite);
|
2952
2952
|
|
2953
|
+
function IconWorkflowTemplateBasic(props, svgRef) {
|
2954
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
2955
|
+
xmlns: "http://www.w3.org/2000/svg",
|
2956
|
+
viewBox: "0 0 24 24",
|
2957
|
+
ref: svgRef
|
2958
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
2959
|
+
fillRule: "evenodd",
|
2960
|
+
clipRule: "evenodd",
|
2961
|
+
d: "M12 1l5.762 3.12v6.161L23 13.117v6.763L17.238 23 12 20.164 6.762 23 1 19.88v-6.762l5.238-2.837V4.137L12 1zM6.761 11.183l-4.144 2.244 4.144 2.243 4.143-2.243-4.143-2.244zm4.714 3.12l-4.19 2.269v4.96l4.19-2.27v-4.96zm1.048 4.96l4.19 2.268v-4.96l-4.19-2.268v4.96zm.57-5.837l4.144 2.244 4.144-2.243-4.144-2.244-4.143 2.244zm8.858.877l-4.19 2.269v4.96l4.19-2.27v-4.96zm-9.428-1.753l4.19-2.269V5.305l-4.19 2.27v4.975zm-1.048-4.975l-4.19-2.256v4.962l4.19 2.27V7.574zm-3.62-3.133L12 6.672l4.144-2.243-4.142-2.243-4.145 2.256zm-1.618 17.09v-4.96l-4.19-2.27v4.96l4.19 2.27z",
|
2962
|
+
fill: "currentColor"
|
2963
|
+
}));
|
2964
|
+
}
|
2965
|
+
var WorkflowTemplateBasic = /*#__PURE__*/React.forwardRef(IconWorkflowTemplateBasic);
|
2966
|
+
|
2953
2967
|
function IconWorkflow(props, svgRef) {
|
2954
2968
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
2955
2969
|
xmlns: "http://www.w3.org/2000/svg",
|
@@ -3190,6 +3204,7 @@ const icons = {
|
|
3190
3204
|
warning: Warning,
|
3191
3205
|
webshop: Webshop,
|
3192
3206
|
website: Website,
|
3207
|
+
'workflow-template-basic': WorkflowTemplateBasic,
|
3193
3208
|
workflow: Workflow,
|
3194
3209
|
zoom: Zoom
|
3195
3210
|
};
|