shelving
Version:
Toolkit for using data in JavaScript.
13 lines (12 loc) • 422 B
TypeScript
import type { ReactElement } from "react";
import type { Status } from "../style/Status.js";
export interface StatusIconProps {
status?: Status;
small?: boolean;
normal?: boolean;
large?: boolean;
xlarge?: boolean;
xxlarge?: boolean;
}
/** Output a status icon based on the current status of something. */
export declare function StatusIcon({ status, ...variants }: StatusIconProps): ReactElement;