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.

14 lines 625 B
import * as React from 'react'; import { BaseUIComponentProps } from "../../utils/types.js"; import type { MeterRoot } from "../root/MeterRoot.js"; /** * Visualizes the position of the value along the range. * Renders a `<div>` element. * * Documentation: [Base UI Meter](https://base-ui.com/react/components/meter) */ export declare const MeterIndicator: React.ForwardRefExoticComponent<MeterIndicatorProps & React.RefAttributes<HTMLDivElement>>; export interface MeterIndicatorProps extends BaseUIComponentProps<'div', MeterRoot.State> {} export declare namespace MeterIndicator { type Props = MeterIndicatorProps; }