UNPKG

doj-react-adminlte

Version:

Simple and easy-to-use AdminLTE components for React

23 lines (18 loc) 501 B
import * as React from 'react'; export interface BoxProps { /** * Returns a boolean value for a postback or loading a content. */ isLoading?: boolean; /** * This prop is set to style a box. See AdminLTE guide for a list of themes. */ theme?: string; /** * Set to true if box should be collapsible. */ collapsible?: boolean; } export default class Box extends React.Component<BoxProps, any> { render(): JSX.Element; }