From 4e797158fe59df81bc604f57d2620726e93a82a8 Mon Sep 17 00:00:00 2001 From: Dan Date: Tue, 30 Jan 2024 13:15:33 -0700 Subject: [PATCH] [material-ui][docs] Fix typo on styled-components guide (#40858) --- .../data/material/guides/styled-components/styled-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/material/guides/styled-components/styled-components.md b/docs/data/material/guides/styled-components/styled-components.md index 8340fb35fd75d3..5c7c38d7b1626e 100644 --- a/docs/data/material/guides/styled-components/styled-components.md +++ b/docs/data/material/guides/styled-components/styled-components.md @@ -14,7 +14,7 @@ By default, Material UI uses [Emotion](https://github.com/emotion-js/emotion) t All components rely on the `styled()` API to inject CSS into the page. This API is supported by multiple popular styling libraries, which makes it possible to switch between them in Material UI. -We provides two different packages to wrap your chosen styling solution for compatibility with Material UI: +We provide two different packages to wrap your chosen styling solution for compatibility with Material UI: - `@mui/styled-engine`: a thin wrapper around Emotion's [`styled()`](https://emotion.sh/docs/styled) API that includes required utilities like the `` component, the `css` and `keyframe` helpers, and more. This is the default, and you do not need to install it. - `@mui/styled-engine-sc`: a similar wrapper, but specifically tailored for styled-components. You must install and implement this package to use styled-components with Material UI.