@algorithm-shift/design-system 1.3.101 → 1.3.102

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.mjs CHANGED
@@ -524,14 +524,16 @@ var Typography = ({
524
524
  className,
525
525
  style,
526
526
  tagName,
527
- textContent
527
+ textContent,
528
+ onClick
528
529
  }) => {
529
530
  const Tag = tagName || "h1";
530
531
  return React4.createElement(
531
532
  Tag,
532
533
  {
533
534
  style,
534
- className: cn(className, "pointer-events-auto")
535
+ className: cn(className, "pointer-events-auto"),
536
+ onClick
535
537
  },
536
538
  [
537
539
  React4.createElement("span", {