@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
22 lines (21 loc) • 700 B
TypeScript
/**
* Web DrawerList Component
*
* This is a legacy component.
* For referencing while developing new features, please use a Functional component.
*/
import React from 'react';
export type DrawerListPortalProps = {
id: string;
children: React.ReactNode;
opened: boolean;
innerRef?: React.ForwardedRef<HTMLSpanElement>;
rootRef: React.RefObject<HTMLSpanElement>;
include_owner_width?: boolean;
independent_width?: boolean;
fixed_position?: boolean;
skipPortal?: boolean;
className?: string;
};
declare const _default: React.ForwardRefExoticComponent<Omit<DrawerListPortalProps, "innerRef"> & React.RefAttributes<HTMLSpanElement>>;
export default _default;