
* 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
12 lines
260 B
TypeScript
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" }
|
|
);
|