Skip to content

Commit

Permalink
remove style prop from button
Browse files Browse the repository at this point in the history
  • Loading branch information
d-ivashchuk committed Mar 3, 2024
1 parent a527547 commit a052da5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/button.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
type Props = {
label: string;
onClick?: () => unknown;
style?: React.CSSProperties;
};

export const Button = ({ label, onClick = () => null }: Props) => {
Expand Down

0 comments on commit a052da5

Please sign in to comment.