Options
All
  • Public
  • Public/Protected
  • All
Menu

Module "components/progressGroup.d"

Index

Variables

Const ProgressGroup

ProgressGroup: (props: IProgressGroupProps) => IProgressGroup
import { Components } from "gd-sprest-bs";

// Create the progress group
let el = document.querySelector("#progressGroup");
let progressGroup = Components.ProgressGroup({
    el: el,
    progressbars: [
        {
            size: 25,
            isStriped: true,
            label: "25%"
        },
        {
            size: 50,
            isAnimated: true,
            isStriped: true,
            label: "50%"
        }
    ]
});

Type declaration

Generated using TypeDoc