@economic/taco 1.2.0 → 1.3.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/dist/components/Icon/components/ChevronLeftSolid.d.ts +3 -0
- package/dist/components/Icon/components/ChevronRightSolid.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/Menu.d.ts +2 -2
- package/dist/components/Menu/components/Item.d.ts +1 -1
- package/dist/components/Menu/components/Link.d.ts +1 -1
- package/dist/esm/components/Icon/components/ChevronLeftSolid.js +20 -0
- package/dist/esm/components/Icon/components/ChevronLeftSolid.js.map +1 -0
- package/dist/esm/components/Icon/components/ChevronRightSolid.js +20 -0
- package/dist/esm/components/Icon/components/ChevronRightSolid.js.map +1 -0
- package/dist/esm/components/Icon/components/index.js +4 -0
- package/dist/esm/components/Icon/components/index.js.map +1 -1
- package/dist/taco.cjs.development.js +34 -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 -2
@@ -484,6 +484,22 @@ function IconChevronLeftDouble(props, svgRef) {
|
|
484
484
|
|
485
485
|
var ChevronLeftDouble = /*#__PURE__*/React.forwardRef(IconChevronLeftDouble);
|
486
486
|
|
487
|
+
function IconChevronLeftSolid(props, svgRef) {
|
488
|
+
return React.createElement("svg", Object.assign({
|
489
|
+
fill: "none",
|
490
|
+
xmlns: "http://www.w3.org/2000/svg",
|
491
|
+
viewBox: "0 0 24 24",
|
492
|
+
ref: svgRef
|
493
|
+
}, props), React.createElement("path", {
|
494
|
+
fillRule: "evenodd",
|
495
|
+
clipRule: "evenodd",
|
496
|
+
d: "M15.5 6.207a.5.5 0 00-.854-.353l-5.792 5.792a.5.5 0 000 .708l5.792 5.792a.5.5 0 00.854-.353V6.207z",
|
497
|
+
fill: "currentColor"
|
498
|
+
}));
|
499
|
+
}
|
500
|
+
|
501
|
+
var ChevronLeftSolid = /*#__PURE__*/React.forwardRef(IconChevronLeftSolid);
|
502
|
+
|
487
503
|
function IconChevronLeft(props, svgRef) {
|
488
504
|
return React.createElement("svg", Object.assign({
|
489
505
|
xmlns: "http://www.w3.org/2000/svg",
|
@@ -512,6 +528,22 @@ function IconChevronRightDouble(props, svgRef) {
|
|
512
528
|
|
513
529
|
var ChevronRightDouble = /*#__PURE__*/React.forwardRef(IconChevronRightDouble);
|
514
530
|
|
531
|
+
function IconChevronRightSolid(props, svgRef) {
|
532
|
+
return React.createElement("svg", Object.assign({
|
533
|
+
fill: "none",
|
534
|
+
xmlns: "http://www.w3.org/2000/svg",
|
535
|
+
viewBox: "0 0 24 24",
|
536
|
+
ref: svgRef
|
537
|
+
}, props), React.createElement("path", {
|
538
|
+
fillRule: "evenodd",
|
539
|
+
clipRule: "evenodd",
|
540
|
+
d: "M8.5 17.793a.5.5 0 00.854.353l5.792-5.792a.5.5 0 000-.708L9.354 5.854a.5.5 0 00-.854.353v11.586z",
|
541
|
+
fill: "currentColor"
|
542
|
+
}));
|
543
|
+
}
|
544
|
+
|
545
|
+
var ChevronRightSolid = /*#__PURE__*/React.forwardRef(IconChevronRightSolid);
|
546
|
+
|
515
547
|
function IconChevronRight(props, svgRef) {
|
516
548
|
return React.createElement("svg", Object.assign({
|
517
549
|
xmlns: "http://www.w3.org/2000/svg",
|
@@ -2992,8 +3024,10 @@ const icons = {
|
|
2992
3024
|
'chevron-down-solid': ChevronDownSolid,
|
2993
3025
|
'chevron-down': ChevronDown,
|
2994
3026
|
'chevron-left-double': ChevronLeftDouble,
|
3027
|
+
'chevron-left-solid': ChevronLeftSolid,
|
2995
3028
|
'chevron-left': ChevronLeft,
|
2996
3029
|
'chevron-right-double': ChevronRightDouble,
|
3030
|
+
'chevron-right-solid': ChevronRightSolid,
|
2997
3031
|
'chevron-right': ChevronRight,
|
2998
3032
|
'chevron-up-double': ChevronUpDouble,
|
2999
3033
|
'chevron-up-solid': ChevronUpSolid,
|