Skip to content

Commit

Permalink
chore: removed initialTheme from code example
Browse files Browse the repository at this point in the history
Signed-off-by: Mdkaif-123 <[email protected]>
  • Loading branch information
mdkaifansari04 committed Nov 5, 2024
1 parent d20a044 commit ec4fa5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sections/Projects/Sistent/components/divider/code.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const content = (
);

const codes = [
` <SistentThemeProvider initialMode={isDark ? "dark" : "light"}>
` <SistentThemeProvider>
<List sx={style}>
<ListItem>
<ListItemText primary="Full width variant below" />
Expand All @@ -71,7 +71,7 @@ const codes = [
</List>
</SistentThemeProvider>`,

` <SistentThemeProvider initialMode={isDark ? "dark" : "light"}>
` <SistentThemeProvider>
<Box
sx={{
display: "inline-flex",
Expand All @@ -93,7 +93,7 @@ const codes = [
</SistentThemeProvider>
`,
`
<SistentThemeProvider initialMode={isDark ? "dark" : "light"}>
<SistentThemeProvider>
<Box
sx={{
display: "flex",
Expand All @@ -116,7 +116,7 @@ const codes = [
</Box>
</SistentThemeProvider>
`,
` <SistentThemeProvider initialMode={isDark ? "dark" : "light"}>
` <SistentThemeProvider>
<Root>
{content}
<Divider>CENTER</Divider>
Expand Down

0 comments on commit ec4fa5c

Please sign in to comment.