@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
15 lines (14 loc) • 423 B
TypeScript
import * as React from 'react';
import type { SpacingProps } from '../../shared/types';
import type { DrawerListProps } from './DrawerList';
export interface DrawerListProviderProps
extends React.HTMLProps<HTMLElement>,
SpacingProps,
DrawerListProps {}
export default class DrawerListProvider extends React.Component<
DrawerListProviderProps,
any
> {
static defaultProps: object;
render(): JSX.Element;
}