UNPKG

@base-ui/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

16 lines 786 B
import * as React from 'react'; import type { ProgressRootState } from "../root/ProgressRoot.js"; import type { BaseUIComponentProps } from "../../internals/types.js"; /** * Visualizes the completion status of the task. * Renders a `<div>` element. * * Documentation: [Base UI Progress](https://base-ui.com/react/components/progress) */ export declare const ProgressIndicator: React.ForwardRefExoticComponent<Omit<ProgressIndicatorProps, "ref"> & React.RefAttributes<HTMLDivElement>>; export interface ProgressIndicatorState extends ProgressRootState {} export interface ProgressIndicatorProps extends BaseUIComponentProps<'div', ProgressIndicatorState> {} export declare namespace ProgressIndicator { type State = ProgressIndicatorState; type Props = ProgressIndicatorProps; }