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 626 B
import * as React from 'react'; import type { MeterRoot } from "../root/MeterRoot.js"; import { BaseUIComponentProps } from "../../utils/types.js"; /** * Contains the meter indicator and represents the entire range of the meter. * Renders a `<div>` element. * * Documentation: [Base UI Meter](https://base-ui.com/react/components/meter) */ export declare const MeterTrack: React.ForwardRefExoticComponent<MeterTrackProps & React.RefAttributes<HTMLDivElement>>; export interface MeterTrackProps extends BaseUIComponentProps<'div', MeterRoot.State> {} export declare namespace MeterTrack { type Props = MeterTrackProps; }