UNPKG
materialuiupgraded
Version:
latest (3.2.0)
3.2.0
Material-UI's workspace package
material-ui.com
mui-org/material-ui
materialuiupgraded
/
packages
/
material-ui
/
src
/
styles
/
withTheme.d.ts
10 lines
(7 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Theme
}
from
'./createMuiTheme'
;
import
{
PropInjector
}
from
'..'
;
export
interface
WithTheme
{
theme
:
Theme
;
innerRef
?:
React
.
Ref
<
any
> |
React
.
RefObject
<
any
>; }
export
default
function
withTheme
(
):
PropInjector
<
WithTheme
,
Partial
<
WithTheme
>>;