diff --git a/src/components/SimpleText/SimpleText.tsx b/src/components/SimpleText/SimpleText.tsx index 813b832..8d83d58 100644 --- a/src/components/SimpleText/SimpleText.tsx +++ b/src/components/SimpleText/SimpleText.tsx @@ -34,6 +34,8 @@ type Props = { center?: boolean; bold?: boolean; + + onClick?: () => void; }; export function SimpleText({ @@ -41,6 +43,7 @@ export function SimpleText({ className = "", center, size = "normal", + onClick, style, children, bold, @@ -49,14 +52,14 @@ export function SimpleText({ if (size === "small") { return ( - + {children} ); } return ( - + {children} );