UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

15 lines (14 loc) 631 B
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; }