saleor-dashboard/src/components/DiscountedPrice/styles.ts

13 lines
260 B
TypeScript
Raw Normal View History

import { makeStyles } from "@saleor/macaw-ui";
export const useStyles = makeStyles(
theme => ({
strike: {
textDecoration: "line-through",
color: theme.palette.grey[400],
fontSize: "smaller"
}
}),
{ name: "DiscountedPrice" }
);