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