@dartech/arsenal-ui 1.3.21 → 1.3.23
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/index.js +5 -2
- package/package.json +1 -1
package/index.js
CHANGED
@@ -74,7 +74,6 @@ import StepContent from '@mui/material/StepContent';
|
|
74
74
|
import StepConnector from '@mui/material/StepConnector';
|
75
75
|
import Select from '@mui/material/Select';
|
76
76
|
import CloseIcon from '@mui/icons-material/Close';
|
77
|
-
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
|
78
77
|
import classnames from 'classnames';
|
79
78
|
import { toast } from 'react-toastify';
|
80
79
|
import CssBaseline from '@mui/material/CssBaseline';
|
@@ -5119,7 +5118,11 @@ const ViewProperty = ({
|
|
5119
5118
|
onChange: () => setExpanded(prevState => !prevState)
|
5120
5119
|
}, {
|
5121
5120
|
children: [jsx(AccordionSummary, Object.assign({
|
5122
|
-
expandIcon: jsx(
|
5121
|
+
expandIcon: jsx(SvgIcon, {
|
5122
|
+
children: jsx("path", {
|
5123
|
+
d: "M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z"
|
5124
|
+
})
|
5125
|
+
})
|
5123
5126
|
}, {
|
5124
5127
|
children: jsx(Typography, Object.assign({
|
5125
5128
|
style: {
|