Skip to content

Commit

Permalink
fix: button tags should have pointer cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
trulshj committed Dec 13, 2024
1 parent f1456af commit 62a025a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/tag/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ export const Tag = ({

if (props.type === "button") {
return (
<button className={className} onClick={props.onClick}>
<button
className={className}
style={{ cursor: "pointer" }}
onClick={props.onClick}
>
<Text type="labelRegular">{text}</Text>
</button>
);
Expand Down

0 comments on commit 62a025a

Please sign in to comment.