Skip to content

Commit

Permalink
Fix icons orientation
Browse files Browse the repository at this point in the history
  • Loading branch information
zanivan committed Jan 10, 2025
1 parent 60106b3 commit bbb38e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/modules/components/ThemeViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import * as React from 'react';
import clsx from 'clsx';
import { styled, alpha, lighten } from '@mui/material/styles';
import Box from '@mui/material/Box';
import ExpandIcon from '@mui/icons-material/ExpandMore';
import CollapseIcon from '@mui/icons-material/ChevronRight';
import ChevronDownIcon from '@mui/icons-material/ExpandMoreRounded';
import ChevronRightIcon from '@mui/icons-material/ChevronRightRounded';
import { SimpleTreeView } from '@mui/x-tree-view/SimpleTreeView';
import { TreeItem as MuiTreeItem, treeItemClasses } from '@mui/x-tree-view/TreeItem';
import { blue, blueDark } from '@mui/docs/branding';
Expand Down Expand Up @@ -202,8 +202,8 @@ export default function ThemeViewer({
<SimpleTreeView
key={key}
slots={{
expandIcon: ExpandIcon,
collapseIcon: CollapseIcon,
expandIcon: ChevronRightIcon,
collapseIcon: ChevronDownIcon,
endIcon: CustomEndIcon,
}}
defaultExpandedItems={defaultExpanded}
Expand Down

0 comments on commit bbb38e6

Please sign in to comment.