UNPKG

@als-tp/als-react-ts-ui

Version:

A comprehensive React TypeScript UI component library built with Base UI by ALSInnovation

24 lines 1.33 kB
import type { ALSMeterRootProps, ALSMeterLabelProps, ALSMeterTrackProps, ALSMeterIndicatorProps, ALSMeterValueProps, ALSMeterVariant, ALSMeterSize } from "./ALSMeter"; /** * ALSMeter - A graphical display of a numeric value within a range * * @example * ```tsx * <ALSMeter.Root value={75} variant="primary"> * <ALSMeter.Label>Storage Used</ALSMeter.Label> * <ALSMeter.Track> * <ALSMeter.Indicator /> * </ALSMeter.Track> * <ALSMeter.Value /> * </ALSMeter.Root> * ``` */ export declare const ALSMeter: { Root: import("react").ForwardRefExoticComponent<ALSMeterRootProps & import("react").RefAttributes<HTMLDivElement>>; Label: import("react").ForwardRefExoticComponent<ALSMeterLabelProps & import("react").RefAttributes<HTMLSpanElement>>; Track: import("react").ForwardRefExoticComponent<ALSMeterTrackProps & import("react").RefAttributes<HTMLDivElement>>; Indicator: import("react").ForwardRefExoticComponent<ALSMeterIndicatorProps & import("react").RefAttributes<HTMLDivElement>>; Value: import("react").ForwardRefExoticComponent<ALSMeterValueProps & import("react").RefAttributes<HTMLSpanElement>>; }; export type { ALSMeterRootProps, ALSMeterLabelProps, ALSMeterTrackProps, ALSMeterIndicatorProps, ALSMeterValueProps, ALSMeterVariant, ALSMeterSize, }; //# sourceMappingURL=index.d.ts.map