@syscore/ui-library 1.5.1 → 1.5.2
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/index.es.js
CHANGED
|
@@ -401,6 +401,7 @@ const buttonVariants = cva(
|
|
|
401
401
|
"general-primary": "button--general-primary",
|
|
402
402
|
"general-secondary": "button--general-secondary",
|
|
403
403
|
"general-tertiary": "button--general-tertiary",
|
|
404
|
+
"transparent-tertiary": "button--transparent-tertiary",
|
|
404
405
|
"tooltip-primary": "button--tooltip-primary",
|
|
405
406
|
"tooltip-secondary": "button--tooltip-secondary"
|
|
406
407
|
},
|
|
@@ -424,13 +425,15 @@ const sizeTextClasses = {
|
|
|
424
425
|
icon: ""
|
|
425
426
|
};
|
|
426
427
|
const Button = React.forwardRef(
|
|
427
|
-
({ className, variant: variant2, size, children, style, ...props }, ref) => {
|
|
428
|
+
({ className, variant: variant2, size, ftMadeFont, mazzardSoftFont, children, style, ...props }, ref) => {
|
|
428
429
|
const textClass = sizeTextClasses[size || "large"];
|
|
429
430
|
return /* @__PURE__ */ jsx(
|
|
430
431
|
"button",
|
|
431
432
|
{
|
|
432
433
|
className: cn(
|
|
433
434
|
buttonVariants({ variant: variant2, size }),
|
|
435
|
+
ftMadeFont && "font-ftMade",
|
|
436
|
+
mazzardSoftFont && "font-mazzardSoft",
|
|
434
437
|
className
|
|
435
438
|
),
|
|
436
439
|
style,
|
|
@@ -9648,7 +9651,7 @@ const StandardNavigation = ({
|
|
|
9648
9651
|
onLinkClick("/");
|
|
9649
9652
|
}
|
|
9650
9653
|
},
|
|
9651
|
-
children: /* @__PURE__ */ jsx(
|
|
9654
|
+
children: /* @__PURE__ */ jsx(UtilityClearRegular, { className: "navigation-close-icon" })
|
|
9652
9655
|
}
|
|
9653
9656
|
) : null,
|
|
9654
9657
|
/* @__PURE__ */ jsx(
|