@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.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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", {
|