From 24b76106eda694b86aef8cac980477d205182f91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Curda?= Date: Tue, 10 Dec 2024 09:42:49 +0100 Subject: [PATCH] fixup! Docs(web-react): Add IconsProvider documentation #DS-815 --- packages/web-react/src/components/Tooltip/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/web-react/src/components/Tooltip/README.md b/packages/web-react/src/components/Tooltip/README.md index 6de7da70bb..685d16abec 100644 --- a/packages/web-react/src/components/Tooltip/README.md +++ b/packages/web-react/src/components/Tooltip/README.md @@ -79,6 +79,11 @@ On top of the API options, the components accept [additional attributes][readme- If you need more control over the styling of a component, you can use [style props][readme-style-props] and [escape hatches][readme-escape-hatches]. +## Dependencies + +The Tooltip component uses the `Icon` component internally. To ensure correct rendering, +please refer to the [Icon component documentation][web-react-icon-documentation] for setup instructions. + [dictionary-placement]: https://github.com/lmc-eu/spirit-design-system/tree/main/docs/DICTIONARIES.md#placement [floating-ui-flip-cross-axis]: https://floating-ui.com/docs/flip#crossaxis [floating-ui-flip-fallback-axis-side-direction]: https://floating-ui.com/docs/flip#fallbackaxissidedirection @@ -90,3 +95,4 @@ and [escape hatches][readme-escape-hatches]. [readme-escape-hatches]: https://github.com/lmc-eu/spirit-design-system/blob/main/packages/web-react/README.md#escape-hatches [readme-style-props]: https://github.com/lmc-eu/spirit-design-system/blob/main/packages/web-react/README.md#style-props [use-floating-strategy]: https://floating-ui.com/docs/usefloating#strategy +[web-react-icon-documentation]: https://github.com/lmc-eu/spirit-design-system/blob/main/packages/web-react/src/components/Icon/README.md