Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca32f3e commit c0b9170Copy full SHA for c0b9170
site/src/components/FullPageForm/FullPageHorizontalForm.tsx
@@ -1,4 +1,4 @@
1
-import Button from "@mui/material/Button";
+import { Button } from "components/Button/Button";
2
import { Margins } from "components/Margins/Margins";
3
import {
4
PageHeader,
@@ -25,7 +25,7 @@ export const FullPageHorizontalForm: FC<FullPageHorizontalFormProps> = ({
25
<PageHeader
26
actions={
27
onCancel && (
28
- <Button size="small" onClick={onCancel}>
+ <Button variant="outline" onClick={onCancel}>
29
Cancel
30
</Button>
31
)
0 commit comments