UNPKG

@base-ui-components/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.

18 lines (17 loc) 651 B
import * as React from 'react'; import { ProgressRoot } from '../root/ProgressRoot.js'; import { BaseUIComponentProps } from '../../utils/types.js'; /** * Visualizes the completion status of the task. * Renders a `<span>` element. * * Documentation: [Base UI Progress](https://base-ui.com/react/components/progress) */ declare const ProgressIndicator: React.ForwardRefExoticComponent<ProgressIndicator.Props & React.RefAttributes<HTMLSpanElement>>; declare namespace ProgressIndicator { interface State extends ProgressRoot.State { } interface Props extends BaseUIComponentProps<'span', State> { } } export { ProgressIndicator };