Skip to content

Commit

Permalink
fixed button label undefined className
Browse files Browse the repository at this point in the history
  • Loading branch information
lerte committed Jun 1, 2024
1 parent 0658210 commit 95ea3a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/actify/src/components/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const Button = (props: ButtonProps) => {
className="a-btn-button"
>
<span className="a-btn-touch" />
<span className={'a-btn-label ' + className}>{children}</span>
<span className="a-btn-label">{children}</span>
</button>
</div>
)
Expand Down

0 comments on commit 95ea3a9

Please sign in to comment.