UNPKG

primereact

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primereact.svg)](https://badge.fury.io/js/primereact) [![Discord Chat](https://img.shields.io/discord/5579

23 lines (20 loc) 532 B
import * as React from 'react'; interface SidebarProps { id?: string; style?: object; className?: string; visible?: boolean; position?: string; fullScreen?: boolean; blockScroll?: boolean; baseZIndex?: number; dismissable?: boolean; showCloseIcon?: boolean; ariaCloseLabel?: string; closeOnEscape?: boolean; icons?: ((props: object) => any | any); modal?: boolean; onShow?(): void; onHide(): void; } export class Sidebar extends React.Component<SidebarProps,any> {}