UNPKG
@gorazdo/material-you
Version:
latest (1.0.0-alpha.24)
1.0.0-alpha.24
1.0.0-alpha.22
1.0.0-alpha.21
1.0.0-alpha.20
1.0.0-alpha.19
1.0.0-alpha.18
1.0.0-alpha.17
1.0.0-alpha.16
1.0.0-alpha.15
1.0.0-alpha.14
1.0.0-alpha.13
1.0.0-alpha.12
1.0.0-alpha.11
1.0.0-alpha.10
1.0.0-alpha.9
1.0.0-alpha.7
1.0.0-alpha.6
1.0.0-alpha.5
1.0.0-alpha.4
1.0.0-alpha.3
1.0.0-alpha.1
0.1.5
0.1.4
0.1.3
Material You theme for @material-ui library
github.com/Gorazdo/tools
Gorazdo/tools
@gorazdo/material-you
/
dist
/
components
/
ExpandButton.d.ts
8 lines
(7 loc)
•
293 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
ButtonBaseProps
,
Theme
}
from
"@material-ui/core"
;
import
{
FC
}
from
"react"
;
export
interface
ExpandButtonProps
extends
ButtonBaseProps
{
count
?:
number
;
outlineColor
?: keyof
Theme
[
"palette"
][
"background"
]; }
export
declare
const
ExpandButton
:
FC
<
ExpandButtonProps
>;