@blueprintjs/core
Version:
Core styles & components
30 lines (29 loc) • 1.26 kB
TypeScript
import * as React from "react";
import { AbstractPureComponent2 } from "../../common";
import { Props, MaybeElement } from "../../common/props";
import { IconName } from "../icon/icon";
export declare type NonIdealStateProps = INonIdealStateProps;
/** @deprecated use NonIdealStateProps */
export interface INonIdealStateProps extends Props {
/** An action to resolve the non-ideal state which appears after `description`. */
action?: JSX.Element;
/**
* Advanced usage: React `children` will appear last (after `action`).
* Avoid passing raw strings as they will not receive margins and disrupt the layout flow.
*/
children?: React.ReactNode;
/**
* A longer description of the non-ideal state.
* A string or number value will be wrapped in a `<div>` to preserve margins.
*/
description?: React.ReactChild;
/** The name of a Blueprint icon or a JSX Element (such as `<Spinner/>`) to render above the title. */
icon?: IconName | MaybeElement;
/** The title of the non-ideal state. */
title?: React.ReactNode;
}
export declare class NonIdealState extends AbstractPureComponent2<NonIdealStateProps> {
static displayName: string;
render(): JSX.Element;
private maybeRenderVisual;
}