Skip to content

Commit b855c74

Browse files
committed
Prettier still
1 parent d2468d9 commit b855c74

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/ui/widgets/ActionButton/actionButton.tsx

+7-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { Font } from "../../../types/font";
1818
import { Border } from "../../../types/border";
1919
import { MacroContext } from "../../../types/macros";
2020
import { ExitFileContext, FileContext } from "../../../misc/fileContext";
21-
import { Button, ThemeProvider} from "@mui/material";
21+
import { Button, ThemeProvider } from "@mui/material";
2222

2323
import { defaultColours } from "../../../colourscheme";
2424

@@ -78,10 +78,12 @@ export const ActionButtonWidget = (
7878
height: "100%",
7979
width: "100%",
8080
fontFamily: props.font?.css() ?? "",
81-
color: props.foregroundColor?.toString() ??
82-
defaultColours.palette.primary.contrastText,
83-
backgroundColor: props.backgroundColor?.toString() ??
84-
defaultColours.palette.primary.main,
81+
color:
82+
props.foregroundColor?.toString() ??
83+
defaultColours.palette.primary.contrastText,
84+
backgroundColor:
85+
props.backgroundColor?.toString() ??
86+
defaultColours.palette.primary.main,
8587
border: props.border?.css() ?? ""
8688
}}
8789
onClick={onClick}

0 commit comments

Comments
 (0)