11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
![]() |
import { makeStyles } from "@saleor/macaw-ui";
|
||
|
|
||
|
export const useStyles = makeStyles(
|
||
|
() => ({
|
||
|
wrapAnywhere: {
|
||
|
overflowWrap: "anywhere"
|
||
|
}
|
||
|
}),
|
||
|
{ name: "SaleSummary" }
|
||
|
);
|