diff --git a/contribute/style-guides/styling.md b/contribute/style-guides/styling.md index caf1b137f41..6dd61117c15 100644 --- a/contribute/style-guides/styling.md +++ b/contribute/style-guides/styling.md @@ -34,7 +34,7 @@ const getStyles = (theme: GrafanaTheme2) => ### Styling complex components In more complex cases, especially when you need to style multiple DOM elements in one component, or when using styles that depend on properties and/or state you -can have your getStyles function return an object with many class names and use [Emotion's `cx` function](https://emotion.sh/docs/emotion#cx) to compose them. +can have your getStyles function return an object with many class names and use [Emotion's `cx` function](https://emotion.sh/docs/@emotion/css#cx) to compose them. Let's say you need to style a component that has a different background depending on the `isActive` property :