alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
15 lines (14 loc) • 631 B
TypeScript
import type { ComponentType } from 'react';
import { PropsWithChildren } from 'react';
export declare namespace Statusbar {
const Provider: ComponentType<{
children?: import("react").ReactNode;
}>, Portal: ComponentType<import("react").HTMLProps<HTMLDivElement>>, Slot: ComponentType<{
children?: import("react").ReactNode;
}>;
function Root({ children }: PropsWithChildren<{}>): import("react/jsx-runtime").JSX.Element;
type StatusProps = PropsWithChildren<{
icon?: ComponentType;
}>;
function Status({ children, icon }: StatusProps): import("react/jsx-runtime").JSX.Element;
}