UNPKG

doj-react-adminlte

Version:

Simple and easy-to-use AdminLTE components for React

17 lines (12 loc) 339 B
import * as React from 'react'; export interface SidebarItemProps { active?: boolean; path?: string; id?: string; iconClass?: string; label: string; onClick?: (...args: any[])=>any; } export default class SidebarItem extends React.Component<SidebarItemProps, any> { render(): JSX.Element; }