saleor-dashboard/src/channels/components/styles.ts
Michał Droń d5c9a3dae8
Add trailing commas (#2062)
* Require trailing commas

* Add trailing commas

* Add trailing commas in testUtils dir

* Add trailing commas
2022-06-21 11:36:55 +02:00

27 lines
602 B
TypeScript

import { makeStyles } from "@saleor/macaw-ui";
export const useStyles = makeStyles(
theme => ({
activeBtn: {
marginLeft: theme.spacing(-1),
marginTop: theme.spacing(1.5),
},
copyBtn: {
color: theme.palette.primary.main,
fontSize: 14,
fontWeight: 500,
textTransform: "uppercase",
},
currencyTitle: {
marginBottom: theme.spacing(1),
},
label: {
color: theme.palette.text.secondary,
},
select: {
marginBottom: theme.spacing(2),
marginTop: theme.spacing(2),
},
}),
{ name: "ChannelComponents" },
);