diff --git a/src/components/common/settings/GraaspButton.tsx b/src/components/common/settings/GraaspButton.tsx index f58d614c..961e6ff8 100644 --- a/src/components/common/settings/GraaspButton.tsx +++ b/src/components/common/settings/GraaspButton.tsx @@ -1,6 +1,6 @@ import { FC } from 'react'; -import { Button } from '@mui/material'; +import { Button, SxProps } from '@mui/material'; import { FULL_WIDTH, GRAASP_VIOLET } from '../../../config/stylingConstants'; @@ -12,6 +12,7 @@ type Prop = { marginRight?: string; minHeight?: string; text: string; + sx?: SxProps; }; const GraaspButton: FC = ({ @@ -22,6 +23,7 @@ const GraaspButton: FC = ({ marginRight, minHeight, text, + sx, }) => (