Skip to content

Commit

Permalink
AnchorTextButton: className inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
bpierre committed Dec 19, 2024
1 parent 5a1d6d2 commit 31354d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/uikit/src/TextButton/AnchorTextButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const AnchorTextButton = forwardRef<
external,
label,
size,
className,
...props
}, ref) {
const textButtonStyles = useTextButtonStyles(size);
Expand All @@ -28,7 +29,7 @@ export const AnchorTextButton = forwardRef<
ref={ref}
className={cx(
textButtonStyles.className,
props.className,
className,
)}
{...externalProps}
{...props}
Expand Down

0 comments on commit 31354d5

Please sign in to comment.