From 8a4d067a8f03c8b0e652d31f143594757f9dc9f9 Mon Sep 17 00:00:00 2001 From: Zeeshan Tamboli Date: Mon, 25 Mar 2024 16:33:27 +0530 Subject: [PATCH] [docs][material-ui] Fix typo in CSS theme variables customization (#41632) --- .../experimental-api/css-theme-variables/customization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/material/experimental-api/css-theme-variables/customization.md b/docs/data/material/experimental-api/css-theme-variables/customization.md index bc5362b5beca89..6c8776bf98005e 100644 --- a/docs/data/material/experimental-api/css-theme-variables/customization.md +++ b/docs/data/material/experimental-api/css-theme-variables/customization.md @@ -166,7 +166,7 @@ Then, you can access those variables from the `theme.vars` object: const Divider = styled('hr')(({ theme }) => ({ height: 1, border: '1px solid', - borderColor: theme.vars.palette.border.subtile, + borderColor: theme.vars.palette.border.subtle, backgroundColor: theme.vars.palette.gradient, })); ```