@zesty-io/material 0.15.4 → 0.15.6
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/Block.d.ts +3 -0
- package/es/icons/Block.js +3 -0
- package/es/icons/index.d.ts +1 -0
- package/es/icons/index.js +1 -0
- package/es/theme/index.js +4 -2
- 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 Block = (props) => (_jsx(SvgIcon, { ...props, children: _jsx("path", { d: "M21 16.5C21 16.88 20.79 17.21 20.47 17.38L12.57 21.82C12.41 21.94 12.21 22 12 22C11.79 22 11.59 21.94 11.43 21.82L3.53001 17.38C3.36961 17.2958 3.23538 17.1693 3.14193 17.0141C3.04848 16.859 2.99939 16.6811 3.00001 16.5V7.5C3.00001 7.12 3.21001 6.79 3.53001 6.62L11.43 2.18C11.59 2.06 11.79 2 12 2C12.21 2 12.41 2.06 12.57 2.18L20.47 6.62C20.79 6.79 21 7.12 21 7.5V16.5ZM12 4.15L10.11 5.22L13.055 6.915L16 8.61L17.96 7.5L12 4.15ZM6.04001 7.5L12 10.85L16 8.61L13.055 6.915L10.11 5.22L6.04001 7.5ZM5.00001 15.91L11 19.29V12.58L5.00001 9.21V15.91ZM19 15.91V9.21L13 12.58V19.29L19 15.91Z" }) }));
|
package/es/icons/index.d.ts
CHANGED
package/es/icons/index.js
CHANGED
package/es/theme/index.js
CHANGED
|
@@ -313,8 +313,8 @@ const components = {
|
|
|
313
313
|
}),
|
|
314
314
|
// @ts-ignore
|
|
315
315
|
colorDefault: ({ theme }) => ({
|
|
316
|
-
backgroundColor: theme.palette.
|
|
317
|
-
color: theme.palette.text.
|
|
316
|
+
backgroundColor: theme.palette.grey[100],
|
|
317
|
+
color: theme.palette.text.secondary,
|
|
318
318
|
":hover": {
|
|
319
319
|
backgroundColor: theme.palette.grey[200],
|
|
320
320
|
},
|
|
@@ -322,6 +322,8 @@ const components = {
|
|
|
322
322
|
backgroundColor: theme.palette.grey[300],
|
|
323
323
|
},
|
|
324
324
|
"&.MuiChip-outlined": {
|
|
325
|
+
backgroundColor: theme.palette.background.paper,
|
|
326
|
+
color: theme.palette.text.primary,
|
|
325
327
|
borderColor: theme.palette.border,
|
|
326
328
|
},
|
|
327
329
|
}),
|