<Progress />

base/progress.svelte

"You'll never know that you've got a score, unless comes the day when you see the other's ones."
S. Roch, 1824

Component Progress examples :
Using slots
component Progress demo using slots
value number
percentBase number
code
<Progress value="50" />
Api preview :
__propDef: {
    props: {
        class?: string | undefined;
        element?: HTMLDivElement | null | undefined;
        style?: string | undefined;
        /**    base     */ percentBase?: number | undefined;
        /**   score */ value?: number | undefined;
        /** can be vertical or horizontal */ direction?: "vertical" | "horizontal" | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};