import * as React from "react"; import { classList, ControlProps } from "../util"; export interface ProgressBarProps extends ControlProps { value: number; max?: number; // default: 100 title?: string; label?: string; ariaValueText?: string; } export const ProgressBar = (props: ProgressBarProps) => { const { value, max, id, className, title, label, role, ariaHidden, ariaLabel, ariaDescribedBy, ariaValueText, } = props; return (
{label && }
); }