fix: icons not rotated properly in old safari

This commit is contained in:
dwelle 2024-05-15 10:20:04 +02:00
parent cc4c51996c
commit 94005b790a

View File

@ -698,14 +698,18 @@ export const BringForwardIcon = createIcon(arrownNarrowUpJSX, tablerIconProps);
export const SendBackwardIcon = createIcon(arrownNarrowUpJSX, { export const SendBackwardIcon = createIcon(arrownNarrowUpJSX, {
...tablerIconProps, ...tablerIconProps,
transform: "rotate(180)", style: {
transform: "rotate(180deg)",
},
}); });
export const BringToFrontIcon = createIcon(arrowBarToTopJSX, tablerIconProps); export const BringToFrontIcon = createIcon(arrowBarToTopJSX, tablerIconProps);
export const SendToBackIcon = createIcon(arrowBarToTopJSX, { export const SendToBackIcon = createIcon(arrowBarToTopJSX, {
...tablerIconProps, ...tablerIconProps,
transform: "rotate(180)", style: {
transform: "rotate(180deg)",
},
}); });
// //