13 lines
242 B
TypeScript
13 lines
242 B
TypeScript
import { makeStyles } from "@saleor/macaw-ui";
|
|
|
|
export const useStyles = makeStyles(
|
|
theme => ({
|
|
installButton: {
|
|
marginLeft: theme.spacing(2),
|
|
height: 52,
|
|
},
|
|
}),
|
|
{
|
|
name: "InstallWithManifestFormButton",
|
|
},
|
|
);
|