From 54617334fd36b61d79abb76ebaf5c6c8528a1d98 Mon Sep 17 00:00:00 2001 From: Zeeshan Tamboli Date: Wed, 27 Mar 2024 18:20:38 +0530 Subject: [PATCH] [material-ui][docs] Fix typo in CSS theme variables customization (#41680) --- .../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, })); ```