@zesty-io/material 0.15.1 → 0.15.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/icons/FileReplace.d.ts +3 -0
- package/es/icons/FileReplace.js +3 -0
- package/es/icons/index.d.ts +1 -0
- package/es/icons/index.js +1 -0
- package/es/theme/index.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { SvgIcon } from "@mui/material";
|
|
3
|
+
export const FileReplace = (props) => (_jsx(SvgIcon, { ...props, children: _jsx("path", { d: "M14 12H19.5L14 6.5V12ZM8 5H15L21 11V21C21 21.5304 20.7893 22.0391 20.4142 22.4142C20.0391 22.7893 19.5304 23 19 23H8C7.46957 23 6.96086 22.7893 6.58579 22.4142C6.21071 22.0391 6 21.5304 6 21V18H11V20L15 17L11 14V16H6V7C6 6.46957 6.21071 5.96086 6.58579 5.58579C6.96086 5.21071 7.46957 5 8 5ZM13.5 3H4V16H6V18H4C3.46957 18 2.96086 17.7893 2.58579 17.4142C2.21071 17.0391 2 16.5304 2 16V3C2 2.46957 2.21071 1.96086 2.58579 1.58579C2.96086 1.21071 3.46957 1 4 1H11.5L13.5 3Z", fill: "currentColor" }) }));
|
package/es/icons/index.d.ts
CHANGED
package/es/icons/index.js
CHANGED
package/es/theme/index.js
CHANGED
|
@@ -501,6 +501,7 @@ const components = {
|
|
|
501
501
|
},
|
|
502
502
|
tooltip: ({ theme }) => ({
|
|
503
503
|
...theme.typography.body3,
|
|
504
|
+
backgroundColor: alpha(theme.palette.grey[900], 0.9),
|
|
504
505
|
}),
|
|
505
506
|
},
|
|
506
507
|
},
|
|
@@ -581,6 +582,9 @@ const components = {
|
|
|
581
582
|
},
|
|
582
583
|
},
|
|
583
584
|
}),
|
|
585
|
+
divider: ({ theme }) => ({
|
|
586
|
+
borderColor: theme.palette.border,
|
|
587
|
+
}),
|
|
584
588
|
},
|
|
585
589
|
},
|
|
586
590
|
MuiBreadcrumbs: {
|