vira
Version:
A simple and highly versatile design system using element-vir.
19 lines (18 loc) • 713 B
TypeScript
import { type PartialWithUndefined } from '@augment-vir/common';
/**
* A [`<progress>`](https://developer.mozilla.org/docs/Web/HTML/Reference/Elements/progress)
* alternative that supports custom styling in _all_ browsers via CSS vars _and_ prevents background
* bleed.
*
* @category Progress
* @category Elements
* @see https://electrovir.github.io/vira/book/elements/vira-progress
*/
export declare const ViraProgress: import("element-vir").DeclarativeElementDefinition<"vira-progress", {
value: number;
} & PartialWithUndefined<{
/** @default 0 */
min: number;
/** @default 100 */
max: number;
}>, {}, {}, "vira-progress-", "vira-progress-border-radius", readonly [], readonly []>;