hh-ui-components
Version:
8 lines • 559 B
JavaScript
import React from "react";
export var ProgressBar = function (_a) {
var _b = _a.width, width = _b === void 0 ? 10 : _b;
return (React.createElement("div", { className: "relative bg-secondary h-[5px] max-w-full p-[1px] rounded-[10px] overflow-hidden 2xl:rounded-[0.694vw] 2xl:h-[0.347vw] 2xl:p-[0.069vw] " },
React.createElement("div", { className: "bg-quaternary h-[3px] rounded-[10px] 2xl:h-[0.208vw] 2xl:rounded-[0.694vw] max-w-full ", style: { width: width + "%" } }, " ")));
};
export default ProgressBar;
//# sourceMappingURL=index.js.map