@parkassist/pa-ui-library
Version:
INX Platform elements
12 lines • 304 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import React from "react";
import { Progress } from "react-sweet-progress";
import "react-sweet-progress/lib/style.css";
const ProgressBar = ({
percent,
status
}) => _jsx(Progress, {
percent: percent,
status: status
});
export default ProgressBar;