Skip to content

Commit

Permalink
Merge pull request #66 from kunal70006/feature/kunal70006/61
Browse files Browse the repository at this point in the history
fix: update Button to use MUI props
  • Loading branch information
nebula-aac authored Aug 30, 2023
2 parents b82ad58 + 7331fb8 commit bdaf8ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/components/src/button.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from 'react';
import { Button } from '@mui/material';
import { Button as MuiButton, ButtonProps } from '@mui/material';

export const BaseButton = (_props: any) => {
return <Button variant="contained">Hello world</Button>;
export const BaseButton = (props: ButtonProps) => {
return <MuiButton {...props} />;
};

0 comments on commit bdaf8ba

Please sign in to comment.