UNPKG

grommet

Version:

focus on the essential experience

19 lines (13 loc) 398 B
import * as React from 'react'; import { BoxProps } from '../Box/index'; export interface SidebarProps { footer?: React.ReactNode; header?: React.ReactNode; } type divProps = Omit<JSX.IntrinsicElements['div'], 'onClick'>; export interface SidebarExtendedProps extends BoxProps, SidebarProps, divProps {} declare const Sidebar: React.FC<SidebarExtendedProps>; export { Sidebar };