@vallarj/react-adminlte
Version:
Simple and easy-to-use AdminLTE components for React
23 lines (18 loc) • 455 B
TypeScript
import * as React from 'react';
export interface InfoBoxProps {
/**
* The color of the InfoBox.
*/
colorClass?: string;
/**
* InfoBox Icons. Check AdminLTE for the list of icons available.
*/
iconClass: string;
/**
* Defines the label of the InfoBox.
*/
label?: string;
}
export default class InfoBox extends React.Component<InfoBoxProps, any> {
render(): JSX.Element;
}