saleor-dashboard/src/components/DiscountedPrice/styles.ts
Wojciech Mista 6e09ec9bb2
Use variant prices in add product modal (#1698)
* Replace channel price with variant price; add new price label

* Update fixtures

* Remove unused code

* Remove unused style

* Lint fix

* Remove type conversion

* lint fix

* update queries and types

* CR Fixes

* Money align right
2021-12-23 16:00:37 +01:00

12 lines
260 B
TypeScript

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