UNPKG
@dotconnor/grommet
Version:
latest (2.16.2)
2.16.2
2.16.0
2.15.2
2.15.0
focus on the essential experience
grommet.io
grommet/grommet
@dotconnor/grommet
/
components
/
Sidebar
/
index.d.ts
14 lines
(10 loc)
•
273 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
*
as
React
from
'react'
;
import
{
BoxProps
}
from
'../Box'
;
export
interface
SidebarProps
{
footer
?:
React
.
ReactNode
;
header
?:
React
.
ReactNode
; }
declare
const
Sidebar
:
React
.
FC
<
BoxProps
&
SidebarProps
&
JSX
.
IntrinsicElements
[
'div'
]>;
export
{
Sidebar
};