From 2bec1ce3cb495e271e05dd9730b7879467f3096a Mon Sep 17 00:00:00 2001 From: Carter Hesterman Date: Sat, 1 Feb 2020 02:44:21 -0700 Subject: [PATCH] [docs] makeStyles doesn't have access to the component's name (#19474) --- docs/src/pages/styles/api/api.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/src/pages/styles/api/api.md b/docs/src/pages/styles/api/api.md index d70a557dc14fae..e3ddc0c4c0115f 100644 --- a/docs/src/pages/styles/api/api.md +++ b/docs/src/pages/styles/api/api.md @@ -77,7 +77,6 @@ Use the function signature if you need to have access to the theme. It's provide 2. `options` (*Object* [optional]): - `options.defaultTheme` (*Object* [optional]): The default theme to use if a theme isn't supplied through a Theme Provider. - `options.name` (*String* [optional]): The name of the style sheet. Useful for debugging. - If the value isn't provided, it will try to fallback to the name of the component. - `options.flip` (*Boolean* [optional]): When set to `false`, this sheet will opt-out the `rtl` transformation. When set to `true`, the styles are inversed. When set to `null`, it follows `theme.direction`. - The other keys are forwarded to the options argument of [jss.createStyleSheet([styles], [options])](https://cssinjs.org/jss-api/#create-style-sheet).